hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
22af7edccc20fe67dfbf259a5e028655bd723abd
3,716
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/get_spark_xrefs.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/get_spark_xrefs.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/get_spark_xrefs.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G E T _ S P A R K _ X R E F S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2013, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the function used to read SPARK cross-reference -- information from an ALI file and populate the tables defined in package -- SPARK_Xrefs with the result. generic -- These subprograms provide access to the ALI file. Locating, opening and -- providing access to the ALI file is the callers' responsibility. with function Getc return Character is <>; -- Get next character, positioning the ALI file ready to read the following -- character (equivalent to calling Nextc, then Skipc). If the end of file -- is encountered, the value Types.EOF is returned. with function Nextc return Character is <>; -- Look at the next character, and return it, leaving the position of the -- file unchanged, so that a subsequent call to Getc or Nextc will return -- this same character. If the file is positioned at the end of file, then -- Types.EOF is returned. with procedure Skipc is <>; -- Skip past the current character (which typically was read with Nextc), -- and position to the next character, which will be returned by the next -- call to Getc or Nextc. procedure Get_SPARK_Xrefs; -- Load SPARK cross-reference information from ALI file text format into -- internal SPARK tables (SPARK_Xrefs.SPARK_Xref_Table, -- SPARK_Xrefs.SPARK_Scope_Table and SPARK_Xrefs.SPARK_File_Table). On entry -- the input file is positioned to the initial 'F' of the first SPARK specific -- line in the ALI file. On return, the file is positioned either to the end -- of file, or to the first character of the line following the SPARK specific -- information (which will never start with an 'F'). -- -- If a format error is detected in the input, then an exception is raised -- (Ada.IO_Exceptions.Data_Error), with the file positioned to the error.
60.918033
79
0.550323
2e4954312fed7eda9bd97e0e4c1b984cc90e63b9
3,938
ads
Ada
tools/xml2ayacc/asis_trait_kinds.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
tools/xml2ayacc/asis_trait_kinds.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
tools/xml2ayacc/asis_trait_kinds.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- 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) $ package Asis_Trait_Kinds is type Trait_Kinds is ( Not_A_Trait, -- An unexpected element An_Ordinary_Trait, -- The declaration or definition does -- not contain the reserved words -- "aliased", "reverse", "private", -- "limited", "abstract", or -- "access" in an access_definition An_Aliased_Trait, -- "aliased" is present An_Access_Definition_Trait, -- "access" in an access_definition -- is present A_Reverse_Trait, -- "reverse" is present A_Private_Trait, -- Only "private" is present A_Limited_Trait, -- Only "limited" is present A_Limited_Private_Trait, -- "limited" and "private" are -- present An_Abstract_Trait, -- Only "abstract" is present An_Abstract_Private_Trait, -- "abstract" and "private" are -- present An_Abstract_Limited_Trait, -- "abstract" and "limited" are -- present An_Abstract_Limited_Private_Trait); -- "abstract", "limited", and -- "private" are present end Asis_Trait_Kinds; ------------------------------------------------------------------------------ -- Copyright (c) 2006, 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. ------------------------------------------------------------------------------
54.694444
79
0.521585
29fbaf6d936253d190abf4180dadd078d9a85785
10,380
adb
Ada
HdGfxLib/libgfxinit/common/hw-gfx-gma-pch-transcoder.adb
jam3st/edk2
d477ef9975cc6cdf1fca4d221c3064c2f2d804e8
[ "BSD-2-Clause" ]
1
2019-02-05T09:50:07.000Z
2019-02-05T09:50:07.000Z
HdGfxLib/libgfxinit/common/hw-gfx-gma-pch-transcoder.adb
jam3st/edk2
d477ef9975cc6cdf1fca4d221c3064c2f2d804e8
[ "BSD-2-Clause" ]
null
null
null
HdGfxLib/libgfxinit/common/hw-gfx-gma-pch-transcoder.adb
jam3st/edk2
d477ef9975cc6cdf1fca4d221c3064c2f2d804e8
[ "BSD-2-Clause" ]
null
null
null
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- Copyright (C) 2016 Nico Huber <[email protected]> -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.GFX.GMA.Config; with HW.GFX.GMA.DP_Info; with HW.GFX.GMA.Registers; with HW.Debug; with GNAT.Source_Info; package body HW.GFX.GMA.PCH.Transcoder is type DPLL_SEL_Array is array (FDI_Port_Type) of Word32; DPLL_SEL_TRANSCODER_x_DPLL_ENABLE : constant DPLL_SEL_Array := (FDI_A => 1 * 2 ** 3, FDI_B => 1 * 2 ** 7, FDI_C => 1 * 2 ** 11); DPLL_SEL_TRANSCODER_x_DPLL_SEL_MASK : constant DPLL_SEL_Array := (FDI_A => 1 * 2 ** 0, FDI_B => 1 * 2 ** 4, FDI_C => 1 * 2 ** 8); function DPLL_SEL_TRANSCODER_x_DPLL_SEL (Port : FDI_Port_Type; PLL : Word32) return Word32 is begin return Shift_Left (PLL, (case Port is when FDI_A => 0, when FDI_B => 4, when FDI_C => 8)); end DPLL_SEL_TRANSCODER_x_DPLL_SEL; TRANS_CONF_TRANSCODER_ENABLE : constant := 1 * 2 ** 31; TRANS_CONF_TRANSCODER_STATE : constant := 1 * 2 ** 30; TRANS_CHICKEN2_TIMING_OVERRIDE : constant := 1 * 2 ** 31; TRANS_DP_CTL_OUTPUT_ENABLE : constant := 1 * 2 ** 31; TRANS_DP_CTL_PORT_SELECT_MASK : constant := 3 * 2 ** 29; TRANS_DP_CTL_PORT_SELECT_NONE : constant := 3 * 2 ** 29; TRANS_DP_CTL_ENHANCED_FRAMING : constant := 1 * 2 ** 18; TRANS_DP_CTL_VSYNC_ACTIVE_HIGH : constant := 1 * 2 ** 4; TRANS_DP_CTL_HSYNC_ACTIVE_HIGH : constant := 1 * 2 ** 3; type TRANS_DP_CTL_PORT_SELECT_Array is array (PCH_Port) of Word32; TRANS_DP_CTL_PORT_SELECT : constant TRANS_DP_CTL_PORT_SELECT_Array := (PCH_DP_B => 0 * 2 ** 29, PCH_DP_C => 1 * 2 ** 29, PCH_DP_D => 2 * 2 ** 29, others => 0); function TRANS_DP_CTL_BPC (BPC : BPC_Type) return Word32 is begin return (case BPC is when 6 => 2 * 2 ** 9, when 10 => 1 * 2 ** 9, when 12 => 3 * 2 ** 9, when others => 0 * 2 ** 9); end TRANS_DP_CTL_BPC; function TRANS_DATA_M_TU (Transfer_Unit : Positive) return Word32 is begin return Shift_Left (Word32 (Transfer_Unit - 1), 25); end TRANS_DATA_M_TU; ---------------------------------------------------------------------------- type Transcoder_Registers is record HTOTAL : Registers.Registers_Index; HBLANK : Registers.Registers_Index; HSYNC : Registers.Registers_Index; VTOTAL : Registers.Registers_Index; VBLANK : Registers.Registers_Index; VSYNC : Registers.Registers_Index; CONF : Registers.Registers_Index; DP_CTL : Registers.Registers_Index; DATA_M : Registers.Registers_Index; DATA_N : Registers.Registers_Index; LINK_M : Registers.Registers_Index; LINK_N : Registers.Registers_Index; CHICKEN2 : Registers.Registers_Index; end record; type Transcoder_Registers_Array is array (FDI_Port_Type) of Transcoder_Registers; TRANS : constant Transcoder_Registers_Array := Transcoder_Registers_Array' (FDI_A => (HTOTAL => Registers.TRANS_HTOTAL_A, HBLANK => Registers.TRANS_HBLANK_A, HSYNC => Registers.TRANS_HSYNC_A, VTOTAL => Registers.TRANS_VTOTAL_A, VBLANK => Registers.TRANS_VBLANK_A, VSYNC => Registers.TRANS_VSYNC_A, CONF => Registers.TRANSACONF, DP_CTL => Registers.TRANS_DP_CTL_A, DATA_M => Registers.TRANSA_DATA_M1, DATA_N => Registers.TRANSA_DATA_N1, LINK_M => Registers.TRANSA_DP_LINK_M1, LINK_N => Registers.TRANSA_DP_LINK_N1, CHICKEN2 => Registers.TRANSA_CHICKEN2), FDI_B => (HTOTAL => Registers.TRANS_HTOTAL_B, HBLANK => Registers.TRANS_HBLANK_B, HSYNC => Registers.TRANS_HSYNC_B, VTOTAL => Registers.TRANS_VTOTAL_B, VBLANK => Registers.TRANS_VBLANK_B, VSYNC => Registers.TRANS_VSYNC_B, CONF => Registers.TRANSBCONF, DP_CTL => Registers.TRANS_DP_CTL_B, DATA_M => Registers.TRANSB_DATA_M1, DATA_N => Registers.TRANSB_DATA_N1, LINK_M => Registers.TRANSB_DP_LINK_M1, LINK_N => Registers.TRANSB_DP_LINK_N1, CHICKEN2 => Registers.TRANSB_CHICKEN2), FDI_C => (HTOTAL => Registers.TRANS_HTOTAL_C, HBLANK => Registers.TRANS_HBLANK_C, HSYNC => Registers.TRANS_HSYNC_C, VTOTAL => Registers.TRANS_VTOTAL_C, VBLANK => Registers.TRANS_VBLANK_C, VSYNC => Registers.TRANS_VSYNC_C, CONF => Registers.TRANSCCONF, DP_CTL => Registers.TRANS_DP_CTL_C, DATA_M => Registers.TRANSC_DATA_M1, DATA_N => Registers.TRANSC_DATA_N1, LINK_M => Registers.TRANSC_DP_LINK_M1, LINK_N => Registers.TRANSC_DP_LINK_N1, CHICKEN2 => Registers.TRANSC_CHICKEN2)); ---------------------------------------------------------------------------- procedure On (Port_Cfg : Port_Config; Port : FDI_Port_Type; PLL : Word32) is Mode : constant Mode_Type := Port_Cfg.Mode; function Encode (LSW, MSW : Pos16) return Word32 is begin return (Word32 (LSW) - 1) or ((Word32 (MSW) - 1) * 2 ** 16); end Encode; begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); if Config.Has_DPLL_SEL then Registers.Unset_And_Set_Mask (Register => Registers.PCH_DPLL_SEL, Mask_Unset => DPLL_SEL_TRANSCODER_x_DPLL_SEL_MASK (Port), Mask_Set => DPLL_SEL_TRANSCODER_x_DPLL_ENABLE (Port) or DPLL_SEL_TRANSCODER_x_DPLL_SEL (Port, PLL)); end if; Registers.Write (Register => TRANS (Port).HTOTAL, Value => Encode (Mode.H_Visible, Mode.H_Total)); Registers.Write (Register => TRANS (Port).HBLANK, Value => Encode (Mode.H_Visible, Mode.H_Total)); Registers.Write (Register => TRANS (Port).HSYNC, Value => Encode (Mode.H_Sync_Begin, Mode.H_Sync_End)); Registers.Write (Register => TRANS (Port).VTOTAL, Value => Encode (Mode.V_Visible, Mode.V_Total)); Registers.Write (Register => TRANS (Port).VBLANK, Value => Encode (Mode.V_Visible, Mode.V_Total)); Registers.Write (Register => TRANS (Port).VSYNC, Value => Encode (Mode.V_Sync_Begin, Mode.V_Sync_End)); if Port_Cfg.Display = DP then declare Data_M, Link_M : DP_Info.M_Type; Data_N, Link_N : DP_Info.N_Type; begin DP_Info.Calculate_M_N (Link => Port_Cfg.DP, Mode => Port_Cfg.Mode, Data_M => Data_M, Data_N => Data_N, Link_M => Link_M, Link_N => Link_N); Registers.Write (Register => TRANS (Port).DATA_M, Value => TRANS_DATA_M_TU (64) or Word32 (Data_M)); Registers.Write (Register => TRANS (Port).DATA_N, Value => Word32 (Data_N)); Registers.Write (Register => TRANS (Port).LINK_M, Value => Word32 (Link_M)); Registers.Write (Register => TRANS (Port).LINK_N, Value => Word32 (Link_N)); end; if Config.Has_Trans_DP_Ctl then declare Polarity : constant Word32 := (if Port_Cfg.Mode.H_Sync_Active_High then TRANS_DP_CTL_HSYNC_ACTIVE_HIGH else 0) or (if Port_Cfg.Mode.V_Sync_Active_High then TRANS_DP_CTL_VSYNC_ACTIVE_HIGH else 0); Enhanced_Framing : constant Word32 := (if Port_Cfg.DP.Enhanced_Framing then TRANS_DP_CTL_ENHANCED_FRAMING else 0); begin Registers.Write (Register => TRANS (Port).DP_CTL, Value => TRANS_DP_CTL_OUTPUT_ENABLE or TRANS_DP_CTL_PORT_SELECT (Port_Cfg.PCH_Port) or Enhanced_Framing or TRANS_DP_CTL_BPC (Port_Cfg.Mode.BPC) or Polarity); end; end if; end if; if Config.Has_Trans_Timing_Ovrrde then Registers.Set_Mask (Register => TRANS (Port).CHICKEN2, Mask => TRANS_CHICKEN2_TIMING_OVERRIDE); end if; Registers.Write (Register => TRANS (Port).CONF, Value => TRANS_CONF_TRANSCODER_ENABLE); end On; procedure Off (Port : FDI_Port_Type) is begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); Registers.Unset_Mask (Register => TRANS (Port).CONF, Mask => TRANS_CONF_TRANSCODER_ENABLE); Registers.Wait_Unset_Mask (Register => TRANS (Port).CONF, Mask => TRANS_CONF_TRANSCODER_STATE, TOut_MS => 50); if Config.Has_Trans_Timing_Ovrrde then Registers.Unset_Mask (Register => TRANS (Port).CHICKEN2, Mask => TRANS_CHICKEN2_TIMING_OVERRIDE); end if; if Config.Has_Trans_DP_Ctl then Registers.Write (Register => TRANS (Port).DP_CTL, Value => TRANS_DP_CTL_PORT_SELECT_NONE); end if; if Config.Has_DPLL_SEL then Registers.Unset_Mask (Register => Registers.PCH_DPLL_SEL, Mask => DPLL_SEL_TRANSCODER_x_DPLL_ENABLE (Port)); end if; end Off; end HW.GFX.GMA.PCH.Transcoder;
36.808511
79
0.583141
2fd8b5421f2a651c2b12689d30471bbb84a8b605
27,040
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-tifiio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-tifiio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-tifiio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . F I X E D _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2015, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Fixed point I/O -- --------------- -- The following documents implementation details of the fixed point -- input/output routines in the GNAT run time. The first part describes -- general properties of fixed point types as defined by the Ada 95 standard, -- including the Information Systems Annex. -- Subsequently these are reduced to implementation constraints and the impact -- of these constraints on a few possible approaches to I/O are given. -- Based on this analysis, a specific implementation is selected for use in -- the GNAT run time. Finally, the chosen algorithm is analyzed numerically in -- order to provide user-level documentation on limits for range and precision -- of fixed point types as well as accuracy of input/output conversions. -- ------------------------------------------- -- - General Properties of Fixed Point Types - -- ------------------------------------------- -- Operations on fixed point values, other than input and output, are not -- important for the purposes of this document. Only the set of values that a -- fixed point type can represent and the input and output operations are -- significant. -- Values -- ------ -- Set set of values of a fixed point type comprise the integral -- multiples of a number called the small of the type. The small can -- either be a power of ten, a power of two or (if the implementation -- allows) an arbitrary strictly positive real value. -- Implementations need to support fixed-point types with a precision -- of at least 24 bits, and (in order to comply with the Information -- Systems Annex) decimal types need to support at least digits 18. -- For the rest, however, no requirements exist for the minimal small -- and range that need to be supported. -- Operations -- ---------- -- 'Image and 'Wide_Image (see RM 3.5(34)) -- These attributes return a decimal real literal best approximating -- the value (rounded away from zero if halfway between) with a -- single leading character that is either a minus sign or a space, -- one or more digits before the decimal point (with no redundant -- leading zeros), a decimal point, and N digits after the decimal -- point. For a subtype S, the value of N is S'Aft, the smallest -- positive integer such that (10**N)*S'Delta is greater or equal to -- one, see RM 3.5.10(5). -- For an arbitrary small, this means large number arithmetic needs -- to be performed. -- Put (see RM A.10.9(22-26)) -- The requirements for Put add no extra constraints over the image -- attributes, although it would be nice to be able to output more -- than S'Aft digits after the decimal point for values of subtype S. -- 'Value and 'Wide_Value attribute (RM 3.5(40-55)) -- Since the input can be given in any base in the range 2..16, -- accurate conversion to a fixed point number may require -- arbitrary precision arithmetic if there is no limit on the -- magnitude of the small of the fixed point type. -- Get (see RM A.10.9(12-21)) -- The requirements for Get are identical to those of the Value -- attribute. -- ------------------------------ -- - Implementation Constraints - -- ------------------------------ -- The requirements listed above for the input/output operations lead to -- significant complexity, if no constraints are put on supported smalls. -- Implementation Strategies -- ------------------------- -- * Float arithmetic -- * Arbitrary-precision integer arithmetic -- * Fixed-precision integer arithmetic -- Although it seems convenient to convert fixed point numbers to floating- -- point and then print them, this leads to a number of restrictions. -- The first one is precision. The widest floating-point type generally -- available has 53 bits of mantissa. This means that Fine_Delta cannot -- be less than 2.0**(-53). -- In GNAT, Fine_Delta is 2.0**(-63), and Duration for example is a -- 64-bit type. It would still be possible to use multi-precision -- floating-point to perform calculations using longer mantissas, -- but this is a much harder approach. -- The base conversions needed for input and output of (non-decimal) -- fixed point types can be seen as pairs of integer multiplications -- and divisions. -- Arbitrary-precision integer arithmetic would be suitable for the job -- at hand, but has the draw-back that it is very heavy implementation-wise. -- Especially in embedded systems, where fixed point types are often used, -- it may not be desirable to require large amounts of storage and time -- for fixed I/O operations. -- Fixed-precision integer arithmetic has the advantage of simplicity and -- speed. For the most common fixed point types this would be a perfect -- solution. The downside however may be a too limited set of acceptable -- fixed point types. -- Extra Precision -- --------------- -- Using a scaled divide which truncates and returns a remainder R, -- another E trailing digits can be calculated by computing the value -- (R * (10.0**E)) / Z using another scaled divide. This procedure -- can be repeated to compute an arbitrary number of digits in linear -- time and storage. The last scaled divide should be rounded, with -- a possible carry propagating to the more significant digits, to -- ensure correct rounding of the unit in the last place. -- An extension of this technique is to limit the value of Q to 9 decimal -- digits, since 32-bit integers can be much more efficient than 64-bit -- integers to output. with Interfaces; use Interfaces; with System.Arith_64; use System.Arith_64; with System.Img_Real; use System.Img_Real; with Ada.Text_IO; use Ada.Text_IO; with Ada.Text_IO.Float_Aux; with Ada.Text_IO.Generic_Aux; package body Ada.Text_IO.Fixed_IO is -- Note: we still use the floating-point I/O routines for input of -- ordinary fixed-point and output using exponent format. This will -- result in inaccuracies for fixed point types with a small that is -- not a power of two, and for types that require more precision than -- is available in Long_Long_Float. package Aux renames Ada.Text_IO.Float_Aux; Extra_Layout_Space : constant Field := 5 + Num'Fore; -- Extra space that may be needed for output of sign, decimal point, -- exponent indication and mandatory decimals after and before the -- decimal point. A string with length -- Fore + Aft + Exp + Extra_Layout_Space -- is always long enough for formatting any fixed point number -- Implementation of Put routines -- The following section describes a specific implementation choice for -- performing base conversions needed for output of values of a fixed -- point type T with small T'Small. The goal is to be able to output -- all values of types with a precision of 64 bits and a delta of at -- least 2.0**(-63), as these are current GNAT limitations already. -- The chosen algorithm uses fixed precision integer arithmetic for -- reasons of simplicity and efficiency. It is important to understand -- in what ways the most simple and accurate approach to fixed point I/O -- is limiting, before considering more complicated schemes. -- Without loss of generality assume T has a range (-2.0**63) * T'Small -- .. (2.0**63 - 1) * T'Small, and is output with Aft digits after the -- decimal point and T'Fore - 1 before. If T'Small is integer, or -- 1.0 / T'Small is integer, let S = T'Small and E = 0. For other T'Small, -- let S and E be integers such that S / 10**E best approximates T'Small -- and S is in the range 10**17 .. 10**18 - 1. The extra decimal scaling -- factor 10**E can be trivially handled during final output, by adjusting -- the decimal point or exponent. -- Convert a value X * S of type T to a 64-bit integer value Q equal -- to 10.0**D * (X * S) rounded to the nearest integer. -- This conversion is a scaled integer divide of the form -- Q := (X * Y) / Z, -- where all variables are 64-bit signed integers using 2's complement, -- and both the multiplication and division are done using full -- intermediate precision. The final decimal value to be output is -- Q * 10**(E-D) -- This value can be written to the output file or to the result string -- according to the format described in RM A.3.10. The details of this -- operation are omitted here. -- A 64-bit value can contain all integers with 18 decimal digits, but -- not all with 19 decimal digits. If the total number of requested output -- digits (Fore - 1) + Aft is greater than 18, for purposes of the -- conversion Aft is adjusted to 18 - (Fore - 1). In that case, or -- when Fore > 19, trailing zeros can complete the output after writing -- the first 18 significant digits, or the technique described in the -- next section can be used. -- The final expression for D is -- D := Integer'Max (-18, Integer'Min (Aft, 18 - (Fore - 1))); -- For Y and Z the following expressions can be derived: -- Q / (10.0**D) = X * S -- Q = X * S * (10.0**D) = (X * Y) / Z -- S * 10.0**D = Y / Z; -- If S is an integer greater than or equal to one, then Fore must be at -- least 20 in order to print T'First, which is at most -2.0**63. -- This means D < 0, so use -- (1) Y = -S and Z = -10**(-D) -- If 1.0 / S is an integer greater than one, use -- (2) Y = -10**D and Z = -(1.0 / S), for D >= 0 -- or -- (3) Y = 1 and Z = (1.0 / S) * 10**(-D), for D < 0 -- Negative values are used for nominator Y and denominator Z, so that S -- can have a maximum value of 2.0**63 and a minimum of 2.0**(-63). -- For Z in -1 .. -9, Fore will still be 20, and D will be negative, as -- (-2.0**63) / -9 is greater than 10**18. In these cases there is room -- in the denominator for the extra decimal scaling required, so case (3) -- will not overflow. pragma Assert (System.Fine_Delta >= 2.0**(-63)); pragma Assert (Num'Small in 2.0**(-63) .. 2.0**63); pragma Assert (Num'Fore <= 37); -- These assertions need to be relaxed to allow for a Small of -- 2.0**(-64) at least, since there is an ACATS test for this ??? Max_Digits : constant := 18; -- Maximum number of decimal digits that can be represented in a -- 64-bit signed number, see above -- The constants E0 .. E5 implement a binary search for the appropriate -- power of ten to scale the small so that it has one digit before the -- decimal point. subtype Int is Integer; E0 : constant Int := -(20 * Boolean'Pos (Num'Small >= 1.0E1)); E1 : constant Int := E0 + 10 * Boolean'Pos (Num'Small * 10.0**E0 < 1.0E-10); E2 : constant Int := E1 + 5 * Boolean'Pos (Num'Small * 10.0**E1 < 1.0E-5); E3 : constant Int := E2 + 3 * Boolean'Pos (Num'Small * 10.0**E2 < 1.0E-3); E4 : constant Int := E3 + 2 * Boolean'Pos (Num'Small * 10.0**E3 < 1.0E-1); E5 : constant Int := E4 + 1 * Boolean'Pos (Num'Small * 10.0**E4 < 1.0E-0); Scale : constant Integer := E5; pragma Assert (Num'Small * 10.0**Scale >= 1.0 and then Num'Small * 10.0**Scale < 10.0); Exact : constant Boolean := Float'Floor (Num'Small) = Float'Ceiling (Num'Small) or else Float'Floor (1.0 / Num'Small) = Float'Ceiling (1.0 / Num'Small) or else Num'Small >= 10.0**Max_Digits; -- True iff a numerator and denominator can be calculated such that -- their ratio exactly represents the small of Num. procedure Put (To : out String; Last : out Natural; Item : Num; Fore : Integer; Aft : Field; Exp : Field); -- Actual output function, used internally by all other Put routines. -- The formal Fore is an Integer, not a Field, because the routine is -- also called from the version of Put that performs I/O to a string, -- where the starting position depends on the size of the String, and -- bears no relation to the bounds of Field. --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Num; Width : Field := 0) is pragma Unsuppress (Range_Check); begin Aux.Get (File, Long_Long_Float (Item), Width); exception when Constraint_Error => raise Data_Error; end Get; procedure Get (Item : out Num; Width : Field := 0) is pragma Unsuppress (Range_Check); begin Aux.Get (Current_In, Long_Long_Float (Item), Width); exception when Constraint_Error => raise Data_Error; end Get; procedure Get (From : String; Item : out Num; Last : out Positive) is pragma Unsuppress (Range_Check); begin Aux.Gets (From, Long_Long_Float (Item), Last); exception when Constraint_Error => raise Data_Error; end Get; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (1 .. Fore + Aft + Exp + Extra_Layout_Space); Last : Natural; begin Put (S, Last, Item, Fore, Aft, Exp); Generic_Aux.Put_Item (File, S (1 .. Last)); end Put; procedure Put (Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (1 .. Fore + Aft + Exp + Extra_Layout_Space); Last : Natural; begin Put (S, Last, Item, Fore, Aft, Exp); Generic_Aux.Put_Item (Text_IO.Current_Out, S (1 .. Last)); end Put; procedure Put (To : out String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is Fore : constant Integer := To'Length - 1 -- Decimal point - Field'Max (1, Aft) -- Decimal part - Boolean'Pos (Exp /= 0) -- Exponent indicator - Exp; -- Exponent Last : Natural; begin if Fore - Boolean'Pos (Item < 0.0) < 1 then raise Layout_Error; end if; Put (To, Last, Item, Fore, Aft, Exp); if Last /= To'Last then raise Layout_Error; end if; end Put; procedure Put (To : out String; Last : out Natural; Item : Num; Fore : Integer; Aft : Field; Exp : Field) is subtype Digit is Int64 range 0 .. 9; X : constant Int64 := Int64'Integer_Value (Item); A : constant Field := Field'Max (Aft, 1); Neg : constant Boolean := (Item < 0.0); Pos : Integer := 0; -- Next digit X has value X * 10.0**Pos; procedure Put_Character (C : Character); pragma Inline (Put_Character); -- Add C to the output string To, updating Last procedure Put_Digit (X : Digit); -- Add digit X to the output string (going from left to right), updating -- Last and Pos, and inserting the sign, leading zeros or a decimal -- point when necessary. After outputting the first digit, Pos must not -- be changed outside Put_Digit anymore. procedure Put_Int64 (X : Int64; Scale : Integer); -- Output the decimal number abs X * 10**Scale procedure Put_Scaled (X, Y, Z : Int64; A : Field; E : Integer); -- Output the decimal number (X * Y / Z) * 10**E, producing A digits -- after the decimal point and rounding the final digit. The value -- X * Y / Z is computed with full precision, but must be in the -- range of Int64. ------------------- -- Put_Character -- ------------------- procedure Put_Character (C : Character) is begin Last := Last + 1; -- Never put a character outside of string To. Exception Layout_Error -- will be raised later if Last is greater than To'Last. if Last <= To'Last then To (Last) := C; end if; end Put_Character; --------------- -- Put_Digit -- --------------- procedure Put_Digit (X : Digit) is Digs : constant array (Digit) of Character := "0123456789"; begin if Last = To'First - 1 then if X /= 0 or else Pos <= 0 then -- Before outputting first digit, include leading space, -- possible minus sign and, if the first digit is fractional, -- decimal seperator and leading zeros. -- The Fore part has Pos + 1 + Boolean'Pos (Neg) characters, -- if Pos >= 0 and otherwise has a single zero digit plus minus -- sign if negative. Add leading space if necessary. for J in Integer'Max (0, Pos) + 2 + Boolean'Pos (Neg) .. Fore loop Put_Character (' '); end loop; -- Output minus sign, if number is negative if Neg then Put_Character ('-'); end if; -- If starting with fractional digit, output leading zeros if Pos < 0 then Put_Character ('0'); Put_Character ('.'); for J in Pos .. -2 loop Put_Character ('0'); end loop; end if; Put_Character (Digs (X)); end if; else -- This is not the first digit to be output, so the only -- special handling is that for the decimal point if Pos = -1 then Put_Character ('.'); end if; Put_Character (Digs (X)); end if; Pos := Pos - 1; end Put_Digit; --------------- -- Put_Int64 -- --------------- procedure Put_Int64 (X : Int64; Scale : Integer) is begin if X = 0 then return; end if; if X not in -9 .. 9 then Put_Int64 (X / 10, Scale + 1); end if; -- Use Put_Digit to advance Pos. This fixes a case where the second -- or later Scaled_Divide would omit leading zeroes, resulting in -- too few digits produced and a Layout_Error as result. while Pos > Scale loop Put_Digit (0); end loop; -- If and only if more than one digit is output before the decimal -- point, pos will be unequal to scale when outputting the first -- digit. pragma Assert (Pos = Scale or else Last = To'First - 1); Pos := Scale; Put_Digit (abs (X rem 10)); end Put_Int64; ---------------- -- Put_Scaled -- ---------------- procedure Put_Scaled (X, Y, Z : Int64; A : Field; E : Integer) is pragma Assert (E >= -Max_Digits); AA : constant Field := E + A; N : constant Natural := (AA + Max_Digits - 1) / Max_Digits + 1; Q : array (0 .. N - 1) of Int64 := (others => 0); -- Each element of Q has Max_Digits decimal digits, except the -- last, which has eAA rem Max_Digits. Only Q (Q'First) may have an -- absolute value equal to or larger than 10**Max_Digits. Only the -- absolute value of the elements is not significant, not the sign. XX : Int64 := X; YY : Int64 := Y; begin for J in Q'Range loop exit when XX = 0; if J > 0 then YY := 10**(Integer'Min (Max_Digits, AA - (J - 1) * Max_Digits)); end if; Scaled_Divide (XX, YY, Z, Q (J), R => XX, Round => False); end loop; if -E > A then pragma Assert (N = 1); Discard_Extra_Digits : declare Factor : constant Int64 := 10**(-E - A); begin -- The scaling factors were such that the first division -- produced more digits than requested. So divide away extra -- digits and compute new remainder for later rounding. if abs (Q (0) rem Factor) >= Factor / 2 then Q (0) := abs (Q (0) / Factor) + 1; else Q (0) := Q (0) / Factor; end if; XX := 0; end Discard_Extra_Digits; end if; -- At this point XX is a remainder and we need to determine if the -- quotient in Q must be rounded away from zero. -- As XX is less than the divisor, it is safe to take its absolute -- without chance of overflow. The check to see if XX is at least -- half the absolute value of the divisor must be done carefully to -- avoid overflow or lose precision. XX := abs XX; if XX >= 2**62 or else (Z < 0 and then (-XX) * 2 <= Z) or else (Z >= 0 and then XX * 2 >= Z) then -- OK, rounding is necessary. As the sign is not significant, -- take advantage of the fact that an extra negative value will -- always be available when propagating the carry. Q (Q'Last) := -abs Q (Q'Last) - 1; Propagate_Carry : for J in reverse 1 .. Q'Last loop if Q (J) = YY or else Q (J) = -YY then Q (J) := 0; Q (J - 1) := -abs Q (J - 1) - 1; else exit Propagate_Carry; end if; end loop Propagate_Carry; end if; for J in Q'First .. Q'Last - 1 loop Put_Int64 (Q (J), E - J * Max_Digits); end loop; Put_Int64 (Q (Q'Last), -A); end Put_Scaled; -- Start of processing for Put begin Last := To'First - 1; if Exp /= 0 then -- With the Exp format, it is not known how many output digits to -- generate, as leading zeros must be ignored. Computing too many -- digits and then truncating the output will not give the closest -- output, it is necessary to round at the correct digit. -- The general approach is as follows: as long as no digits have -- been generated, compute the Aft next digits (without rounding). -- Once a non-zero digit is generated, determine the exact number -- of digits remaining and compute them with rounding. -- Since a large number of iterations might be necessary in case -- of Aft = 1, the following optimization would be desirable. -- Count the number Z of leading zero bits in the integer -- representation of X, and start with producing Aft + Z * 1000 / -- 3322 digits in the first scaled division. -- However, the floating-point routines are still used now ??? System.Img_Real.Set_Image_Real (Long_Long_Float (Item), To, Last, Fore, Aft, Exp); return; end if; if Exact then declare D : constant Integer := Integer'Min (A, Max_Digits - (Num'Fore - 1)); Y : constant Int64 := Int64'Min (Int64 (-Num'Small), -1) * 10**Integer'Max (0, D); Z : constant Int64 := Int64'Min (Int64 (-(1.0 / Num'Small)), -1) * 10**Integer'Max (0, -D); begin Put_Scaled (X, Y, Z, A, -D); end; else -- not Exact declare E : constant Integer := Max_Digits - 1 + Scale; D : constant Integer := Scale - 1; Y : constant Int64 := Int64 (-Num'Small * 10.0**E); Z : constant Int64 := -10**Max_Digits; begin Put_Scaled (X, Y, Z, A, -D); end; end if; -- If only zero digits encountered, unit digit has not been output yet if Last < To'First then Pos := 0; elsif Last > To'Last then raise Layout_Error; -- Not enough room in the output variable end if; -- Always output digits up to the first one after the decimal point while Pos >= -A loop Put_Digit (0); end loop; end Put; end Ada.Text_IO.Fixed_IO;
37.712692
79
0.566975
1a4fea8db4675b593ce077849b8fb4a714d63dd4
1,558
ads
Ada
regtests/ado-objects-tests.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
regtests/ado-objects-tests.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
regtests/ado-objects-tests.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- ADO Objects Tests -- Tests for ADO.Objects -- Copyright (C) 2011, 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; package ADO.Objects.Tests is type Test is new Util.Tests.Test with null record; procedure Test_Key (T : in out Test); procedure Test_Object_Ref (T : in out Test); procedure Test_Create_Object (T : in out Test); procedure Test_Delete_Object (T : in out Test); -- Test Is_Inserted and Is_Null procedure Test_Is_Inserted (T : in out Test); -- Test Is_Modified procedure Test_Is_Modified (T : in out Test); -- Test object creation/update/load with string as key. procedure Test_String_Key (T : in out Test); -- Add the tests in the test suite procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); end ADO.Objects.Tests;
34.622222
76
0.654044
418c98625ad05dfba8dd98eff6f90e421e4d9d11
10
adb
Ada
third_party/universal-ctags/ctags/Units/parser-ada.r/ada-protected.d/input.adb
f110/wing
31b259f723b57a6481252a4b8b717fcee6b01ff4
[ "MIT" ]
4
2017-02-07T20:04:31.000Z
2022-01-30T14:04:45.000Z
third_party/universal-ctags/ctags/Units/parser-ada.r/ada-protected.d/input.adb
f110/wing
31b259f723b57a6481252a4b8b717fcee6b01ff4
[ "MIT" ]
1
2018-01-07T19:14:53.000Z
2018-01-07T19:14:53.000Z
third_party/universal-ctags/ctags/Units/parser-ada.r/ada-protected.d/input.adb
f110/wing
31b259f723b57a6481252a4b8b717fcee6b01ff4
[ "MIT" ]
1
2021-04-26T09:00:06.000Z
2021-04-26T09:00:06.000Z
protected
5
9
0.9
3de41ce1e672ce915c7f01122ef2ad6c12407243
196
adb
Ada
bug-reports/codepeer-units/src/unav.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
12
2017-06-08T14:19:57.000Z
2022-03-09T02:48:59.000Z
bug-reports/codepeer-units/src/unav.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
6
2017-06-08T13:13:50.000Z
2020-05-15T09:32:43.000Z
bug-reports/codepeer-units/src/unav.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
3
2017-06-30T14:05:06.000Z
2022-02-17T12:20:45.000Z
package body unav with SPARK_Mode is function Get_Distance return Length_Type is darc : Unit_Type := 0.5; begin return 2.0 * EARTH_RADIUS * darc; end Get_Distance; end unav;
21.777778
46
0.693878
2e370d6fadd7f533dae9d819af35698f5f242192
1,612
adb
Ada
samples/volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
samples/volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
samples/volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- volume_server -- Example of server with a servlet -- Copyright (C) 2010 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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 ASF.Server.Web; with ASF.Servlets; with Volume_Servlet; with Util.Log.Loggers; procedure Volume_Server is Compute : aliased Volume_Servlet.Servlet; App : aliased ASF.Servlets.Servlet_Registry; WS : ASF.Server.Web.AWS_Container; Log : Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Volume_Server"); begin -- Register the servlets and filters App.Add_Servlet (Name => "compute", Server => Compute'Unchecked_Access); -- Define servlet mappings App.Add_Mapping (Name => "compute", Pattern => "*.html"); WS.Register_Application ("/volume", App'Unchecked_Access); Log.Info ("Connect you browser to: http://localhost:8080/volume/compute.html"); WS.Start; delay 60.0; end Volume_Server;
35.822222
82
0.656328
1ae74d990eca13553c0156484a46c75976f8b6ac
291
ads
Ada
Test/random_int.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
19
2018-03-18T18:07:14.000Z
2022-03-30T03:10:12.000Z
Test/random_int.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
4
2021-08-23T12:52:06.000Z
2022-03-31T10:48:43.000Z
Test/random_int.ads
jrcarter/Ada_GUI
65a829c55dec91fd48a0b72f88d76137768bf4fb
[ "BSD-3-Clause" ]
null
null
null
-- Ada_GUI version of Random_Int -- -- Copyright (C) 2021 by PragmAda Software Engineering -- -- Released under the terms of the 3-Clause BSD License. See https://opensource.org/licenses/BSD-3-Clause -- -- Root of the package hierarchy package Random_Int is pragma Pure; end Random_Int;
24.25
105
0.749141
2ed95ed9bcec9327e9db48da3c68d93730c84f04
33,559
ads
Ada
tools-src/gnu/gcc/gcc/ada/g-socket.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/g-socket.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/g-socket.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 2001 Ada Core Technologies, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- This package provides an interface to the sockets communication facility -- provided on many operating systems. Currently this is implemented on all -- native GNAT ports except for VMS. It is not yet implemented for any of -- the cross-ports (e.g. it is not available for VxWorks or LynxOS). -- Another restriction is that there is no multicast support under Windows -- or under any system on which the multicast support is not available or -- installed. with Ada.Exceptions; with Ada.Streams; package GNAT.Sockets is -- Sockets are designed to provide a consistent communication -- facility between applications. This package provides an -- Ada-like interface similar to the one proposed as part of the -- BSD socket layer. This is a system independent thick binding. -- Here is a typical example of what you can do. -- with GNAT.Sockets; use GNAT.Sockets; -- -- with Ada.Text_IO; -- with Ada.Exceptions; use Ada.Exceptions; -- -- procedure PingPong is -- -- Group : constant String := "239.255.128.128"; -- -- Multicast groupe: administratively scoped IP address -- -- task Pong is -- entry Start; -- entry Stop; -- end Pong; -- -- task body Pong is -- Address : Sock_Addr_Type; -- Server : Socket_Type; -- Socket : Socket_Type; -- Channel : Stream_Access; -- -- begin -- accept Start; -- -- -- Get an Internet address of a host (here "localhost"). -- -- Note that a host can have several addresses. Here we get -- -- the first one which is supposed to be the official one. -- -- Address.Addr := Addresses (Get_Host_By_Name ("localhost"), 1); -- -- -- Get a socket address that is an Internet address and a port -- -- Address.Port := 5432; -- -- -- The first step is to create a socket. Once created, this -- -- socket must be associated to with an address. Usually only a -- -- server (Pong here) needs to bind an address explicitly. -- -- Most of the time clients can skip this step because the -- -- socket routines will bind an arbitrary address to an unbound -- -- socket. -- -- Create_Socket (Server); -- -- -- Allow reuse of local addresses. -- -- Set_Socket_Option -- (Server, -- Socket_Level, -- (Reuse_Address, True)); -- -- Bind_Socket (Server, Address); -- -- -- A server marks a socket as willing to receive connect events. -- -- Listen_Socket (Server); -- -- -- Once a server calls Listen_Socket, incoming connects events -- -- can be accepted. The returned Socket is a new socket that -- -- represents the server side of the connection. Server remains -- -- available to receive further connections. -- -- Accept_Socket (Server, Socket, Address); -- -- -- Return a stream associated to the connected socket. -- -- Channel := Stream (Socket); -- -- -- Force Pong to block -- -- delay 0.2; -- -- -- Receive and print message from client Ping. -- -- declare -- Message : String := String'Input (Channel); -- -- begin -- Ada.Text_IO.Put_Line (Message); -- -- -- Send same message to server Pong. -- -- String'Output (Channel, Message); -- end; -- -- Close_Socket (Server); -- Close_Socket (Socket); -- -- -- Part of the multicast example -- -- -- Create a datagram socket to send connectionless, unreliable -- -- messages of a fixed maximum length. -- -- Create_Socket (Socket, Family_Inet, Socket_Datagram); -- -- -- Allow reuse of local addresses. -- -- Set_Socket_Option -- (Socket, -- Socket_Level, -- (Reuse_Address, True)); -- -- -- Join a multicast group. -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Add_Membership, Inet_Addr (Group), Any_Inet_Addr)); -- -- -- Controls the live time of the datagram to avoid it being -- -- looped forever due to routing errors. Routers decrement -- -- the TTL of every datagram as it traverses from one network -- -- to another and when its value reaches 0 the packet is -- -- dropped. Default is 1. -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Multicast_TTL, 1)); -- -- -- Want the data you send to be looped back to your host. -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Multicast_Loop, True)); -- -- -- If this socket is intended to receive messages, bind it to a -- -- given socket address. -- -- Address.Addr := Any_Inet_Addr; -- Address.Port := 55505; -- -- Bind_Socket (Socket, Address); -- -- -- If this socket is intended to send messages, provide the -- -- receiver socket address. -- -- Address.Addr := Inet_Addr (Group); -- Address.Port := 55506; -- -- Channel := Stream (Socket, Address); -- -- -- Receive and print message from client Ping. -- -- declare -- Message : String := String'Input (Channel); -- -- begin -- -- -- Get the address of the sender. -- -- Address := Get_Address (Channel); -- Ada.Text_IO.Put_Line (Message & " from " & Image (Address)); -- -- -- Send same message to server Pong. -- -- String'Output (Channel, Message); -- end; -- -- Close_Socket (Socket); -- -- accept Stop; -- -- exception when E : others => -- Ada.Text_IO.Put_Line -- (Exception_Name (E) & ": " & Exception_Message (E)); -- end Pong; -- -- task Ping is -- entry Start; -- entry Stop; -- end Ping; -- -- task body Ping is -- Address : Sock_Addr_Type; -- Socket : Socket_Type; -- Channel : Stream_Access; -- -- begin -- accept Start; -- -- -- See comments in Ping section for the first steps. -- -- Address.Addr := Addresses (Get_Host_By_Name ("localhost"), 1); -- Address.Port := 5432; -- Create_Socket (Socket); -- -- Set_Socket_Option -- (Socket, -- Socket_Level, -- (Reuse_Address, True)); -- -- -- Force Pong to block -- -- delay 0.2; -- -- -- If the client's socket is not bound, Connect_Socket will -- -- bind to an unused address. The client uses Connect_Socket to -- -- create a logical connection between the client's socket and -- -- a server's socket returned by Accept_Socket. -- -- Connect_Socket (Socket, Address); -- -- Channel := Stream (Socket); -- -- -- Send message to server Pong. -- -- String'Output (Channel, "Hello world"); -- -- -- Force Ping to block -- -- delay 0.2; -- -- -- Receive and print message from server Pong. -- -- Ada.Text_IO.Put_Line (String'Input (Channel)); -- Close_Socket (Socket); -- -- -- Part of multicast example. Code similar to Pong's one. -- -- Create_Socket (Socket, Family_Inet, Socket_Datagram); -- -- Set_Socket_Option -- (Socket, -- Socket_Level, -- (Reuse_Address, True)); -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Add_Membership, Inet_Addr (Group), Any_Inet_Addr)); -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Multicast_TTL, 1)); -- -- Set_Socket_Option -- (Socket, -- IP_Protocol_For_IP_Level, -- (Multicast_Loop, True)); -- -- Address.Addr := Any_Inet_Addr; -- Address.Port := 55506; -- -- Bind_Socket (Socket, Address); -- -- Address.Addr := Inet_Addr (Group); -- Address.Port := 55505; -- -- Channel := Stream (Socket, Address); -- -- -- Send message to server Pong. -- -- String'Output (Channel, "Hello world"); -- -- -- Receive and print message from server Pong. -- -- declare -- Message : String := String'Input (Channel); -- -- begin -- Address := Get_Address (Channel); -- Ada.Text_IO.Put_Line (Message & " from " & Image (Address)); -- end; -- -- Close_Socket (Socket); -- -- accept Stop; -- -- exception when E : others => -- Ada.Text_IO.Put_Line -- (Exception_Name (E) & ": " & Exception_Message (E)); -- end Ping; -- -- begin -- -- Indicate whether the thread library provides process -- -- blocking IO. Basically, if you are not using FSU threads -- -- the default is ok. -- -- Initialize (Process_Blocking_IO => False); -- Ping.Start; -- Pong.Start; -- Ping.Stop; -- Pong.Stop; -- Finalize; -- end PingPong; procedure Initialize (Process_Blocking_IO : Boolean := False); -- Initialize must be called before using any socket routines. If -- the thread library provides process blocking IO - basically -- with FSU threads - GNAT.Sockets should be initialized with a -- value of True to simulate thread blocking IO. Further calls to -- Initialize will be ignored. procedure Finalize; -- After Finalize is called it is not possible to use any routines -- exported in by this package. This procedure is idempotent. type Socket_Type is private; -- Sockets are used to implement a reliable bi-directional -- point-to-point, stream-based connections between -- hosts. No_Socket provides a special value to denote -- uninitialized sockets. No_Socket : constant Socket_Type; Socket_Error : exception; -- There is only one exception in this package to deal with an -- error during a socket routine. Once raised, its message -- contains a string describing the error code. function Image (Socket : Socket_Type) return String; -- Return a printable string for Socket function To_C (Socket : Socket_Type) return Integer; -- Return a file descriptor to be used by external subprograms -- especially the C functions that are not yet interfaced in this -- package. type Family_Type is (Family_Inet, Family_Inet6); -- Address family (or protocol family) identifies the -- communication domain and groups protocols with similar address -- formats. IPv6 will soon be supported. type Mode_Type is (Socket_Stream, Socket_Datagram); -- Stream sockets provide connection-oriented byte -- streams. Datagram sockets support unreliable connectionless -- message based communication. type Shutmode_Type is (Shut_Read, Shut_Write, Shut_Read_Write); -- When a process closes a socket, the policy is to retain any -- data queued until either a delivery or a timeout expiration (in -- this case, the data are discarded). A finer control is -- available through shutdown. With Shut_Read, no more data can be -- received from the socket. With_Write, no more data can be -- transmitted. Neither transmission nor reception can be -- performed with Shut_Read_Write. type Port_Type is new Natural; -- Classical port definition. No_Port provides a special value to -- denote uninitialized port. Any_Port provides a special value -- enabling all ports. Any_Port : constant Port_Type; No_Port : constant Port_Type; type Inet_Addr_Type (Family : Family_Type := Family_Inet) is private; -- An Internet address depends on an address family (IPv4 contains -- 4 octets and Ipv6 contains 16 octets). Any_Inet_Address is a -- special value treated like a wildcard enabling all addresses. -- No_Inet_Addr provides a special value to denote uninitialized -- inet addresses. Any_Inet_Addr : constant Inet_Addr_Type; No_Inet_Addr : constant Inet_Addr_Type; type Sock_Addr_Type (Family : Family_Type := Family_Inet) is record Addr : Inet_Addr_Type (Family); Port : Port_Type; end record; -- Socket addresses fully define a socket connection with a -- protocol family, an Internet address and a port. No_Sock_Addr -- provides a special value for uninitialized socket addresses. No_Sock_Addr : constant Sock_Addr_Type; function Image (Value : Inet_Addr_Type) return String; -- Return an image of an Internet address. IPv4 notation consists -- in 4 octets in decimal format separated by dots. IPv6 notation -- consists in 16 octets in hexadecimal format separated by -- colons (and possibly dots). function Image (Value : Sock_Addr_Type) return String; -- Return inet address image and port image separated by a colon. function Inet_Addr (Image : String) return Inet_Addr_Type; -- Convert address image from numbers-and-dots notation into an -- inet address. -- Host entries provide a complete information on a given host: -- the official name, an array of alternative names or aliases and -- array of network addresses. type Host_Entry_Type (Aliases_Length, Addresses_Length : Natural) is private; function Official_Name (E : Host_Entry_Type) return String; -- Return official name in host entry function Aliases_Length (E : Host_Entry_Type) return Natural; -- Return number of aliases in host entry function Addresses_Length (E : Host_Entry_Type) return Natural; -- Return number of addresses in host entry function Aliases (E : Host_Entry_Type; N : Positive := 1) return String; -- Return N'th aliases in host entry. The first index is 1. function Addresses (E : Host_Entry_Type; N : Positive := 1) return Inet_Addr_Type; -- Return N'th addresses in host entry. The first index is 1. Host_Error : exception; -- Exception raised by the two following procedures. Once raised, -- its message contains a string describing the error code. This -- exception is raised when an host entry can not be retrieved. function Get_Host_By_Address (Address : Inet_Addr_Type; Family : Family_Type := Family_Inet) return Host_Entry_Type; -- Return host entry structure for the given inet address function Get_Host_By_Name (Name : String) return Host_Entry_Type; -- Return host entry structure for the given host name function Host_Name return String; -- Return the name of the current host -- Errors are described by an enumeration type. There is only one -- exception Socket_Error in this package to deal with an error -- during a socket routine. Once raised, its message contains the -- error code between brackets and a string describing the error -- code. type Error_Type is (Permission_Denied, Address_Already_In_Use, Cannot_Assign_Requested_Address, Address_Family_Not_Supported_By_Protocol, Operation_Already_In_Progress, Bad_File_Descriptor, Connection_Refused, Bad_Address, Operation_Now_In_Progress, Interrupted_System_Call, Invalid_Argument, Input_Output_Error, Transport_Endpoint_Already_Connected, Message_Too_Long, Network_Is_Unreachable, No_Buffer_Space_Available, Protocol_Not_Available, Transport_Endpoint_Not_Connected, Operation_Not_Supported, Protocol_Not_Supported, Socket_Type_Not_Supported, Connection_Timed_Out, Resource_Temporarily_Unavailable, Unknown_Host, Host_Name_Lookup_Failure, No_Address_Associated_With_Name, Unknown_Server_Error, Cannot_Resolve_Error); -- Get_Socket_Options and Set_Socket_Options manipulate options -- associated with a socket. Options may exist at multiple -- protocol levels in the communication stack. Socket_Level is the -- uppermost socket level. type Level_Type is ( Socket_Level, IP_Protocol_For_IP_Level, IP_Protocol_For_UDP_Level, IP_Protocol_For_TCP_Level); -- There are several options available to manipulate sockets. Each -- option has a name and several values available. Most of the -- time, the value is a boolean to enable or disable this option. type Option_Name is ( Keep_Alive, -- Enable sending of keep-alive messages Reuse_Address, -- Allow bind to reuse local address Broadcast, -- Enable datagram sockets to recv/send broadcast packets Send_Buffer, -- Set/get the maximum socket send buffer in bytes Receive_Buffer, -- Set/get the maximum socket recv buffer in bytes Linger, -- Shutdown wait for msg to be sent or timeout occur Error, -- Get and clear the pending socket error No_Delay, -- Do not delay send to coalesce packets (TCP_NODELAY) Add_Membership, -- Join a multicast group Drop_Membership, -- Leave a multicast group Multicast_TTL, -- Indicates the time-to-live of sent multicast packets Multicast_Loop); -- Sent multicast packets are looped to the local socket type Option_Type (Name : Option_Name := Keep_Alive) is record case Name is when Keep_Alive | Reuse_Address | Broadcast | Linger | No_Delay | Multicast_Loop => Enabled : Boolean; case Name is when Linger => Seconds : Natural; when others => null; end case; when Send_Buffer | Receive_Buffer => Size : Natural; when Error => Error : Error_Type; when Add_Membership | Drop_Membership => Multiaddr : Inet_Addr_Type; Interface : Inet_Addr_Type; when Multicast_TTL => Time_To_Live : Natural; end case; end record; -- There are several controls available to manipulate -- sockets. Each option has a name and several values available. -- These controls differ from the socket options in that they are -- not specific to sockets but are available for any device. type Request_Name is ( Non_Blocking_IO, -- Cause a caller not to wait on blocking operations. N_Bytes_To_Read); -- Return the number of bytes available to read type Request_Type (Name : Request_Name := Non_Blocking_IO) is record case Name is when Non_Blocking_IO => Enabled : Boolean; when N_Bytes_To_Read => Size : Natural; end case; end record; procedure Create_Socket (Socket : out Socket_Type; Family : Family_Type := Family_Inet; Mode : Mode_Type := Socket_Stream); -- Create an endpoint for communication. Raise Socket_Error on error. procedure Accept_Socket (Server : Socket_Type; Socket : out Socket_Type; Address : out Sock_Addr_Type); -- Extract the first connection request on the queue of pending -- connections, creates a new connected socket with mostly the -- same properties as Server, and allocates a new socket. The -- returned Address is filled in with the address of the -- connection. Raise Socket_Error on error. procedure Bind_Socket (Socket : Socket_Type; Address : Sock_Addr_Type); -- Once a socket is created, assign a local address to it. Raise -- Socket_Error on error. procedure Close_Socket (Socket : Socket_Type); -- Close a socket and more specifically a non-connected socket. procedure Connect_Socket (Socket : Socket_Type; Server : in out Sock_Addr_Type); -- Make a connection to another socket which has the address of -- Server. Raise Socket_Error on error. procedure Control_Socket (Socket : Socket_Type; Request : in out Request_Type); -- Obtain or set parameter values that control the socket. This -- control differs from the socket options in that they are not -- specific to sockets but are avaiable for any device. function Get_Peer_Name (Socket : Socket_Type) return Sock_Addr_Type; -- Return the peer or remote socket address of a socket. Raise -- Socket_Error on error. function Get_Socket_Name (Socket : Socket_Type) return Sock_Addr_Type; -- Return the local or current socket address of a socket. Raise -- Socket_Error on error. function Get_Socket_Option (Socket : Socket_Type; Level : Level_Type := Socket_Level; Name : Option_Name) return Option_Type; -- Get the options associated with a socket. Raise Socket_Error on -- error. procedure Listen_Socket (Socket : Socket_Type; Length : Positive := 15); -- To accept connections, a socket is first created with -- Create_Socket, a willingness to accept incoming connections and -- a queue Length for incoming connections are specified. Raise -- Socket_Error on error. procedure Receive_Socket (Socket : Socket_Type; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Receive message from Socket. Last is the index value such that -- Item (Last) is the last character assigned. Note that Last is -- set to Item'First - 1 when the socket has been closed by -- peer. This is not an error and no exception is raised. Raise -- Socket_Error on error. procedure Receive_Socket (Socket : Socket_Type; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset; From : out Sock_Addr_Type); -- Receive message from Socket. If Socket is not -- connection-oriented, the source address From of the message is -- filled in. Last is the index value such that Item (Last) is the -- last character assigned. Raise Socket_Error on error. function Resolve_Exception (Occurrence : Ada.Exceptions.Exception_Occurrence) return Error_Type; -- When Socket_Error or Host_Error are raised, the exception -- message contains the error code between brackets and a string -- describing the error code. Resolve_Error extracts the error -- code from an exception message and translate it into an -- enumeration value. procedure Send_Socket (Socket : Socket_Type; Item : Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Transmit a message to another socket. Note that Last is set to -- Item'First when socket has been closed by peer. This is not an -- error and no exception is raised. Raise Socket_Error on error; procedure Send_Socket (Socket : Socket_Type; Item : Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset; To : Sock_Addr_Type); -- Transmit a message to another socket. The address is given by -- To. Raise Socket_Error on error; procedure Set_Socket_Option (Socket : Socket_Type; Level : Level_Type := Socket_Level; Option : Option_Type); -- Manipulate socket options. Raise Socket_Error on error. procedure Shutdown_Socket (Socket : Socket_Type; How : Shutmode_Type := Shut_Read_Write); -- Shutdown a connected socket. If How is Shut_Read, further -- receives will be disallowed. If How is Shut_Write, further -- sends will be disallowed. If how is Shut_Read_Write, further -- sends and receives will be disallowed. type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class; -- Same interface as Ada.Streams.Stream_IO function Stream (Socket : Socket_Type) return Stream_Access; -- Associate a stream with a stream-based socket that is already -- connected. function Stream (Socket : Socket_Type; Send_To : Sock_Addr_Type) return Stream_Access; -- Associate a stream with a datagram-based socket that is already -- bound. Send_To is the socket address to which messages are -- being sent. function Get_Address (Stream : Stream_Access) return Sock_Addr_Type; -- Return the socket address from which the last message was -- received. type Socket_Set_Type is private; -- This type allows to manipulate sets of sockets. It allows to -- wait for events on multiple endpoints at one time. This is an -- access type on a system dependent structure. To avoid memory -- leaks it is highly recommended to clean the access value with -- procedure Empty. procedure Clear (Item : in out Socket_Set_Type; Socket : Socket_Type); -- Remove Socket from Item procedure Set (Item : in out Socket_Set_Type; Socket : Socket_Type); -- Insert Socket into Item procedure Empty (Item : in out Socket_Set_Type); -- Remove all Sockets from Item and deallocate internal data function Is_Empty (Item : Socket_Set_Type) return Boolean; -- Return True if Item is empty function Is_Set (Item : Socket_Set_Type; Socket : Socket_Type) return Boolean; -- Return True if Socket is present in Item -- C select() waits for a number of file descriptors to change -- status. Usually, three independent sets of descriptors are -- watched (read, write and exception). A timeout gives an upper -- bound on the amount of time elapsed before select returns. -- This function blocks until an event occurs. On some platforms, -- C select can block the full process. -- -- Check_Selector provides the very same behaviour. The only -- difference is that it does not watch for exception events. Note -- that on some platforms it is kept process blocking in purpose. -- The timeout parameter allows the user to have the behaviour he -- wants. Abort_Selector allows to abort safely a Check_Selector -- that is blocked forever. A special file descriptor is opened by -- Create_Selector and included in each call to -- Check_Selector. Abort_Selector causes an event to occur on this -- descriptor in order to unblock Check_Selector. The user must -- call Close_Selector to discard this special file. A reason to -- abort a select operation is typically to add a socket in one of -- the socket sets when the timeout is set to forever. Forever : constant Duration; type Selector_Type is limited private; type Selector_Access is access all Selector_Type; procedure Create_Selector (Selector : out Selector_Type); -- Create a new selector procedure Close_Selector (Selector : in out Selector_Type); -- Close Selector and all internal descriptors associated type Selector_Status is (Completed, Expired, Aborted); procedure Check_Selector (Selector : in out Selector_Type; R_Socket_Set : in out Socket_Set_Type; W_Socket_Set : in out Socket_Set_Type; Status : out Selector_Status; Timeout : Duration := Forever); -- Return when one Socket in R_Socket_Set has some data to be read -- or if one Socket in W_Socket_Set is ready to receive some -- data. In these cases Status is set to Completed and sockets -- that are ready are set in R_Socket_Set or W_Socket_Set. Status -- is set to Expired if no socket was ready after a Timeout -- expiration. Status is set to Aborted if an abort signal as been -- received while checking socket status. As this procedure -- returns when Timeout occurs, it is a design choice to keep this -- procedure process blocking. Note that a Timeout of 0.0 returns -- immediatly. procedure Abort_Selector (Selector : Selector_Type); -- Send an abort signal to the selector. private type Socket_Type is new Integer; No_Socket : constant Socket_Type := -1; Forever : constant Duration := Duration'Last; type Selector_Type is limited record R_Sig_Socket : Socket_Type; W_Sig_Socket : Socket_Type; In_Progress : Boolean := False; end record; -- The two signalling sockets are used to abort a select -- operation. type Socket_Set_Record; type Socket_Set_Type is access all Socket_Set_Record; subtype Inet_Addr_Comp_Type is Natural range 0 .. 255; -- Octet for Internet address type Inet_Addr_VN_Type is array (Natural range <>) of Inet_Addr_Comp_Type; subtype Inet_Addr_V4_Type is Inet_Addr_VN_Type (1 .. 4); subtype Inet_Addr_V6_Type is Inet_Addr_VN_Type (1 .. 16); type Inet_Addr_Type (Family : Family_Type := Family_Inet) is record case Family is when Family_Inet => Sin_V4 : Inet_Addr_V4_Type := (others => 0); when Family_Inet6 => Sin_V6 : Inet_Addr_V6_Type := (others => 0); end case; end record; Any_Port : constant Port_Type := 0; No_Port : constant Port_Type := 0; Any_Inet_Addr : constant Inet_Addr_Type := (Family_Inet, (others => 0)); No_Inet_Addr : constant Inet_Addr_Type := (Family_Inet, (others => 0)); No_Sock_Addr : constant Sock_Addr_Type := (Family_Inet, No_Inet_Addr, 0); Max_Host_Name_Length : constant := 64; -- The constant MAXHOSTNAMELEN is usually set to 64 subtype Host_Name_Index is Natural range 1 .. Max_Host_Name_Length; type Host_Name_Type (Length : Host_Name_Index := Max_Host_Name_Length) is record Name : String (1 .. Length); end record; -- We need fixed strings to avoid access types in host entry type type Host_Name_Array is array (Natural range <>) of Host_Name_Type; type Inet_Addr_Array is array (Natural range <>) of Inet_Addr_Type; type Host_Entry_Type (Aliases_Length, Addresses_Length : Natural) is record Official : Host_Name_Type; Aliases : Host_Name_Array (1 .. Aliases_Length); Addresses : Inet_Addr_Array (1 .. Addresses_Length); end record; end GNAT.Sockets;
37.664422
79
0.619417
31bd79febf6b786aafdc10d1c87ebc6c52dd88c4
144
ads
Ada
memsim-master/src/random_enum.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/random_enum.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/random_enum.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
-- Select an enumeration value uniformly at random. generic type Enum_Type is (<>); function Random_Enum(value : Natural) return Enum_Type;
24
55
0.756944
5789fec5e009118c569163307e7977befba2414f
3,196
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5003g.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5003g.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5003g.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CD5003G.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 A 'WITH' CLAUSE NAMING 'SYSTEM' NEED NOT BE GIVEN -- FOR A GENERIC PROCEDURE BODY CONTAINING AN ADDRESS CLAUSE -- AS LONG AS A 'WITH' CLAUSE IS GIVEN FOR THE UNIT CONTAINING -- THE GENERIC PROCEDURE SPECIFICATION. -- HISTORY: -- VCL 09/09/87 CREATED ORIGINAL TEST. -- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'. WITH SYSTEM; PACKAGE CD5003G_PACK2 IS GENERIC PROCEDURE CD5003G_PROC2; END CD5003G_PACK2; WITH SPPRT13; WITH REPORT; USE REPORT; PRAGMA ELABORATE (SPPRT13); PRAGMA ELABORATE (REPORT); PACKAGE BODY CD5003G_PACK2 IS PROCEDURE CD5003G_PROC2 IS TYPE FIXD IS DELTA 0.1 RANGE -10.0 .. 10.0; TEST_VAR : FIXD := 0.0; FOR TEST_VAR USE AT SPPRT13.VARIABLE_ADDRESS; USE SYSTEM; FUNCTION IDENT_FIXD (P : FIXD) RETURN FIXD IS BEGIN IF EQUAL (3, 3) THEN RETURN P; ELSE RETURN 0.0; END IF; END IDENT_FIXD; BEGIN TEST ("CD5003G", "A 'WITH' CLAUSE NAMING 'SYSTEM' NEED NOT " & "BE GIVEN FOR A GENERIC PROCEDURE BODY " & "CONTAINING AN ADDRESS CLAUSE AS LONG AS " & "A 'WITH' CLAUSE IS GIVEN FOR THE UNIT " & "CONTAINING THE GENERIC PROCEDURE " & "SPECIFICATION"); TEST_VAR := IDENT_FIXD (3.3); IF TEST_VAR /= 3.3 THEN FAILED ("INCORRECT VALUE FOR TEST_VAR"); END IF; IF TEST_VAR'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN FAILED ("INCORRECT ADDRESS FOR TEST_VAR"); END IF; RESULT; END CD5003G_PROC2; END CD5003G_PACK2; WITH CD5003G_PACK2; USE CD5003G_PACK2; PROCEDURE CD5003G IS PROCEDURE PROC3 IS NEW CD5003G_PROC2; BEGIN PROC3; END CD5003G;
35.511111
79
0.613892
58bb74ca48d4b348c5c896525e9ab15756b38325
4,324
ads
Ada
src/portscan-buildcycle.ads
jfouquart/synth
cf9f4e394723266805799807ca9dd422e333cb2e
[ "0BSD" ]
263
2015-12-30T22:24:04.000Z
2022-03-25T03:13:52.000Z
src/portscan-buildcycle.ads
jfouquart/synth
cf9f4e394723266805799807ca9dd422e333cb2e
[ "0BSD" ]
196
2016-01-08T19:50:19.000Z
2022-03-25T22:02:10.000Z
src/portscan-buildcycle.ads
jfouquart/synth
cf9f4e394723266805799807ca9dd422e333cb2e
[ "0BSD" ]
34
2016-03-08T02:43:35.000Z
2022-03-25T21:51:03.000Z
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with JohnnyText; with Display; with Unix; package PortScan.Buildcycle is cycle_log_error : exception; cycle_cmd_error : exception; procedure initialize (test_mode : Boolean; jail_env : JT.Text); -- Expose for overall build log function log_duration (start, stop : CAL.Time) return String; function elapsed_now return String; function elapsed_build (id : builders) return String; -- Was private, but expose so Pilot can use it. function generic_system_command (command : String) return JT.Text; -- Simple time calculation function get_packages_per_hour (packages_done : Natural; from_when : CAL.Time) return Natural; -- records the current length of the build log. procedure set_log_lines (id : builders); -- Returns "True" when afterphase string matches a legal phase name. -- Allowed phases: extract/patch/configure/build/stage/install/deinstall function valid_test_phase (afterphase : String) return Boolean; private type execution_limit is range 1 .. 720; type trackrec is record seq_id : port_id; head_time : CAL.Time; tail_time : CAL.Time; log_handle : aliased TIO.File_Type; dynlink : string_crate.Vector; loglines : Natural := 0; end record; type dim_trackers is array (builders) of trackrec; trackers : dim_trackers; uname_mrv : JT.Text; customenv : JT.Text; slave_env : JT.Text; testing : Boolean; lock_localbase : Boolean; uselog : constant Boolean := True; discerr : constant String := "Discovery error"; selftest : constant String := "SELFTEST"; function initialize_log (id : builders) return Boolean; procedure finalize_log (id : builders); function get_environment (id : builders) return String; function get_root (id : builders) return String; function get_options_configuration (id : builders) return String; procedure set_uname_mrv; function split_collection (line : JT.Text; title : String) return String; function get_port_variables (id : builders) return JT.Text; procedure dump_port_variables (id : builders; content : JT.Text); function log_name (sid : port_id) return String; function dump_file (filename : String) return String; function dump_make_conf (id : builders; conf_file : String) return String; function log_section (title : String; header : Boolean) return String; procedure log_phase_end (id : builders); procedure log_phase_begin (phase : String; id : builders); function generic_execute (id : builders; command : String; dogbite : out Boolean; time_limit : execution_limit) return Boolean; procedure stack_linked_libraries (id : builders; base, filename : String); procedure log_linked_libraries (id : builders); procedure mark_file_system (id : builders; action : String); procedure interact_with_builder (id : builders); procedure obtain_custom_environment; function elapsed_HH_MM_SS (start, stop : CAL.Time) return String; function environment_override (enable_tty : Boolean := False) return String; function format_loglines (numlines : Natural) return String; function timeout_multiplier_x10 return Positive; function port_specification (catport : String) return String; function detect_leftovers_and_MIA (id : builders; action : String; description : String) return Boolean; -- This is designed to be used twice; once with lock=True and again -- with lock=False. It's a diagnostic mechanism and effectively sets -- /usr/local inside a slave as read-only procedure set_localbase_protection (id : builders; lock : Boolean); -- Compile status of builder for the curses display (guts) function builder_status_core (id : builders; shutdown : Boolean := False; idle : Boolean := False; phasestr : String) return Display.builder_rec; end PortScan.Buildcycle;
40.037037
80
0.672294
3d36b96ff9628792f0efb66bf55c36bad28e682c
209
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/ref_type.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/ref_type.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/ref_type.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do compile } package body ref_type is procedure Print (X : T) is begin null; end; end ref_type;
20.9
63
0.349282
29d76563545d2569ef2186f5561036e8bfad38f4
410
adb
Ada
ejercicios3/intercambiar.adb
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
ejercicios3/intercambiar.adb
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
ejercicios3/intercambiar.adb
iyan22/AprendeAda
18bd2a224e5bda30c43d9ceabe0c05278e069ebf
[ "MIT" ]
null
null
null
with datos; use datos; procedure intercambiar (Pos_Min, posicion : in Integer; L : in out Lista_Enteros) is -- Incio: X Y -- Final: Y X Auxiliar: Integer; begin Auxiliar := L.Numeros(posicion); -- Auxiliar es Posicion X L.Numeros(posicion) := L.Numeros(Pos_Min); -- En Posicion X ponemos Posicion Y L.Numeros(Pos_Min) := Auxiliar; -- En Posicion Y ponemos Auxilar que es Posicion X end intercambiar;
27.333333
84
0.719512
59fc8e753dd7ad4fbfba21828b2fd8c79907493b
5,575
ads
Ada
tools-src/gnu/gcc/gcc/ada/s-tasuti.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-tasuti.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-tasuti.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . U T I L I T I E S -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-1998 Florida State University -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. It is -- -- now maintained by Ada Core Technologies Inc. in cooperation with Florida -- -- State University (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- This package provides RTS Internal Declarations. -- These declarations are not part of the GNARLI with Unchecked_Conversion; package System.Tasking.Utilities is function ATCB_To_Address is new Unchecked_Conversion (Task_ID, System.Address); --------------------------------- -- Task_Stage Related routines -- --------------------------------- procedure Make_Independent; -- Move the current task to the outermost level (level 1) of the master -- master hierarchy of the environment task. This is one level further -- out than normal tasks defined in library-level packages (level 2). -- The environment task will wait for level 2 tasks to terminate normally, -- then it will abort all the level 1 tasks. See Finalize_Global_Tasks -- procedure for more information. -- -- This is a dangerous operation, and should only be used on nested tasks -- or tasks that depend on any objects that might be finalized earlier than -- the termination of the environment task. It is for internal use by -- GNARL, to prevent such internal server tasks from preventing a -- partition from terminating. Independent_Task_Count : Natural := 0; -- Number of independent task. This counter is incremented each time -- Make_Independent is called. Note that if a server task terminates, -- this counter will not be decremented. Since Make_Independent locks -- the environment task (because every independent task depends on it), -- this counter is protected by the environment task's lock. ------------------------------------ -- Task Abortion related routines -- ------------------------------------ procedure Cancel_Queued_Entry_Calls (T : Task_ID); -- Cancel any entry calls queued on target task. -- Do not call this while holding any locks. procedure Exit_One_ATC_Level (Self_ID : Task_ID); pragma Inline (Exit_One_ATC_Level); -- Call only with abort deferred and holding lock of Self_ID. -- This is a bit of common code for all entry calls. -- The effect is to exit one level of ATC nesting. procedure Abort_One_Task (Self_ID : Task_ID; T : Task_ID); -- Similar to Locked_Abort_To_Level (Self_ID, T, 0), but: -- (1) caller should be holding no locks -- (2) may be called for tasks that have not yet been activated -- (3) always aborts whole task procedure Abort_Tasks (Tasks : Task_List); -- Abort_Tasks is called to initiate abortion, however, the actual -- abortion is done by abortee by means of Abort_Handler procedure Make_Passive (Self_ID : Task_ID; Task_Completed : Boolean); -- Update counts to indicate current task is either terminated -- or accepting on a terminate alternative. Call holding no locks. end System.Tasking.Utilities;
53.095238
79
0.543318
2e21770a7d90cd889e01b7468da98a9f8374cc3c
2,862
adb
Ada
examples/stm32f3/nested_generics/button_irq.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
examples/stm32f3/gpio/button_irq.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
examples/stm32f3/gpio/button_irq.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with STM32GD.EXTI; use STM32GD.EXTI; package body Button_Irq is ------------- -- Handler -- ------------- protected body Handler is ----------------- -- IRQ_Handler -- ----------------- procedure IRQ_Handler is begin if External_Interrupt_Pending (EXTI_Line_13) then Set_True (Button_Pressed); Clear_External_Interrupt (EXTI_Line_13); end if; end IRQ_Handler; end Handler; end Button_Irq;
49.344828
78
0.508036
2e80f8dbe694531a443380431f0af5255a0f77a9
960
ads
Ada
task_implementations.ads
oysteinlondal/Inverted-Pendulum
0a59e8d7bea31a255c1ca27c97430a688421f787
[ "MIT" ]
null
null
null
task_implementations.ads
oysteinlondal/Inverted-Pendulum
0a59e8d7bea31a255c1ca27c97430a688421f787
[ "MIT" ]
2
2020-11-16T12:35:26.000Z
2020-11-16T12:35:31.000Z
task_implementations.ads
oysteinlondal/Inverted-Pendulum
0a59e8d7bea31a255c1ca27c97430a688421f787
[ "MIT" ]
null
null
null
with Ada.Float_Text_IO; with Ada.Text_IO; with Angle; use Angle; with Ada.Real_Time; use Ada.Real_Time; with Task_Scheduling; use Task_Scheduling; with Setup; use Setup; with Shared_Data; with Meassure_Velocity; with Meassure_Acceleration; with Acceptance_Test_Lib; use Acceptance_Test_Lib; with Exception_Declarations; use Exception_Declarations; with Type_Lib; use Type_Lib; with PID_Functionality; use PID_Functionality; package Task_Implementations is task Gyroscope_Reader with Priority => 20; task Accelerometer_Reader with Priority => 19; task Cascade_Controller with Priority => 18; task Actuator_Writer with Priority => 17; private -- Protected types to store and retrive shared data Accelerometer_SR : Shared_Data.Sensor_Reading; Gyroscope_SR : Shared_Data.Sensor_Reading; Motor_AW : Shared_Data.Actuator_Write; Recoveryblock_Count_Limit : Constant Integer := 4; end Task_Implementations;
30
56
0.78125
1a28897342ae9efa5f5ba14d97ef3e977efb7996
11,504
adb
Ada
source/amf/dd/amf-internals-dg_polylines.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/dd/amf-internals-dg_polylines.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/dd/amf-internals-dg_polylines.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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.DC; with AMF.DG.Clip_Paths; with AMF.DG.Groups; with AMF.DG.Markers; with AMF.DG.Styles.Collections; with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.DD_Attributes; with AMF.Visitors.DG_Iterators; with AMF.Visitors.DG_Visitors; package body AMF.Internals.DG_Polylines is --------------- -- Get_Point -- --------------- overriding function Get_Point (Self : not null access constant DG_Polyline_Proxy) return AMF.DC.Sequence_Of_DC_Point is begin return AMF.Internals.Tables.DD_Attributes.Internal_Get_Point (Self.Element); end Get_Point; ---------------------- -- Get_Start_Marker -- ---------------------- overriding function Get_Start_Marker (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Markers.DG_Marker_Access is begin return AMF.DG.Markers.DG_Marker_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.DD_Attributes.Internal_Get_Start_Marker (Self.Element))); end Get_Start_Marker; ---------------------- -- Set_Start_Marker -- ---------------------- overriding procedure Set_Start_Marker (Self : not null access DG_Polyline_Proxy; To : AMF.DG.Markers.DG_Marker_Access) is begin AMF.Internals.Tables.DD_Attributes.Internal_Set_Start_Marker (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Start_Marker; -------------------- -- Get_End_Marker -- -------------------- overriding function Get_End_Marker (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Markers.DG_Marker_Access is begin return AMF.DG.Markers.DG_Marker_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.DD_Attributes.Internal_Get_End_Marker (Self.Element))); end Get_End_Marker; -------------------- -- Set_End_Marker -- -------------------- overriding procedure Set_End_Marker (Self : not null access DG_Polyline_Proxy; To : AMF.DG.Markers.DG_Marker_Access) is begin AMF.Internals.Tables.DD_Attributes.Internal_Set_End_Marker (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_End_Marker; -------------------- -- Get_Mid_Marker -- -------------------- overriding function Get_Mid_Marker (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Markers.DG_Marker_Access is begin return AMF.DG.Markers.DG_Marker_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.DD_Attributes.Internal_Get_Mid_Marker (Self.Element))); end Get_Mid_Marker; -------------------- -- Set_Mid_Marker -- -------------------- overriding procedure Set_Mid_Marker (Self : not null access DG_Polyline_Proxy; To : AMF.DG.Markers.DG_Marker_Access) is begin AMF.Internals.Tables.DD_Attributes.Internal_Set_Mid_Marker (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Mid_Marker; --------------- -- Get_Group -- --------------- overriding function Get_Group (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Groups.DG_Group_Access is begin return AMF.DG.Groups.DG_Group_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.DD_Attributes.Internal_Get_Group (Self.Element))); end Get_Group; --------------- -- Set_Group -- --------------- overriding procedure Set_Group (Self : not null access DG_Polyline_Proxy; To : AMF.DG.Groups.DG_Group_Access) is begin AMF.Internals.Tables.DD_Attributes.Internal_Set_Group (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Group; --------------------- -- Get_Local_Style -- --------------------- overriding function Get_Local_Style (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is begin return AMF.DG.Styles.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.DD_Attributes.Internal_Get_Local_Style (Self.Element))); end Get_Local_Style; ---------------------- -- Get_Shared_Style -- ---------------------- overriding function Get_Shared_Style (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Styles.Collections.Ordered_Set_Of_DG_Style is begin return AMF.DG.Styles.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.DD_Attributes.Internal_Get_Shared_Style (Self.Element))); end Get_Shared_Style; ------------------- -- Get_Transform -- ------------------- overriding function Get_Transform (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Sequence_Of_DG_Transform is begin return AMF.Internals.Tables.DD_Attributes.Internal_Get_Transform (Self.Element); end Get_Transform; ------------------- -- Get_Clip_Path -- ------------------- overriding function Get_Clip_Path (Self : not null access constant DG_Polyline_Proxy) return AMF.DG.Clip_Paths.DG_Clip_Path_Access is begin return AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.DD_Attributes.Internal_Get_Clip_Path (Self.Element))); end Get_Clip_Path; ------------------- -- Set_Clip_Path -- ------------------- overriding procedure Set_Clip_Path (Self : not null access DG_Polyline_Proxy; To : AMF.DG.Clip_Paths.DG_Clip_Path_Access) is begin AMF.Internals.Tables.DD_Attributes.Internal_Set_Clip_Path (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Clip_Path; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant DG_Polyline_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.DG_Visitors.DG_Visitor'Class then AMF.Visitors.DG_Visitors.DG_Visitor'Class (Visitor).Enter_Polyline (AMF.DG.Polylines.DG_Polyline_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant DG_Polyline_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.DG_Visitors.DG_Visitor'Class then AMF.Visitors.DG_Visitors.DG_Visitor'Class (Visitor).Leave_Polyline (AMF.DG.Polylines.DG_Polyline_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant DG_Polyline_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.DG_Iterators.DG_Iterator'Class then AMF.Visitors.DG_Iterators.DG_Iterator'Class (Iterator).Visit_Polyline (Visitor, AMF.DG.Polylines.DG_Polyline_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.DG_Polylines;
36.520635
78
0.555111
22c263a2a6644a462fa5fc564faa24bbf1e22d31
580
ada
Ada
Task/Digital-root/Ada/digital-root-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Digital-root/Ada/digital-root-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Digital-root/Ada/digital-root-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
package Generic_Root is type Number is range 0 .. 2**63-1; type Number_Array is array(Positive range <>) of Number; type Base_Type is range 2 .. 16; -- any reasonable base to write down numb generic with function "&"(X, Y: Number) return Number; -- instantiate with "+" for additive digital roots -- instantiate with "*" for multiplicative digital roots procedure Compute_Root(N: Number; Root, Persistence: out Number; Base: Base_Type := 10); -- computes Root and Persistence of N; end Generic_Root;
36.25
77
0.644828
c74bfe5ed9e07e76f2ac3b2af5fc005b299e5325
3,612
adb
Ada
source/amf/utp/amf-internals-factories-utp_factories-convert_duration_to_string.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/utp/amf-internals-factories-utp_factories-convert_duration_to_string.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/utp/amf-internals-factories-utp_factories-convert_duration_to_string.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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$ ------------------------------------------------------------------------------ separate (AMF.Internals.Factories.Utp_Factories) function Convert_Duration_To_String (Value : League.Holders.Holder) return League.Strings.Universal_String is begin raise Program_Error; return League.Strings.Empty_Universal_String; end Convert_Duration_To_String;
69.461538
78
0.422204
2fb21f00b43d3bb78828861e85ac38cef3028060
1,321
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_implementation_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_implementation_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_implementation_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with xcb.xcb_request_error_t; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_implementation_error_t is -- Item -- subtype Item is xcb.xcb_request_error_t.Item; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_implementation_error_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_implementation_error_t.Item, Element_Array => xcb.xcb_implementation_error_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_implementation_error_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_implementation_error_t.Pointer, Element_Array => xcb.xcb_implementation_error_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_implementation_error_t;
27.520833
79
0.679788
1ac837b66d2c46ef254193739e19a90567c84609
1,198
ads
Ada
src/latin_utils/latin_utils.ads
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
204
2015-06-12T21:22:55.000Z
2022-03-28T10:50:16.000Z
src/latin_utils/latin_utils.ads
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
98
2015-06-15T22:17:04.000Z
2021-10-01T18:17:55.000Z
src/latin_utils/latin_utils.ads
finleyexp/whitakers-words
9c07fe7e96ac15dc3262b82a37f6ea69947f458b
[ "FTL" ]
50
2015-06-16T22:42:24.000Z
2021-12-29T16:53:08.000Z
-- WORDS, a Latin dictionary, by Colonel William Whitaker (USAF, Retired) -- -- Copyright William A. Whitaker (1936–2010) -- -- This is a free program, which means it is proper to copy it and pass -- it on to your friends. Consider it a developmental item for which -- there is no charge. However, just for form, it is Copyrighted -- (c). Permission is hereby freely given for any and all use of program -- and data. You can sell it as your own, but at least tell me. -- -- This version is distributed without obligation, but the developer -- would appreciate comments and suggestions. -- -- All parts of the WORDS system, source code and data files, are made freely -- available to anyone who wishes to use them, for whatever purpose. --------------------------------------------------------------------------- -- Main package of library-like utilities used all over the WORDS. --------------------------------------------------------------------------- package Latin_Utils is --------------------------------------------------------------------------- pragma Pure (Latin_Utils); --------------------------------------------------------------------------- end Latin_Utils;
39.933333
78
0.545075
c792422312041d9df316d6d97548926bbfaff166
876
adb
Ada
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/attr_ref_and_charlit/foo.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/attr_ref_and_charlit/foo.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/attr_ref_and_charlit/foo.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright 2015-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/>. procedure Foo is procedure P (S : String) is begin null; -- BREAK end P; begin P ((2 => 'a', 3 => 'b')); P ((4 => 'c', 5 => 'd')); end Foo;
35.04
73
0.684932
2ed691db1dc5c72dafad1f7da6312f12c88453f1
359
ads
Ada
src/hide.ads
persan/midnightsun-ctf-LoveLacedLetter
456f782b5cd2205425aa23705ca8e8598e3104fc
[ "BSD-2-Clause" ]
null
null
null
src/hide.ads
persan/midnightsun-ctf-LoveLacedLetter
456f782b5cd2205425aa23705ca8e8598e3104fc
[ "BSD-2-Clause" ]
null
null
null
src/hide.ads
persan/midnightsun-ctf-LoveLacedLetter
456f782b5cd2205425aa23705ca8e8598e3104fc
[ "BSD-2-Clause" ]
null
null
null
with Posix; package Hide is procedure Put_Line (Text : String) renames Posix.Put_Line; type Integer_8 is range -2 ** 7 .. 2 ** 7 - 1; for Integer_8'Size use 8; type Integer_16 is range -2 ** 15 .. 2 ** 15 - 1; for Integer_16'Size use 16; type Integer_32 is range -2 ** 31 .. 2 ** 31 - 1; for Integer_32'Size use 32; end Hide;
18.894737
61
0.615599
c75aecc19417d7f169177ff17138a034fd53f176
52,452
ads
Ada
arch/ARM/Nordic/svd/nrf51/nrf51_svd-radio.ads
WickedShell/Ada_Drivers_Library
391866ad37a599347df40a4dbb3bf0721bedabea
[ "BSD-3-Clause" ]
6
2017-05-28T04:37:11.000Z
2020-11-22T11:26:19.000Z
arch/ARM/Nordic/svd/nrf51/nrf51_svd-radio.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2019-08-30T10:57:40.000Z
2020-02-11T21:34:14.000Z
arch/ARM/Nordic/svd/nrf51/nrf51_svd-radio.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2017-02-07T19:42:02.000Z
2020-11-22T11:26:20.000Z
-- Copyright (c) 2013, Nordic Semiconductor ASA -- 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 Nordic Semiconductor ASA nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- This spec has been automatically generated from nrf51.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NRF51_SVD.RADIO is pragma Preelaborate; --------------- -- Registers -- --------------- -- Shortcut between READY event and START task. type SHORTS_READY_START_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_READY_START_Field use (Disabled => 0, Enabled => 1); -- Shortcut between END event and DISABLE task. type SHORTS_END_DISABLE_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_END_DISABLE_Field use (Disabled => 0, Enabled => 1); -- Shortcut between DISABLED event and TXEN task. type SHORTS_DISABLED_TXEN_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_DISABLED_TXEN_Field use (Disabled => 0, Enabled => 1); -- Shortcut between DISABLED event and RXEN task. type SHORTS_DISABLED_RXEN_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_DISABLED_RXEN_Field use (Disabled => 0, Enabled => 1); -- Shortcut between ADDRESS event and RSSISTART task. type SHORTS_ADDRESS_RSSISTART_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_ADDRESS_RSSISTART_Field use (Disabled => 0, Enabled => 1); -- Shortcut between END event and START task. type SHORTS_END_START_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_END_START_Field use (Disabled => 0, Enabled => 1); -- Shortcut between ADDRESS event and BCSTART task. type SHORTS_ADDRESS_BCSTART_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_ADDRESS_BCSTART_Field use (Disabled => 0, Enabled => 1); -- Shortcut between DISABLED event and RSSISTOP task. type SHORTS_DISABLED_RSSISTOP_Field is ( -- Shortcut disabled. Disabled, -- Shortcut enabled. Enabled) with Size => 1; for SHORTS_DISABLED_RSSISTOP_Field use (Disabled => 0, Enabled => 1); -- Shortcuts for the radio. type SHORTS_Register is record -- Shortcut between READY event and START task. READY_START : SHORTS_READY_START_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between END event and DISABLE task. END_DISABLE : SHORTS_END_DISABLE_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between DISABLED event and TXEN task. DISABLED_TXEN : SHORTS_DISABLED_TXEN_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between DISABLED event and RXEN task. DISABLED_RXEN : SHORTS_DISABLED_RXEN_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between ADDRESS event and RSSISTART task. ADDRESS_RSSISTART : SHORTS_ADDRESS_RSSISTART_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between END event and START task. END_START : SHORTS_END_START_Field := NRF51_SVD.RADIO.Disabled; -- Shortcut between ADDRESS event and BCSTART task. ADDRESS_BCSTART : SHORTS_ADDRESS_BCSTART_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Shortcut between DISABLED event and RSSISTOP task. DISABLED_RSSISTOP : SHORTS_DISABLED_RSSISTOP_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_9_31 : HAL.UInt23 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SHORTS_Register use record READY_START at 0 range 0 .. 0; END_DISABLE at 0 range 1 .. 1; DISABLED_TXEN at 0 range 2 .. 2; DISABLED_RXEN at 0 range 3 .. 3; ADDRESS_RSSISTART at 0 range 4 .. 4; END_START at 0 range 5 .. 5; ADDRESS_BCSTART at 0 range 6 .. 6; Reserved_7_7 at 0 range 7 .. 7; DISABLED_RSSISTOP at 0 range 8 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; -- Enable interrupt on READY event. type INTENSET_READY_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_READY_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on READY event. type INTENSET_READY_Field_1 is ( -- Reset value for the field Intenset_Ready_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_READY_Field_1 use (Intenset_Ready_Field_Reset => 0, Set => 1); -- Enable interrupt on ADDRESS event. type INTENSET_ADDRESS_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_ADDRESS_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on ADDRESS event. type INTENSET_ADDRESS_Field_1 is ( -- Reset value for the field Intenset_Address_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_ADDRESS_Field_1 use (Intenset_Address_Field_Reset => 0, Set => 1); -- Enable interrupt on PAYLOAD event. type INTENSET_PAYLOAD_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_PAYLOAD_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on PAYLOAD event. type INTENSET_PAYLOAD_Field_1 is ( -- Reset value for the field Intenset_Payload_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_PAYLOAD_Field_1 use (Intenset_Payload_Field_Reset => 0, Set => 1); -- Enable interrupt on END event. type INTENSET_END_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_END_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on END event. type INTENSET_END_Field_1 is ( -- Reset value for the field Intenset_End_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_END_Field_1 use (Intenset_End_Field_Reset => 0, Set => 1); -- Enable interrupt on DISABLED event. type INTENSET_DISABLED_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_DISABLED_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on DISABLED event. type INTENSET_DISABLED_Field_1 is ( -- Reset value for the field Intenset_Disabled_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_DISABLED_Field_1 use (Intenset_Disabled_Field_Reset => 0, Set => 1); -- Enable interrupt on DEVMATCH event. type INTENSET_DEVMATCH_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_DEVMATCH_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on DEVMATCH event. type INTENSET_DEVMATCH_Field_1 is ( -- Reset value for the field Intenset_Devmatch_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_DEVMATCH_Field_1 use (Intenset_Devmatch_Field_Reset => 0, Set => 1); -- Enable interrupt on DEVMISS event. type INTENSET_DEVMISS_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_DEVMISS_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on DEVMISS event. type INTENSET_DEVMISS_Field_1 is ( -- Reset value for the field Intenset_Devmiss_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_DEVMISS_Field_1 use (Intenset_Devmiss_Field_Reset => 0, Set => 1); -- Enable interrupt on RSSIEND event. type INTENSET_RSSIEND_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_RSSIEND_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on RSSIEND event. type INTENSET_RSSIEND_Field_1 is ( -- Reset value for the field Intenset_Rssiend_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_RSSIEND_Field_1 use (Intenset_Rssiend_Field_Reset => 0, Set => 1); -- Enable interrupt on BCMATCH event. type INTENSET_BCMATCH_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENSET_BCMATCH_Field use (Disabled => 0, Enabled => 1); -- Enable interrupt on BCMATCH event. type INTENSET_BCMATCH_Field_1 is ( -- Reset value for the field Intenset_Bcmatch_Field_Reset, -- Enable interrupt on write. Set) with Size => 1; for INTENSET_BCMATCH_Field_1 use (Intenset_Bcmatch_Field_Reset => 0, Set => 1); -- Interrupt enable set register. type INTENSET_Register is record -- Enable interrupt on READY event. READY : INTENSET_READY_Field_1 := Intenset_Ready_Field_Reset; -- Enable interrupt on ADDRESS event. ADDRESS : INTENSET_ADDRESS_Field_1 := Intenset_Address_Field_Reset; -- Enable interrupt on PAYLOAD event. PAYLOAD : INTENSET_PAYLOAD_Field_1 := Intenset_Payload_Field_Reset; -- Enable interrupt on END event. END_k : INTENSET_END_Field_1 := Intenset_End_Field_Reset; -- Enable interrupt on DISABLED event. DISABLED : INTENSET_DISABLED_Field_1 := Intenset_Disabled_Field_Reset; -- Enable interrupt on DEVMATCH event. DEVMATCH : INTENSET_DEVMATCH_Field_1 := Intenset_Devmatch_Field_Reset; -- Enable interrupt on DEVMISS event. DEVMISS : INTENSET_DEVMISS_Field_1 := Intenset_Devmiss_Field_Reset; -- Enable interrupt on RSSIEND event. RSSIEND : INTENSET_RSSIEND_Field_1 := Intenset_Rssiend_Field_Reset; -- unspecified Reserved_8_9 : HAL.UInt2 := 16#0#; -- Enable interrupt on BCMATCH event. BCMATCH : INTENSET_BCMATCH_Field_1 := Intenset_Bcmatch_Field_Reset; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for INTENSET_Register use record READY at 0 range 0 .. 0; ADDRESS at 0 range 1 .. 1; PAYLOAD at 0 range 2 .. 2; END_k at 0 range 3 .. 3; DISABLED at 0 range 4 .. 4; DEVMATCH at 0 range 5 .. 5; DEVMISS at 0 range 6 .. 6; RSSIEND at 0 range 7 .. 7; Reserved_8_9 at 0 range 8 .. 9; BCMATCH at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; -- Disable interrupt on READY event. type INTENCLR_READY_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_READY_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on READY event. type INTENCLR_READY_Field_1 is ( -- Reset value for the field Intenclr_Ready_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_READY_Field_1 use (Intenclr_Ready_Field_Reset => 0, Clear => 1); -- Disable interrupt on ADDRESS event. type INTENCLR_ADDRESS_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_ADDRESS_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on ADDRESS event. type INTENCLR_ADDRESS_Field_1 is ( -- Reset value for the field Intenclr_Address_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_ADDRESS_Field_1 use (Intenclr_Address_Field_Reset => 0, Clear => 1); -- Disable interrupt on PAYLOAD event. type INTENCLR_PAYLOAD_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_PAYLOAD_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on PAYLOAD event. type INTENCLR_PAYLOAD_Field_1 is ( -- Reset value for the field Intenclr_Payload_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_PAYLOAD_Field_1 use (Intenclr_Payload_Field_Reset => 0, Clear => 1); -- Disable interrupt on END event. type INTENCLR_END_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_END_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on END event. type INTENCLR_END_Field_1 is ( -- Reset value for the field Intenclr_End_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_END_Field_1 use (Intenclr_End_Field_Reset => 0, Clear => 1); -- Disable interrupt on DISABLED event. type INTENCLR_DISABLED_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_DISABLED_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on DISABLED event. type INTENCLR_DISABLED_Field_1 is ( -- Reset value for the field Intenclr_Disabled_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_DISABLED_Field_1 use (Intenclr_Disabled_Field_Reset => 0, Clear => 1); -- Disable interrupt on DEVMATCH event. type INTENCLR_DEVMATCH_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_DEVMATCH_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on DEVMATCH event. type INTENCLR_DEVMATCH_Field_1 is ( -- Reset value for the field Intenclr_Devmatch_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_DEVMATCH_Field_1 use (Intenclr_Devmatch_Field_Reset => 0, Clear => 1); -- Disable interrupt on DEVMISS event. type INTENCLR_DEVMISS_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_DEVMISS_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on DEVMISS event. type INTENCLR_DEVMISS_Field_1 is ( -- Reset value for the field Intenclr_Devmiss_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_DEVMISS_Field_1 use (Intenclr_Devmiss_Field_Reset => 0, Clear => 1); -- Disable interrupt on RSSIEND event. type INTENCLR_RSSIEND_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_RSSIEND_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on RSSIEND event. type INTENCLR_RSSIEND_Field_1 is ( -- Reset value for the field Intenclr_Rssiend_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_RSSIEND_Field_1 use (Intenclr_Rssiend_Field_Reset => 0, Clear => 1); -- Disable interrupt on BCMATCH event. type INTENCLR_BCMATCH_Field is ( -- Interrupt disabled. Disabled, -- Interrupt enabled. Enabled) with Size => 1; for INTENCLR_BCMATCH_Field use (Disabled => 0, Enabled => 1); -- Disable interrupt on BCMATCH event. type INTENCLR_BCMATCH_Field_1 is ( -- Reset value for the field Intenclr_Bcmatch_Field_Reset, -- Disable interrupt on write. Clear) with Size => 1; for INTENCLR_BCMATCH_Field_1 use (Intenclr_Bcmatch_Field_Reset => 0, Clear => 1); -- Interrupt enable clear register. type INTENCLR_Register is record -- Disable interrupt on READY event. READY : INTENCLR_READY_Field_1 := Intenclr_Ready_Field_Reset; -- Disable interrupt on ADDRESS event. ADDRESS : INTENCLR_ADDRESS_Field_1 := Intenclr_Address_Field_Reset; -- Disable interrupt on PAYLOAD event. PAYLOAD : INTENCLR_PAYLOAD_Field_1 := Intenclr_Payload_Field_Reset; -- Disable interrupt on END event. END_k : INTENCLR_END_Field_1 := Intenclr_End_Field_Reset; -- Disable interrupt on DISABLED event. DISABLED : INTENCLR_DISABLED_Field_1 := Intenclr_Disabled_Field_Reset; -- Disable interrupt on DEVMATCH event. DEVMATCH : INTENCLR_DEVMATCH_Field_1 := Intenclr_Devmatch_Field_Reset; -- Disable interrupt on DEVMISS event. DEVMISS : INTENCLR_DEVMISS_Field_1 := Intenclr_Devmiss_Field_Reset; -- Disable interrupt on RSSIEND event. RSSIEND : INTENCLR_RSSIEND_Field_1 := Intenclr_Rssiend_Field_Reset; -- unspecified Reserved_8_9 : HAL.UInt2 := 16#0#; -- Disable interrupt on BCMATCH event. BCMATCH : INTENCLR_BCMATCH_Field_1 := Intenclr_Bcmatch_Field_Reset; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for INTENCLR_Register use record READY at 0 range 0 .. 0; ADDRESS at 0 range 1 .. 1; PAYLOAD at 0 range 2 .. 2; END_k at 0 range 3 .. 3; DISABLED at 0 range 4 .. 4; DEVMATCH at 0 range 5 .. 5; DEVMISS at 0 range 6 .. 6; RSSIEND at 0 range 7 .. 7; Reserved_8_9 at 0 range 8 .. 9; BCMATCH at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; -- CRC status of received packet. type CRCSTATUS_CRCSTATUS_Field is ( -- Packet received with CRC error. Crcerror, -- Packet received with CRC ok. Crcok) with Size => 1; for CRCSTATUS_CRCSTATUS_Field use (Crcerror => 0, Crcok => 1); -- CRC status of received packet. type CRCSTATUS_Register is record -- Read-only. CRC status of received packet. CRCSTATUS : CRCSTATUS_CRCSTATUS_Field; -- unspecified Reserved_1_31 : HAL.UInt31; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CRCSTATUS_Register use record CRCSTATUS at 0 range 0 .. 0; Reserved_1_31 at 0 range 1 .. 31; end record; subtype RXMATCH_RXMATCH_Field is HAL.UInt3; -- Received address. type RXMATCH_Register is record -- Read-only. Logical address in which previous packet was received. RXMATCH : RXMATCH_RXMATCH_Field; -- unspecified Reserved_3_31 : HAL.UInt29; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RXMATCH_Register use record RXMATCH at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype RXCRC_RXCRC_Field is HAL.UInt24; -- Received CRC. type RXCRC_Register is record -- Read-only. CRC field of previously received packet. RXCRC : RXCRC_RXCRC_Field; -- unspecified Reserved_24_31 : HAL.UInt8; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RXCRC_Register use record RXCRC at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype DAI_DAI_Field is HAL.UInt3; -- Device address match index. type DAI_Register is record -- Read-only. Index (n) of device address (see DAB[n] and DAP[n]) that -- obtained an address match. DAI : DAI_DAI_Field; -- unspecified Reserved_3_31 : HAL.UInt29; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DAI_Register use record DAI at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype FREQUENCY_FREQUENCY_Field is HAL.UInt7; -- Frequency. type FREQUENCY_Register is record -- Radio channel frequency offset in MHz: RF Frequency = 2400 + -- FREQUENCY (MHz). Decision point: TXEN or RXEN task. FREQUENCY : FREQUENCY_FREQUENCY_Field := 16#2#; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FREQUENCY_Register use record FREQUENCY at 0 range 0 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; -- Radio output power. Decision point: TXEN task. type TXPOWER_TXPOWER_Field is ( -- 0dBm. TXPOWER_TXPOWER_Field_0DBm, -- +4dBm. Pos4DBm, -- -30dBm. Neg30DBm, -- -20dBm. Neg20DBm, -- -16dBm. Neg16DBm, -- -12dBm. Neg12DBm, -- -8dBm. Neg8DBm, -- -4dBm. Neg4DBm) with Size => 8; for TXPOWER_TXPOWER_Field use (TXPOWER_TXPOWER_Field_0DBm => 0, Pos4DBm => 4, Neg30DBm => 216, Neg20DBm => 236, Neg16DBm => 240, Neg12DBm => 244, Neg8DBm => 248, Neg4DBm => 252); -- Output power. type TXPOWER_Register is record -- Radio output power. Decision point: TXEN task. TXPOWER : TXPOWER_TXPOWER_Field := NRF51_SVD.RADIO.TXPOWER_TXPOWER_Field_0DBm; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TXPOWER_Register use record TXPOWER at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- Radio data rate and modulation setting. Decision point: TXEN or RXEN -- task. type MODE_MODE_Field is ( -- 1Mbit/s Nordic propietary radio mode. Nrf_1Mbit, -- 2Mbit/s Nordic propietary radio mode. Nrf_2Mbit, -- 250kbit/s Nordic propietary radio mode. Nrf_250Kbit, -- 1Mbit/s Bluetooth Low Energy Ble_1Mbit) with Size => 2; for MODE_MODE_Field use (Nrf_1Mbit => 0, Nrf_2Mbit => 1, Nrf_250Kbit => 2, Ble_1Mbit => 3); -- Data rate and modulation. type MODE_Register is record -- Radio data rate and modulation setting. Decision point: TXEN or RXEN -- task. MODE : MODE_MODE_Field := NRF51_SVD.RADIO.Nrf_1Mbit; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for MODE_Register use record MODE at 0 range 0 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype PCNF0_LFLEN_Field is HAL.UInt4; subtype PCNF0_S1LEN_Field is HAL.UInt4; -- Packet configuration 0. type PCNF0_Register is record -- Length of length field in number of bits. Decision point: START task. LFLEN : PCNF0_LFLEN_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- Length of S0 field in number of bytes. Decision point: START task. S0LEN : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- Length of S1 field in number of bits. Decision point: START task. S1LEN : PCNF0_S1LEN_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCNF0_Register use record LFLEN at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; S0LEN at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; S1LEN at 0 range 16 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; subtype PCNF1_MAXLEN_Field is HAL.UInt8; subtype PCNF1_STATLEN_Field is HAL.UInt8; subtype PCNF1_BALEN_Field is HAL.UInt3; -- On air endianness of packet length field. Decision point: START task. type PCNF1_ENDIAN_Field is ( -- Least significant bit on air first Little, -- Most significant bit on air first Big) with Size => 1; for PCNF1_ENDIAN_Field use (Little => 0, Big => 1); -- Packet whitening enable. type PCNF1_WHITEEN_Field is ( -- Whitening disabled. Disabled, -- Whitening enabled. Enabled) with Size => 1; for PCNF1_WHITEEN_Field use (Disabled => 0, Enabled => 1); -- Packet configuration 1. type PCNF1_Register is record -- Maximum length of packet payload in number of bytes. MAXLEN : PCNF1_MAXLEN_Field := 16#0#; -- Static length in number of bytes. Decision point: START task. STATLEN : PCNF1_STATLEN_Field := 16#0#; -- Base address length in number of bytes. Decision point: START task. BALEN : PCNF1_BALEN_Field := 16#0#; -- unspecified Reserved_19_23 : HAL.UInt5 := 16#0#; -- On air endianness of packet length field. Decision point: START task. ENDIAN : PCNF1_ENDIAN_Field := NRF51_SVD.RADIO.Little; -- Packet whitening enable. WHITEEN : PCNF1_WHITEEN_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_26_31 : HAL.UInt6 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCNF1_Register use record MAXLEN at 0 range 0 .. 7; STATLEN at 0 range 8 .. 15; BALEN at 0 range 16 .. 18; Reserved_19_23 at 0 range 19 .. 23; ENDIAN at 0 range 24 .. 24; WHITEEN at 0 range 25 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; -- PREFIX0_AP array element subtype PREFIX0_AP_Element is HAL.UInt8; -- PREFIX0_AP array type PREFIX0_AP_Field_Array is array (0 .. 3) of PREFIX0_AP_Element with Component_Size => 8, Size => 32; -- Prefixes bytes for logical addresses 0 to 3. type PREFIX0_Register (As_Array : Boolean := False) is record case As_Array is when False => -- AP as a value Val : HAL.UInt32; when True => -- AP as an array Arr : PREFIX0_AP_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for PREFIX0_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- PREFIX1_AP array element subtype PREFIX1_AP_Element is HAL.UInt8; -- PREFIX1_AP array type PREFIX1_AP_Field_Array is array (4 .. 7) of PREFIX1_AP_Element with Component_Size => 8, Size => 32; -- Prefixes bytes for logical addresses 4 to 7. type PREFIX1_Register (As_Array : Boolean := False) is record case As_Array is when False => -- AP as a value Val : HAL.UInt32; when True => -- AP as an array Arr : PREFIX1_AP_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for PREFIX1_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype TXADDRESS_TXADDRESS_Field is HAL.UInt3; -- Transmit address select. type TXADDRESS_Register is record -- Logical address to be used when transmitting a packet. Decision -- point: START task. TXADDRESS : TXADDRESS_TXADDRESS_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TXADDRESS_Register use record TXADDRESS at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; -- Enable reception on logical address 0. Decision point: START task. type RXADDRESSES_ADDR0_Field is ( -- Reception disabled. Disabled, -- Reception enabled. Enabled) with Size => 1; for RXADDRESSES_ADDR0_Field use (Disabled => 0, Enabled => 1); -- RXADDRESSES_ADDR array type RXADDRESSES_ADDR_Field_Array is array (0 .. 7) of RXADDRESSES_ADDR0_Field with Component_Size => 1, Size => 8; -- Type definition for RXADDRESSES_ADDR type RXADDRESSES_ADDR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- ADDR as a value Val : HAL.UInt8; when True => -- ADDR as an array Arr : RXADDRESSES_ADDR_Field_Array; end case; end record with Unchecked_Union, Size => 8; for RXADDRESSES_ADDR_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- Receive address select. type RXADDRESSES_Register is record -- Enable reception on logical address 0. Decision point: START task. ADDR : RXADDRESSES_ADDR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RXADDRESSES_Register use record ADDR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- CRC length. Decision point: START task. type CRCCNF_LEN_Field is ( -- CRC calculation disabled. Disabled, -- One byte long CRC. One, -- Two bytes long CRC. Two, -- Three bytes long CRC. Three) with Size => 2; for CRCCNF_LEN_Field use (Disabled => 0, One => 1, Two => 2, Three => 3); -- Leave packet address field out of the CRC calculation. Decision point: -- START task. type CRCCNF_SKIPADDR_Field is ( -- Include packet address in CRC calculation. Include, -- Packet address is skipped in CRC calculation. The CRC calculation -- will start at the first byte after the address. Skip) with Size => 1; for CRCCNF_SKIPADDR_Field use (Include => 0, Skip => 1); -- CRC configuration. type CRCCNF_Register is record -- CRC length. Decision point: START task. LEN : CRCCNF_LEN_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_2_7 : HAL.UInt6 := 16#0#; -- Leave packet address field out of the CRC calculation. Decision -- point: START task. SKIPADDR : CRCCNF_SKIPADDR_Field := NRF51_SVD.RADIO.Include; -- unspecified Reserved_9_31 : HAL.UInt23 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CRCCNF_Register use record LEN at 0 range 0 .. 1; Reserved_2_7 at 0 range 2 .. 7; SKIPADDR at 0 range 8 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; subtype CRCPOLY_CRCPOLY_Field is HAL.UInt24; -- CRC polynomial. type CRCPOLY_Register is record -- CRC polynomial. Decision point: START task. CRCPOLY : CRCPOLY_CRCPOLY_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CRCPOLY_Register use record CRCPOLY at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype CRCINIT_CRCINIT_Field is HAL.UInt24; -- CRC initial value. type CRCINIT_Register is record -- Initial value for CRC calculation. Decision point: START task. CRCINIT : CRCINIT_CRCINIT_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CRCINIT_Register use record CRCINIT at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- Constant carrier. Decision point: TXEN task. type TEST_CONSTCARRIER_Field is ( -- Constant carrier disabled. Disabled, -- Constant carrier enabled. Enabled) with Size => 1; for TEST_CONSTCARRIER_Field use (Disabled => 0, Enabled => 1); -- PLL lock. Decision point: TXEN or RXEN task. type TEST_PLLLOCK_Field is ( -- PLL lock disabled. Disabled, -- PLL lock enabled. Enabled) with Size => 1; for TEST_PLLLOCK_Field use (Disabled => 0, Enabled => 1); -- Test features enable register. type TEST_Register is record -- Constant carrier. Decision point: TXEN task. CONSTCARRIER : TEST_CONSTCARRIER_Field := NRF51_SVD.RADIO.Disabled; -- PLL lock. Decision point: TXEN or RXEN task. PLLLOCK : TEST_PLLLOCK_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TEST_Register use record CONSTCARRIER at 0 range 0 .. 0; PLLLOCK at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype TIFS_TIFS_Field is HAL.UInt8; -- Inter Frame Spacing in microseconds. type TIFS_Register is record -- Inter frame spacing in microseconds. Decision point: START rask TIFS : TIFS_TIFS_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TIFS_Register use record TIFS at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype RSSISAMPLE_RSSISAMPLE_Field is HAL.UInt7; -- RSSI sample. type RSSISAMPLE_Register is record -- Read-only. RSSI sample result. The result is read as a positive value -- so that ReceivedSignalStrength = -RSSISAMPLE dBm RSSISAMPLE : RSSISAMPLE_RSSISAMPLE_Field; -- unspecified Reserved_7_31 : HAL.UInt25; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RSSISAMPLE_Register use record RSSISAMPLE at 0 range 0 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; -- Current radio state. type STATE_STATE_Field is ( -- Radio is in the Disabled state. Disabled, -- Radio is in the Rx Ramp Up state. Rxru, -- Radio is in the Rx Idle state. Rxidle, -- Radio is in the Rx state. Rx, -- Radio is in the Rx Disable state. Rxdisable, -- Radio is in the Tx Ramp Up state. Txru, -- Radio is in the Tx Idle state. Txidle, -- Radio is in the Tx state. Tx, -- Radio is in the Tx Disable state. Txdisable) with Size => 4; for STATE_STATE_Field use (Disabled => 0, Rxru => 1, Rxidle => 2, Rx => 3, Rxdisable => 4, Txru => 9, Txidle => 10, Tx => 11, Txdisable => 12); -- Current radio state. type STATE_Register is record -- Read-only. Current radio state. STATE : STATE_STATE_Field; -- unspecified Reserved_4_31 : HAL.UInt28; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for STATE_Register use record STATE at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype DATAWHITEIV_DATAWHITEIV_Field is HAL.UInt7; -- Data whitening initial value. type DATAWHITEIV_Register is record -- Data whitening initial value. Bit 0 corresponds to Position 0 of the -- LSFR, Bit 1 to position 5... Decision point: TXEN or RXEN task. DATAWHITEIV : DATAWHITEIV_DATAWHITEIV_Field := 16#40#; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DATAWHITEIV_Register use record DATAWHITEIV at 0 range 0 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; -- Device address base segment. -- Device address base segment. type DAB_Registers is array (0 .. 7) of HAL.UInt32 with Volatile; subtype DAP_DAP_Field is HAL.UInt16; -- Device address prefix. type DAP_Register is record -- Device address prefix. DAP : DAP_DAP_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DAP_Register use record DAP at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- Device address prefix. type DAP_Registers is array (0 .. 7) of DAP_Register with Volatile; -- Enable or disable device address matching using device address 0. type DACNF_ENA0_Field is ( -- Disabled. Disabled, -- Enabled. Enabled) with Size => 1; for DACNF_ENA0_Field use (Disabled => 0, Enabled => 1); -- DACNF_ENA array type DACNF_ENA_Field_Array is array (0 .. 7) of DACNF_ENA0_Field with Component_Size => 1, Size => 8; -- Type definition for DACNF_ENA type DACNF_ENA_Field (As_Array : Boolean := False) is record case As_Array is when False => -- ENA as a value Val : HAL.UInt8; when True => -- ENA as an array Arr : DACNF_ENA_Field_Array; end case; end record with Unchecked_Union, Size => 8; for DACNF_ENA_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- DACNF_TXADD array type DACNF_TXADD_Field_Array is array (0 .. 7) of Boolean with Component_Size => 1, Size => 8; -- Type definition for DACNF_TXADD type DACNF_TXADD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TXADD as a value Val : HAL.UInt8; when True => -- TXADD as an array Arr : DACNF_TXADD_Field_Array; end case; end record with Unchecked_Union, Size => 8; for DACNF_TXADD_Field use record Val at 0 range 0 .. 7; Arr at 0 range 0 .. 7; end record; -- Device address match configuration. type DACNF_Register is record -- Enable or disable device address matching using device address 0. ENA : DACNF_ENA_Field := (As_Array => False, Val => 16#0#); -- TxAdd for device address 0. TXADD : DACNF_TXADD_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DACNF_Register use record ENA at 0 range 0 .. 7; TXADD at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype OVERRIDE4_OVERRIDE4_Field is HAL.UInt28; -- Enable or disable override of default trim values. type OVERRIDE4_ENABLE_Field is ( -- Override trim values disabled. Disabled, -- Override trim values enabled. Enabled) with Size => 1; for OVERRIDE4_ENABLE_Field use (Disabled => 0, Enabled => 1); -- Trim value override register 4. type OVERRIDE4_Register is record -- Trim value override 4. OVERRIDE4 : OVERRIDE4_OVERRIDE4_Field := 16#0#; -- unspecified Reserved_28_30 : HAL.UInt3 := 16#0#; -- Enable or disable override of default trim values. ENABLE : OVERRIDE4_ENABLE_Field := NRF51_SVD.RADIO.Disabled; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OVERRIDE4_Register use record OVERRIDE4 at 0 range 0 .. 27; Reserved_28_30 at 0 range 28 .. 30; ENABLE at 0 range 31 .. 31; end record; -- Peripheral power control. type POWER_POWER_Field is ( -- Module power disabled. Disabled, -- Module power enabled. Enabled) with Size => 1; for POWER_POWER_Field use (Disabled => 0, Enabled => 1); -- Peripheral power control. type POWER_Register is record -- Peripheral power control. POWER : POWER_POWER_Field := NRF51_SVD.RADIO.Disabled; -- unspecified Reserved_1_31 : HAL.UInt31 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for POWER_Register use record POWER at 0 range 0 .. 0; Reserved_1_31 at 0 range 1 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- The radio. type RADIO_Peripheral is record -- Enable radio in TX mode. TASKS_TXEN : aliased HAL.UInt32; -- Enable radio in RX mode. TASKS_RXEN : aliased HAL.UInt32; -- Start radio. TASKS_START : aliased HAL.UInt32; -- Stop radio. TASKS_STOP : aliased HAL.UInt32; -- Disable radio. TASKS_DISABLE : aliased HAL.UInt32; -- Start the RSSI and take one sample of the receive signal strength. TASKS_RSSISTART : aliased HAL.UInt32; -- Stop the RSSI measurement. TASKS_RSSISTOP : aliased HAL.UInt32; -- Start the bit counter. TASKS_BCSTART : aliased HAL.UInt32; -- Stop the bit counter. TASKS_BCSTOP : aliased HAL.UInt32; -- Ready event. EVENTS_READY : aliased HAL.UInt32; -- Address event. EVENTS_ADDRESS : aliased HAL.UInt32; -- Payload event. EVENTS_PAYLOAD : aliased HAL.UInt32; -- End event. EVENTS_END : aliased HAL.UInt32; -- Disable event. EVENTS_DISABLED : aliased HAL.UInt32; -- A device address match occurred on the last received packet. EVENTS_DEVMATCH : aliased HAL.UInt32; -- No device address match occurred on the last received packet. EVENTS_DEVMISS : aliased HAL.UInt32; -- Sampling of the receive signal strength complete. A new RSSI sample -- is ready for readout at the RSSISAMPLE register. EVENTS_RSSIEND : aliased HAL.UInt32; -- Bit counter reached bit count value specified in BCC register. EVENTS_BCMATCH : aliased HAL.UInt32; -- Shortcuts for the radio. SHORTS : aliased SHORTS_Register; -- Interrupt enable set register. INTENSET : aliased INTENSET_Register; -- Interrupt enable clear register. INTENCLR : aliased INTENCLR_Register; -- CRC status of received packet. CRCSTATUS : aliased CRCSTATUS_Register; -- Received address. RXMATCH : aliased RXMATCH_Register; -- Received CRC. RXCRC : aliased RXCRC_Register; -- Device address match index. DAI : aliased DAI_Register; -- Packet pointer. Decision point: START task. PACKETPTR : aliased HAL.UInt32; -- Frequency. FREQUENCY : aliased FREQUENCY_Register; -- Output power. TXPOWER : aliased TXPOWER_Register; -- Data rate and modulation. MODE : aliased MODE_Register; -- Packet configuration 0. PCNF0 : aliased PCNF0_Register; -- Packet configuration 1. PCNF1 : aliased PCNF1_Register; -- Radio base address 0. Decision point: START task. BASE0 : aliased HAL.UInt32; -- Radio base address 1. Decision point: START task. BASE1 : aliased HAL.UInt32; -- Prefixes bytes for logical addresses 0 to 3. PREFIX0 : aliased PREFIX0_Register; -- Prefixes bytes for logical addresses 4 to 7. PREFIX1 : aliased PREFIX1_Register; -- Transmit address select. TXADDRESS : aliased TXADDRESS_Register; -- Receive address select. RXADDRESSES : aliased RXADDRESSES_Register; -- CRC configuration. CRCCNF : aliased CRCCNF_Register; -- CRC polynomial. CRCPOLY : aliased CRCPOLY_Register; -- CRC initial value. CRCINIT : aliased CRCINIT_Register; -- Test features enable register. TEST : aliased TEST_Register; -- Inter Frame Spacing in microseconds. TIFS : aliased TIFS_Register; -- RSSI sample. RSSISAMPLE : aliased RSSISAMPLE_Register; -- Current radio state. STATE : aliased STATE_Register; -- Data whitening initial value. DATAWHITEIV : aliased DATAWHITEIV_Register; -- Bit counter compare. BCC : aliased HAL.UInt32; -- Device address base segment. DAB : aliased DAB_Registers; -- Device address prefix. DAP : aliased DAP_Registers; -- Device address match configuration. DACNF : aliased DACNF_Register; -- Trim value override register 0. OVERRIDE0 : aliased HAL.UInt32; -- Trim value override register 1. OVERRIDE1 : aliased HAL.UInt32; -- Trim value override register 2. OVERRIDE2 : aliased HAL.UInt32; -- Trim value override register 3. OVERRIDE3 : aliased HAL.UInt32; -- Trim value override register 4. OVERRIDE4 : aliased OVERRIDE4_Register; -- Peripheral power control. POWER : aliased POWER_Register; end record with Volatile; for RADIO_Peripheral use record TASKS_TXEN at 16#0# range 0 .. 31; TASKS_RXEN at 16#4# range 0 .. 31; TASKS_START at 16#8# range 0 .. 31; TASKS_STOP at 16#C# range 0 .. 31; TASKS_DISABLE at 16#10# range 0 .. 31; TASKS_RSSISTART at 16#14# range 0 .. 31; TASKS_RSSISTOP at 16#18# range 0 .. 31; TASKS_BCSTART at 16#1C# range 0 .. 31; TASKS_BCSTOP at 16#20# range 0 .. 31; EVENTS_READY at 16#100# range 0 .. 31; EVENTS_ADDRESS at 16#104# range 0 .. 31; EVENTS_PAYLOAD at 16#108# range 0 .. 31; EVENTS_END at 16#10C# range 0 .. 31; EVENTS_DISABLED at 16#110# range 0 .. 31; EVENTS_DEVMATCH at 16#114# range 0 .. 31; EVENTS_DEVMISS at 16#118# range 0 .. 31; EVENTS_RSSIEND at 16#11C# range 0 .. 31; EVENTS_BCMATCH at 16#128# range 0 .. 31; SHORTS at 16#200# range 0 .. 31; INTENSET at 16#304# range 0 .. 31; INTENCLR at 16#308# range 0 .. 31; CRCSTATUS at 16#400# range 0 .. 31; RXMATCH at 16#408# range 0 .. 31; RXCRC at 16#40C# range 0 .. 31; DAI at 16#410# range 0 .. 31; PACKETPTR at 16#504# range 0 .. 31; FREQUENCY at 16#508# range 0 .. 31; TXPOWER at 16#50C# range 0 .. 31; MODE at 16#510# range 0 .. 31; PCNF0 at 16#514# range 0 .. 31; PCNF1 at 16#518# range 0 .. 31; BASE0 at 16#51C# range 0 .. 31; BASE1 at 16#520# range 0 .. 31; PREFIX0 at 16#524# range 0 .. 31; PREFIX1 at 16#528# range 0 .. 31; TXADDRESS at 16#52C# range 0 .. 31; RXADDRESSES at 16#530# range 0 .. 31; CRCCNF at 16#534# range 0 .. 31; CRCPOLY at 16#538# range 0 .. 31; CRCINIT at 16#53C# range 0 .. 31; TEST at 16#540# range 0 .. 31; TIFS at 16#544# range 0 .. 31; RSSISAMPLE at 16#548# range 0 .. 31; STATE at 16#550# range 0 .. 31; DATAWHITEIV at 16#554# range 0 .. 31; BCC at 16#560# range 0 .. 31; DAB at 16#600# range 0 .. 255; DAP at 16#620# range 0 .. 255; DACNF at 16#640# range 0 .. 31; OVERRIDE0 at 16#724# range 0 .. 31; OVERRIDE1 at 16#728# range 0 .. 31; OVERRIDE2 at 16#72C# range 0 .. 31; OVERRIDE3 at 16#730# range 0 .. 31; OVERRIDE4 at 16#734# range 0 .. 31; POWER at 16#FFC# range 0 .. 31; end record; -- The radio. RADIO_Periph : aliased RADIO_Peripheral with Import, Address => System'To_Address (16#40001000#); end NRF51_SVD.RADIO;
31.055062
82
0.606002
5927e5f95c20edcf20796f34111063e71f77b808
12,816
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/i-cstrea.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/i-cstrea.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/i-cstrea.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S . C _ S T R E A M S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-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. -- -- -- ------------------------------------------------------------------------------ -- This package is a thin binding to selected functions in the C -- library that provide a complete interface for handling C streams. with System.CRTL; package Interfaces.C_Streams is pragma Preelaborate; subtype chars is System.CRTL.chars; subtype FILEs is System.CRTL.FILEs; subtype int is System.CRTL.int; subtype long is System.CRTL.long; subtype size_t is System.CRTL.size_t; subtype ssize_t is System.CRTL.ssize_t; subtype int64 is System.CRTL.int64; subtype voids is System.Address; NULL_Stream : constant FILEs; -- Value returned (NULL in C) to indicate an fdopen/fopen/tmpfile error ---------------------------------- -- Constants Defined in stdio.h -- ---------------------------------- EOF : constant int; -- Used by a number of routines to indicate error or end of file IOFBF : constant int; IOLBF : constant int; IONBF : constant int; -- Used to indicate buffering mode for setvbuf call L_tmpnam : constant int; -- Maximum length of file name that can be returned by tmpnam SEEK_CUR : constant int; SEEK_END : constant int; SEEK_SET : constant int; -- Used to indicate origin for fseek call function stdin return FILEs; function stdout return FILEs; function stderr return FILEs; -- Streams associated with standard files -------------------------- -- Standard C functions -- -------------------------- -- The functions selected below are ones that are available in -- UNIX (but not necessarily in ANSI C). These are very thin -- interfaces which copy exactly the C headers. For more -- documentation on these functions, see the Microsoft C "Run-Time -- Library Reference" (Microsoft Press, 1990, ISBN 1-55615-225-6), -- which includes useful information on system compatibility. procedure clearerr (stream : FILEs) renames System.CRTL.clearerr; function fclose (stream : FILEs) return int renames System.CRTL.fclose; function fdopen (handle : int; mode : chars) return FILEs renames System.CRTL.fdopen; function feof (stream : FILEs) return int; function ferror (stream : FILEs) return int; function fflush (stream : FILEs) return int renames System.CRTL.fflush; function fgetc (stream : FILEs) return int renames System.CRTL.fgetc; function fgets (strng : chars; n : int; stream : FILEs) return chars renames System.CRTL.fgets; function fileno (stream : FILEs) return int; function fopen (filename : chars; mode : chars; encoding : System.CRTL.Filename_Encoding := System.CRTL.UTF8) return FILEs renames System.CRTL.fopen; -- Note: to maintain target independence, use text_translation_required, -- a boolean variable defined in sysdep.c to deal with the target -- dependent text translation requirement. If this variable is set, -- then b/t should be appended to the standard mode argument to set -- the text translation mode off or on as required. function fputc (C : int; stream : FILEs) return int renames System.CRTL.fputc; function fputwc (C : int; stream : FILEs) return int renames System.CRTL.fputwc; function fputs (Strng : chars; Stream : FILEs) return int renames System.CRTL.fputs; function fread (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t; function fread (buffer : voids; index : size_t; size : size_t; count : size_t; stream : FILEs) return size_t; -- Same as normal fread, but has a parameter 'index' that indicates -- the starting index for the read within 'buffer' (which must be the -- address of the beginning of a whole array object with an assumed -- zero base). This is needed for systems that do not support taking -- the address of an element within an array. function freopen (filename : chars; mode : chars; stream : FILEs; encoding : System.CRTL.Filename_Encoding := System.CRTL.UTF8) return FILEs renames System.CRTL.freopen; function fseek (stream : FILEs; offset : long; origin : int) return int renames System.CRTL.fseek; function fseek64 (stream : FILEs; offset : int64; origin : int) return int renames System.CRTL.fseek64; function ftell (stream : FILEs) return long renames System.CRTL.ftell; function ftell64 (stream : FILEs) return int64 renames System.CRTL.ftell64; function fwrite (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t; function isatty (handle : int) return int renames System.CRTL.isatty; procedure mktemp (template : chars) renames System.CRTL.mktemp; -- The return value (which is just a pointer to template) is discarded procedure rewind (stream : FILEs) renames System.CRTL.rewind; function setvbuf (stream : FILEs; buffer : chars; mode : int; size : size_t) return int; procedure tmpnam (str : chars) renames System.CRTL.tmpnam; -- The parameter must be a pointer to a string buffer of at least L_tmpnam -- bytes (the call with a null parameter is not supported). The returned -- value, which is just a copy of the input argument, is discarded. function tmpfile return FILEs renames System.CRTL.tmpfile; function ungetc (c : int; stream : FILEs) return int renames System.CRTL.ungetc; function unlink (filename : chars) return int renames System.CRTL.unlink; --------------------- -- Extra functions -- --------------------- -- These functions supply slightly thicker bindings than those above. -- They are derived from functions in the C Run-Time Library, but may -- do a bit more work than just directly calling one of the Library -- functions. function file_exists (name : chars) return int; -- Tests if given name corresponds to an existing file function is_regular_file (handle : int) return int; -- Tests if given handle is for a regular file (result 1) or for a -- non-regular file (pipe or device, result 0). --------------------------------- -- Control of Text/Binary Mode -- --------------------------------- procedure set_binary_mode (handle : int); procedure set_text_mode (handle : int); -- If text_translation_required is true, then these two functions may -- be used to dynamically switch a file from binary to text mode or vice -- versa. These functions have no effect if text_translation_required is -- false (e.g. in normal unix mode). Use fileno to get a stream handle. type Content_Encoding is (None, Default_Text, Text, U8text, Wtext, U16text); for Content_Encoding use (0, 1, 2, 3, 4, 5); pragma Convention (C, Content_Encoding); -- Content_Encoding describes the text encoding for file content: -- None : No text encoding, this file is treated as a binary file -- Default_Text : A text file but not from Text_Translation form string -- In this mode we are eventually using the system-wide -- translation if activated. -- Text : Text encoding activated -- Wtext : Unicode mode -- U16text : Unicode UTF-16 encoding -- U8text : Unicode UTF-8 encoding -- -- This encoding is system dependent and only used on Windows systems. -- -- Note that modifications to Content_Encoding must be synchronized with -- sysdep.c:__gnat_set_mode. subtype Text_Content_Encoding is Content_Encoding range Default_Text .. U16text; subtype Non_Default_Text_Content_Encoding is Content_Encoding range Text .. U16text; procedure set_mode (handle : int; Mode : Content_Encoding); -- As above but can set the handle to any mode. On Windows this can be used -- to have proper 16-bit wide-string output on the console for example. ---------------------------- -- Full Path Name support -- ---------------------------- procedure full_name (nam : chars; buffer : chars); -- Given a NUL terminated string representing a file name, returns in -- buffer a NUL terminated string representing the full path name for -- the file name. On systems where it is relevant the drive is also part -- of the full path name. It is the responsibility of the caller to -- pass an actual parameter for buffer that is big enough for any full -- path name. Use max_path_len given below as the size of buffer. max_path_len : constant Integer; -- Maximum length of an allowable full path name on the system,including a -- terminating NUL character. Declared as a constant to allow references -- from other preelaborated GNAT library packages. private -- The following functions are specialized in the body depending on the -- operating system. pragma Inline (fread); pragma Inline (fwrite); pragma Inline (setvbuf); pragma Import (C, file_exists, "__gnat_file_exists"); pragma Import (C, is_regular_file, "__gnat_is_regular_file_fd"); pragma Import (C, set_binary_mode, "__gnat_set_binary_mode"); pragma Import (C, set_text_mode, "__gnat_set_text_mode"); pragma Import (C, set_mode, "__gnat_set_mode"); pragma Import (C, max_path_len, "__gnat_max_path_len"); pragma Import (C, full_name, "__gnat_full_name"); -- The following may be implemented as macros, and so are supported -- via an interface function in the a-cstrea.c file. pragma Import (C, feof, "__gnat_feof"); pragma Import (C, ferror, "__gnat_ferror"); pragma Import (C, fileno, "__gnat_fileno"); pragma Import (C, EOF, "__gnat_constant_eof"); pragma Import (C, IOFBF, "__gnat_constant_iofbf"); pragma Import (C, IOLBF, "__gnat_constant_iolbf"); pragma Import (C, IONBF, "__gnat_constant_ionbf"); pragma Import (C, SEEK_CUR, "__gnat_constant_seek_cur"); pragma Import (C, SEEK_END, "__gnat_constant_seek_end"); pragma Import (C, SEEK_SET, "__gnat_constant_seek_set"); pragma Import (C, L_tmpnam, "__gnat_constant_l_tmpnam"); pragma Import (C, stderr, "__gnat_constant_stderr"); pragma Import (C, stdin, "__gnat_constant_stdin"); pragma Import (C, stdout, "__gnat_constant_stdout"); NULL_Stream : constant FILEs := System.Null_Address; end Interfaces.C_Streams;
40.556962
79
0.616651
3ddc1fdb86b3eeceae35649111d61e5959fd2b08
2,815
ads
Ada
src/babel-files-buffers.ads
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
1
2015-08-05T14:26:52.000Z
2015-08-05T14:26:52.000Z
src/babel-files-buffers.ads
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
null
null
null
src/babel-files-buffers.ads
stcarrez/babel
727461babd0305344427bf8a56cdae2b68d08caf
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- babel-files-buffers -- File buffer management -- Copyright (C) 2014, 2015 Stephane.Carrez -- Written by Stephane.Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Streams; with Ada.Containers.Vectors; with Ada.Finalization; with Util.Concurrent.Pools; package Babel.Files.Buffers is type Buffer; type Buffer_Access is access all Buffer; package Buffer_Pools is new Util.Concurrent.Pools (Element_Type => Buffer_Access); type Pool_Access is access all Buffer_Pools.Pool; type Buffer_Pool is tagged limited private; type Buffer_Pool_Access is access all Buffer_Pool; -- Allocate a buffer from the pool. procedure Get_Buffer (Pool : in out Buffer_Pool; Buffer : out Buffer_Access); -- Create the buffer pool with a number of pre-allocated buffers of the given maximum size. procedure Create_Pool (Into : in out Buffer_Pool; Size : in Positive; Count : in Positive); type Buffer (Max_Size : Ada.Streams.Stream_Element_Offset; Pool : Pool_Access) is limited record Last : Ada.Streams.Stream_Element_Offset; Data : Ada.Streams.Stream_Element_Array (0 .. Max_Size); end record; -- Restore the buffer back to the owning pool. procedure Release (Buffer : in out Buffer_Access); package Buffer_Access_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Buffer_Access, "=" => "="); subtype Buffer_Access_Vector is Buffer_Access_Vectors.Vector; subtype Buffer_Access_Cursor is Buffer_Access_Vectors.Cursor; private type Buffer_Pool is limited new Ada.Finalization.Limited_Controlled with record Pool : aliased Buffer_Pools.Pool; end record; -- Release the buffers allocated for the pool. overriding procedure Finalize (Pool : in out Buffer_Pool); end Babel.Files.Buffers;
39.647887
96
0.626643
1af3f07f595750625e303237150a79af9c23e61e
2,778
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3409b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3409b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3409b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CE3409B.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 SET_COL RAISES CONSTRAINT_ERROR IF THE GIVEN -- COLUMN NUMBER IS ZERO, OR NEGATIVE. -- HISTORY: -- ABW 08/26/82 -- SPS 09/22/82 -- JBG 01/27/83 -- JLH 08/31/87 CORRECTED EXCEPTION HANDLING, REMOVED UNNECESSARY -- CODE, AND ADDED CASE FOR COUNT'LAST. -- PWN 10/27/95 REMOVED OUT OF RANGE STATIC VALUE CHECKS. WITH REPORT ; USE REPORT ; WITH TEXT_IO ; USE TEXT_IO ; PROCEDURE CE3409B IS FILE : FILE_TYPE; BEGIN TEST ("CE3409B", "CHECK THAT SET_COL RAISES CONSTRAINT_ERROR " & "IF THE GIVEN COLUMN NUMBER IS ZERO, OR NEGATIVE."); BEGIN SET_COL (FILE, POSITIVE_COUNT(IDENT_INT(0))); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR ZERO"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN STATUS_ERROR => FAILED ("STATUS_ERROR INSTEAD OF CONSTRAINT_ERROR - 1"); WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED FOR ZERO"); END; BEGIN SET_COL (FILE, POSITIVE_COUNT(IDENT_INT(-2))); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR NEGATIVE NUMBER"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN STATUS_ERROR => FAILED ("STATUS_ERROR INSTEAD OF CONSTRAINT_ERROR - 2"); WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED FOR NEGATIVE " & "NUMBER"); END; RESULT; END CE3409B;
36.077922
79
0.62599
ad0d4cc211ea22a05abf586288ff2dd36c6c1a23
1,540
adb
Ada
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/packed_tagged/comp_bug.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/packed_tagged/comp_bug.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/packed_tagged/comp_bug.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
-- Copyright 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Comp_Bug is type Number_T (Exists : Boolean := False) is record case Exists is when True => Value : Natural range 0 .. 255; when False => null; end case; end record; pragma Pack (Number_T); X : Number_T; -- brobecker/2007-09-06: At the time when this issue (G904-017) was -- reported, the problem only reproduced if the variable was declared -- inside a function (in other words, stored on stack). Although -- the issue probably still existed when I tried moving this variable -- to a package spec, the symptoms inside GDB disappeared. begin X := (Exists => True, Value => 10); if X.Exists then -- STOP X.Value := X.Value + 1; end if; end Comp_Bug;
37.560976
74
0.65
1a9ffb1df3926f87b36469836625a986c6c16593
182
adb
Ada
136/ada/greet_no_op.adb
notdb/LC-Practice
48898e0a29ed3f4559b8680fe0bdd596c5faae1f
[ "MIT" ]
null
null
null
136/ada/greet_no_op.adb
notdb/LC-Practice
48898e0a29ed3f4559b8680fe0bdd596c5faae1f
[ "MIT" ]
null
null
null
136/ada/greet_no_op.adb
notdb/LC-Practice
48898e0a29ed3f4559b8680fe0bdd596c5faae1f
[ "MIT" ]
null
null
null
with Ada.Text_IO; use Ada.Text_IO; procedure Greet_No_Op is begin for I in reverse 5 .. 1 loop Put_Line ("Hello, World!" & Integer'Image (I)); end loop; end Greet_No_Op;
22.75
53
0.686813
2e94e66c9ec4d46efc53ba64f18bee30c503b913
4,884
ads
Ada
kv-avm-processors.ads
davidkristola/vole
aa8e19d9deff2efe98fcd4dc0028c2895d624693
[ "Unlicense" ]
4
2015-02-02T12:11:41.000Z
2020-12-19T02:14:21.000Z
kv-avm-processors.ads
davidkristola/vole
aa8e19d9deff2efe98fcd4dc0028c2895d624693
[ "Unlicense" ]
null
null
null
kv-avm-processors.ads
davidkristola/vole
aa8e19d9deff2efe98fcd4dc0028c2895d624693
[ "Unlicense" ]
3
2017-02-22T10:44:02.000Z
2021-05-16T09:34:39.000Z
with Interfaces; with kv.avm.references; use kv.avm.references; with kv.avm.Instructions; with kv.avm.Registers; with kv.avm.Frames; with kv.avm.Control; package kv.avm.Processors is Unimplemented_Error : exception; Frame_Stopped_Error : exception; type Processor_Type is tagged record Machine : kv.avm.Control.Control_Access; Failed_Assertion_Count : Natural; end record; type Processor_Access is access all Processor_Type; procedure Initialize (Self : in out Processor_Type; Machine : in kv.avm.control.Control_Access); procedure Step (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Status : out kv.avm.Control.Status_Type); function Get_Failed_Assertion_Count(Self : Processor_Type) return Natural; function Get_Machine(Self : Processor_Type) return kv.avm.Control.Control_Access; private procedure No_Op (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type); procedure Stop_Frame (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type); procedure Reply (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Jump (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Jump_Immediate -- jump_abs, jump_rel (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Set (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Branch (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Fold (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Peek (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure New_Actor (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure Compute (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Emit (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Self_Tail_X (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Halt_Actor (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Trap (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure Self_Call (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Super_Call (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Actor_Call (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure Format_5A2 (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure Peek_Immediate (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type; Status : out kv.avm.Control.Status_Type); procedure Assert (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); procedure Self_Send (Self : in out Processor_Type; Frame : access kv.avm.Frames.Frame_Type; Instr : in kv.avm.Instructions.Instruction_Type); end kv.avm.Processors;
38.15625
84
0.669328
2ee759848912e829b7ad82df1a99957782635cf7
3,359
adb
Ada
src/fltk-widgets-valuators-sliders-horizontal.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
1
2020-12-18T15:20:13.000Z
2020-12-18T15:20:13.000Z
src/fltk-widgets-valuators-sliders-horizontal.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
src/fltk-widgets-valuators-sliders-horizontal.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
with Interfaces.C.Strings, System; use type System.Address; package body FLTK.Widgets.Valuators.Sliders.Horizontal is procedure horizontal_slider_set_draw_hook (W, D : in System.Address); pragma Import (C, horizontal_slider_set_draw_hook, "horizontal_slider_set_draw_hook"); pragma Inline (horizontal_slider_set_draw_hook); procedure horizontal_slider_set_handle_hook (W, H : in System.Address); pragma Import (C, horizontal_slider_set_handle_hook, "horizontal_slider_set_handle_hook"); pragma Inline (horizontal_slider_set_handle_hook); function new_fl_horizontal_slider (X, Y, W, H : in Interfaces.C.int; Text : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_horizontal_slider, "new_fl_horizontal_slider"); pragma Inline (new_fl_horizontal_slider); procedure free_fl_horizontal_slider (D : in System.Address); pragma Import (C, free_fl_horizontal_slider, "free_fl_horizontal_slider"); pragma Inline (free_fl_horizontal_slider); procedure fl_horizontal_slider_draw (W : in System.Address); pragma Import (C, fl_horizontal_slider_draw, "fl_horizontal_slider_draw"); pragma Inline (fl_horizontal_slider_draw); function fl_horizontal_slider_handle (W : in System.Address; E : in Interfaces.C.int) return Interfaces.C.int; pragma Import (C, fl_horizontal_slider_handle, "fl_horizontal_slider_handle"); pragma Inline (fl_horizontal_slider_handle); procedure Finalize (This : in out Horizontal_Slider) is begin if This.Void_Ptr /= System.Null_Address and then This in Horizontal_Slider'Class then free_fl_horizontal_slider (This.Void_Ptr); This.Void_Ptr := System.Null_Address; end if; Finalize (Slider (This)); end Finalize; package body Forge is function Create (X, Y, W, H : in Integer; Text : in String) return Horizontal_Slider is begin return This : Horizontal_Slider do This.Void_Ptr := new_fl_horizontal_slider (Interfaces.C.int (X), Interfaces.C.int (Y), Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); fl_widget_set_user_data (This.Void_Ptr, Widget_Convert.To_Address (This'Unchecked_Access)); horizontal_slider_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); horizontal_slider_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); end return; end Create; end Forge; procedure Draw (This : in out Horizontal_Slider) is begin fl_horizontal_slider_draw (This.Void_Ptr); end Draw; function Handle (This : in out Horizontal_Slider; Event : in Event_Kind) return Event_Outcome is begin return Event_Outcome'Val (fl_horizontal_slider_handle (This.Void_Ptr, Event_Kind'Pos (Event))); end Handle; end FLTK.Widgets.Valuators.Sliders.Horizontal;
27.991667
94
0.632926
c7a910ee756b63a1db43964a749e1b6fcecbee4a
1,434
ads
Ada
source/resolver/program-interpretations-names.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/resolver/program-interpretations-names.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/resolver/program-interpretations-names.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
1
2019-10-16T09:05:27.000Z
2019-10-16T09:05:27.000Z
-- SPDX-FileCopyrightText: 2021 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Ada.Iterator_Interfaces; package Program.Interpretations.Names is pragma Preelaborate; type Cursor is private; function View (Self : Cursor) return Program.Visibility.View; function "+" (Self : Cursor) return Program.Visibility.View renames View; function Has_Element (Self : Cursor) return Boolean; package Iterators is new Ada.Iterator_Interfaces (Cursor, Has_Element); type Iterator is new Iterators.Forward_Iterator with private; function Each (Set : Interpretation_Set) return Iterator; private type Cursor_State (Is_Symbol : Boolean := False) is record case Is_Symbol is when True => Iter : Program.Visibility.Directly_Visible_Name_Iterator; Cursor : Program.Visibility.View_Cursor; when False => View : Program.Visibility.View; end case; end record; type Cursor is record Index : Natural; State : Cursor_State; end record; type Iterator is new Iterators.Forward_Iterator with record Set : Interpretation_Set; end record; overriding function First (Self : Iterator) return Cursor; overriding function Next (Self : Iterator; Position : Cursor) return Cursor; end Program.Interpretations.Names;
27.056604
76
0.672943
ad051a2058ecfafc8f46cd31794b8d1bd6deb523
2,511
ads
Ada
tools/scitools/conf/understand/ada/ada05/s-solita.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada05/s-solita.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada05/s-solita.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S O F T _ L I N K S . T A S K I N G -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the tasking versions soft links that are common -- to the full and the restricted run times. The rest of the required soft -- links are set by System.Tasking.Initialization and System.Tasking.Stages -- (full run time) or System.Tasking.Restricted.Stages (restricted run time). package System.Soft_Links.Tasking is procedure Init_Tasking_Soft_Links; -- Set the tasking soft links that are common to the full and the -- restricted run times. end System.Soft_Links.Tasking;
54.586957
78
0.447232
2ecddf9cadcd09b566e2c1c7ae22e141f9a8c9ba
4,980
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-strsea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-strsea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-strsea.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . S E A R C H -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the search functions from Ada.Strings.Fixed. They -- are separated out because they are shared by Ada.Strings.Bounded and -- Ada.Strings.Unbounded, and we don't want to drag in other irrelevant stuff -- from Ada.Strings.Fixed when using the other two packages. We make this a -- private package, since user programs should access these subprograms via -- one of the standard string packages. with Ada.Strings.Maps; private package Ada.Strings.Search is pragma Preelaborate; function Index (Source : String; Pattern : String; Going : Direction := Forward; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural; function Index (Source : String; Pattern : String; Going : Direction := Forward; Mapping : Maps.Character_Mapping_Function) return Natural; function Index (Source : String; Set : Maps.Character_Set; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Index (Source : String; Pattern : String; From : Positive; Going : Direction := Forward; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural; function Index (Source : String; Pattern : String; From : Positive; Going : Direction := Forward; Mapping : Maps.Character_Mapping_Function) return Natural; function Index (Source : String; Set : Maps.Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Index_Non_Blank (Source : String; Going : Direction := Forward) return Natural; function Index_Non_Blank (Source : String; From : Positive; Going : Direction := Forward) return Natural; function Count (Source : String; Pattern : String; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural; function Count (Source : String; Pattern : String; Mapping : Maps.Character_Mapping_Function) return Natural; function Count (Source : String; Set : Maps.Character_Set) return Natural; procedure Find_Token (Source : String; Set : Maps.Character_Set; From : Positive; Test : Membership; First : out Positive; Last : out Natural); procedure Find_Token (Source : String; Set : Maps.Character_Set; Test : Membership; First : out Positive; Last : out Natural); end Ada.Strings.Search;
40.819672
78
0.477912
22289d220a15c6d1e33a3ca67b2ee31dda51fa6b
2,287
adb
Ada
src/actions-init.adb
psyomn/agen
f1770307887e5b073f5d4c3bcce126fdc12b9625
[ "Apache-2.0" ]
1
2017-10-07T06:13:11.000Z
2017-10-07T06:13:11.000Z
src/actions-init.adb
psyomn/gnatgen
f1770307887e5b073f5d4c3bcce126fdc12b9625
[ "Apache-2.0" ]
9
2019-04-17T15:42:25.000Z
2019-04-24T05:37:13.000Z
src/actions-init.adb
psyomn/agen
f1770307887e5b073f5d4c3bcce126fdc12b9625
[ "Apache-2.0" ]
1
2019-04-24T17:59:29.000Z
2019-04-24T17:59:29.000Z
-- Copyright 2014-2019 Simon Symeonidis (psyomn) -- -- 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.Text_IO; use Ada.Text_IO; with Ada.Characters.Handling; use Ada.Characters.Handling; with Agen; use Agen; with Argument_Stack; package body Actions.Init is procedure Help is begin Put_Line(" (new|init)"); Put_Line(" project <name> - create a project from a basic template"); Put_Line(" gpr <name> - create a GPR from a basic template"); end Help; function Try_Act return Boolean is begin if Argument_Stack.Is_Empty then goto Fail; end if; declare Action : constant String := Argument_Stack.Pop; begin if To_Upper(Action) /= "NEW" and To_Upper(Action) /= "INIT" then goto Fail; end if; end; if Argument_Stack.Is_Empty then Put_Line(Standard_Error, "Error: No target was specified"); goto Fail; end if; declare Target : constant String := Argument_Stack.Pop; begin if To_Upper(Target) = "PROJECT" then if Argument_Stack.Is_Empty then Put_Line(Standard_Error, "Error: No name was specifed"); goto Fail; end if; Agen.Create_Project(Argument_Stack.Pop); return True; elsif To_Upper(Target) = "GPR" then if Argument_Stack.Is_Empty then Put_Line(Standard_Error, "Error: No name was specified"); goto Fail; end if; Agen.Create_GPR(Argument_Stack.Pop); return True; else Put_Line(Standard_Error, "Error: """ & Target & """ was not an understood target"); goto Fail; end if; end; <<Fail>> Argument_Stack.Reset; return False; end Try_Act; end Actions.Init;
32.211268
92
0.651509
29ecae0358b67d1539bf343d6d54b4ae5cea0558
9,811
ads
Ada
.emacs.d/elpa/wisi-3.1.3/sal-gen_unbounded_definite_vectors.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-3.1.3/sal-gen_unbounded_definite_vectors.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-3.1.3/sal-gen_unbounded_definite_vectors.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
-- Abstract : -- -- A simple unbounded vector of definite items, intended to be faster -- than Ada.Containers.Vectors. -- -- Prepend is as fast (in amortized time) as Append. -- -- It provides no checking of cursor tampering; higher level code -- must ensure that. -- -- Design: -- -- See ARM 3.10.2 "explicitly aliased" for why we need 'aliased' in -- several subprogram argument modes, and why Container must be an -- access discriminant in Cursor and Iterator. -- -- Copyright (C) 2018 - 2020 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 Ada.Finalization; with Ada.Iterator_Interfaces; with Ada.Unchecked_Deallocation; generic type Index_Type is range <>; type Element_Type is private; Default_Element : in Element_Type; package SAL.Gen_Unbounded_Definite_Vectors is subtype Extended_Index is Index_Type'Base range Index_Type'First - 1 .. Index_Type'Min (Index_Type'Base'Last - 1, Index_Type'Last) + 1; No_Index : constant Extended_Index := Extended_Index'First; type Vector is new Ada.Finalization.Controlled with private with Constant_Indexing => Constant_Ref, Variable_Indexing => Variable_Ref, Default_Iterator => Iterate, Iterator_Element => Element_Type; Empty_Vector : constant Vector; overriding procedure Finalize (Container : in out Vector); overriding procedure Adjust (Container : in out Vector); overriding function "=" (Left, Right : in Vector) return Boolean is (raise Programmer_Error); -- Use Gen_Comparable child. function Length (Container : in Vector) return Ada.Containers.Count_Type; function Capacity (Container : in Vector) return Ada.Containers.Count_Type; procedure Set_Capacity (Container : in out Vector; First : in Index_Type; Last : in Extended_Index); -- Allocates memory, but does not change Container.First, Container.Last. procedure Clear (Container : in out Vector) renames Finalize; function First_Index (Container : Vector) return Extended_Index; -- No_Index + 1 when Container is empty, so "for I in C.First_Index -- .. C.Last_Index loop" works. -- -- If you need No_Index for an empty Container, use To_Index (Container.First). function Last_Index (Container : Vector) return Extended_Index; -- No_Index when Container is empty. function Element (Container : Vector; Index : Index_Type) return Element_Type with Pre => Index >= Container.First_Index and Index <= Container.Last_Index; procedure Replace_Element (Container : Vector; Index : Index_Type; New_Item : in Element_Type); procedure Append (Container : in out Vector; New_Item : in Element_Type); -- Insert New_Item at end of Container. -- -- Raises Constraint_Error if index of new item would be greater than -- Index_Type'Last. procedure Append (Container : in out Vector; New_Items : in Vector); -- Insert all elements of New_Items at end of Container. procedure Prepend (Container : in out Vector; New_Item : in Element_Type); -- Insert New_Item at beginning of Container. -- -- Raises Constraint_Error if index of new item would be less than -- Index_Type'First. procedure Prepend (Target : in out Vector; Source : in Vector; Source_First : in Index_Type; Source_Last : in Index_Type); -- Copy Source (Source_First .. Source_Last) to Target, before -- Target.First_Index. procedure Insert (Container : in out Vector; Element : in Element_Type; Before : in Index_Type); -- Existing elements at Before and after are slid to higher indices. procedure Merge (Target : in out Vector; Source : in out Vector); -- Copy all elements from Source to Target, to the same index range, -- deleting them from Source, and overwriting overlapping ranges. function To_Vector (Item : in Element_Type; Count : in Ada.Containers.Count_Type := 1) return Vector; function "+" (Element : in Element_Type) return Vector; function "&" (Left, Right : in Element_Type) return Vector; function "&" (Left : in Vector; Right : in Element_Type) return Vector; procedure Set_First_Last (Container : in out Vector; First : in Index_Type; Last : in Extended_Index); -- Elements in First .. Last that have not been set have -- Default_Element value. procedure Delete (Container : in out Vector; Index : in Index_Type); -- Replace Index element contents with default. If Index = -- Container.Last_Index, Container.Last_Index is decremented. function Contains (Container : in Vector; Element : in Element_Type) return Boolean; -- Return True if Element is in Container, False if not. type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Constant_Ref (Container : aliased in Vector; Index : in Index_Type) return Constant_Reference_Type with Inline, Pre => Index in Container.First_Index .. Container.Last_Index; type Variable_Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Variable_Ref (Container : aliased in Vector; Index : in Index_Type) return Variable_Reference_Type with Inline, Pre => Index in Container.First_Index .. Container.Last_Index; type Cursor (<>) is private; function Has_Element (Position : Cursor) return Boolean; function Element (Position : Cursor) return Element_Type with Pre => Has_Element (Position); function First (Container : aliased in Vector) return Cursor; function Next (Position : in Cursor) return Cursor; procedure Next (Position : in out Cursor); function Prev (Position : in Cursor) return Cursor; procedure Prev (Position : in out Cursor); function To_Cursor (Container : aliased in Vector; Index : in Extended_Index) return Cursor with Pre => Index = No_Index or Index in Container.First_Index .. Container.Last_Index; function To_Index (Position : in Cursor) return Extended_Index; package Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function Iterate (Container : aliased in Vector) return Iterator_Interfaces.Reversible_Iterator'Class; function Constant_Ref (Container : aliased in Vector; Position : in Cursor) return Constant_Reference_Type with Pre => Has_Element (Position) and then To_Index (Position) in Container.First_Index .. Container.Last_Index; function Variable_Ref (Container : aliased in Vector; Position : in Cursor) return Variable_Reference_Type with Pre => Has_Element (Position) and then To_Index (Position) in Container.First_Index .. Container.Last_Index; pragma Inline (Variable_Ref); private type Array_Type is array (SAL.Peek_Type range <>) of aliased Element_Type; type Array_Access is access Array_Type; procedure Free is new Ada.Unchecked_Deallocation (Array_Type, Array_Access); type Vector is new Ada.Finalization.Controlled with record Elements : Array_Access; -- Elements may be non-null with First = No_Index, after -- Set_Capacity. If First /= No_Index and Last >= First, Elements /= -- null. First > Last means Vector is empty. First : Extended_Index := No_Index; Last : Extended_Index := No_Index; end record; type Vector_Access is access constant Vector; for Vector_Access'Storage_Size use 0; type Cursor (Container : not null access constant Vector) is record Index : Base_Peek_Type := Invalid_Peek_Index; end record; type Iterator (Container : not null access constant Vector) is new Iterator_Interfaces.Reversible_Iterator with null record; overriding function First (Object : Iterator) return Cursor; overriding function Last (Object : Iterator) return Cursor; overriding function Next (Object : Iterator; Position : Cursor) return Cursor; overriding function Previous (Object : Iterator; Position : Cursor) return Cursor; 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_Vector : constant Vector := (Ada.Finalization.Controlled with others => <>); ---------- -- Visible for contracts/SPARK function Has_Element (Position : Cursor) return Boolean is (Position.Index /= Invalid_Peek_Index); ---------- -- Visible for child package function To_Peek_Type (Item : in Extended_Index) return Base_Peek_Type with Inline; function To_Index_Type (Item : in Base_Peek_Type) return Extended_Index; procedure Grow (Elements : in out Array_Access; Index : in Base_Peek_Type); end SAL.Gen_Unbounded_Definite_Vectors;
38.778656
114
0.716237
1ab140416a66bb96e5c05792eaecd02ae6d22e51
67,427
adb
Ada
fourier/fourier8.adb
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
30
2018-12-09T01:15:04.000Z
2022-03-20T16:14:54.000Z
fourier/fourier8.adb
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
null
null
null
fourier/fourier8.adb
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
null
null
null
------------------------------------------------------------------------------- -- package body Fourier8, a fast fourier transform -- Copyright (C) 1995-2018 Jonathan S. Parker -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------------------------------------------------- with Ada.Numerics.Generic_Elementary_Functions; package body Fourier8 is package math is new Ada.Numerics.Generic_Elementary_Functions (Real); use math; subtype Exponent_Of_Two_Type is Natural range 0 .. Log_Of_Max_Data_Length; -------------------- -- Make_Exp_Table -- -------------------- -- Make_Exp_Table calculates points on the unit circle -- starting at Theta = 0 and ending near Theta = -Pi. The -- points are separated by Theta = 2*Pi/N. In other words, the -- bottom half of the unit circle is divided into N/2 equally spaced -- points. These points are then stored in the array Exp_Table. -- For efficiency, only the 1st eighth of the unit circle -- is calculated. The other points are inferred from that. Exp_Table -- is defined Exp (-i * Two_Pi_Over_N * Data_Index) where Data_Index -- is in the range 0 .. N/2 - 1 and N is the Data length, the power of -- 2 that appears in Two_Pi_Over_N. procedure Make_Exp_Table (Padded_Data_Index_Last : in Data_Index; Exp_Table : in out Exp_Storage) is Pii : constant Real := 3.14159_26535_89793_23846_26433_83279_50288; Sqrt_Half : constant Real := 0.70710_67811_86547_52440_08443_62104_84904; Two_Pi_Over_N : constant Real := 2.0 * Pii / (Real (Padded_Data_Index_Last) + 1.0); C, S : Real; Theta : Real; -- Divide the unit circle into 2**M = Padded_Data_Index_Last+1 points. -- Divide the unit circle into eighths and quadrants: StartOf1stQuadrant : constant Data_Index := 0; StartOf2ndEighth : constant Data_Index := Padded_Data_Index_Last / 8 + 1; StartOf2ndQuadrant : constant Data_Index := Padded_Data_Index_Last / 4 + 1; StartOf3rdQuadrant : constant Data_Index := Padded_Data_Index_Last / 2 + 1; StartOf4rthEighth : constant Data_Index := StartOf2ndEighth * 3; begin if Padded_Data_Index_Last = 0 then -- 1 data point null; elsif Padded_Data_Index_Last = 1 then -- 2 data points Exp_Table.Re(StartOf1stQuadrant) := 1.0; Exp_Table.Im(StartOf1stQuadrant) := 0.0; elsif Padded_Data_Index_Last = 3 then -- 4 data points Exp_Table.Re(StartOf1stQuadrant) := 1.0; Exp_Table.Im(StartOf1stQuadrant) := 0.0; Exp_Table.Re(StartOf2ndQuadrant) := 0.0; Exp_Table.Im(StartOf2ndQuadrant) := -1.0; elsif Padded_Data_Index_Last >= 7 then -- 8 data points and higher: Exp_Table.Re(StartOf1stQuadrant) := 1.0; Exp_Table.Im(StartOf1stQuadrant) := 0.0; Exp_Table.Re(StartOf2ndEighth) := Sqrt_Half; Exp_Table.Im(StartOf2ndEighth) := -Sqrt_Half; Exp_Table.Re(StartOf2ndQuadrant) := 0.0; Exp_Table.Im(StartOf2ndQuadrant) := -1.0; Exp_Table.Re(StartOf4rthEighth) := -Sqrt_Half; Exp_Table.Im(StartOf4rthEighth) := -Sqrt_Half; for Mode in Exp_Mode_Index range 1..StartOf2ndEighth-1 loop Theta := Two_Pi_Over_N * Real(Mode); C := Cos (Theta); S := Sin (Theta); Exp_Table.Re(StartOf1stQuadrant + Mode) := C; Exp_Table.Im(StartOf1stQuadrant + Mode) := -S; Exp_Table.Re(StartOf2ndQuadrant + Mode) := -S; Exp_Table.Im(StartOf2ndQuadrant + Mode) := -C; Exp_Table.Re(StartOf2ndQuadrant - Mode) := S; Exp_Table.Im(StartOf2ndQuadrant - Mode) := -C; Exp_Table.Re(StartOf3rdQuadrant - Mode) := -C; Exp_Table.Im(StartOf3rdQuadrant - Mode) := -S; end loop; end if; Exp_Table.Current_Size_Of_Exp_Table := Padded_Data_Index_Last; -- This global variable is initalized to 0. This tells the FFT routine -- whether to reconstruct Exp_Table when it's called again. The table -- must be reconstructed whenever Padded_Data_Index_Last changes. end Make_Exp_Table; -------------------------- -- Get_Bit_Reversal_Of -- -------------------------- -- Radix 4 Bit_Reversal using bits 0..Top_Bit. procedure Get_Bit_Reversal_Of (Data_Re, Data_Im : in out Data_Array; Two_To_The_Top_Bit : in Data_Index; Half_Two_To_The_Top_Bit : in Data_Index; Quarter_Two_To_The_Top_Bit : in Data_Index; Top_Bit : in Exponent_Of_Two_Type) is Temp : Real; K, Bit_Reversed_K, Power_Of_Two : Data_Index; Two_To_Top_Bit_minus_Two_To_lesser_Bit : constant Data_Index := Two_To_The_Top_Bit - Half_Two_To_The_Top_Bit; Two_To_Top_Bit_plus_Two_To_lesser_Bit : constant Data_Index := Two_To_The_Top_Bit + Half_Two_To_The_Top_Bit; begin -- No_Of_Data_points = 2**(Top_Bit+1) <= 2: if Top_Bit = 0 then return; end if; -- No_Of_Data_points = 2**(Top_Bit+1) = 4: if Top_Bit = 1 then Temp := Data_Re(2); Data_Re(2) := Data_Re(1); Data_Re(1) := Temp; Temp := Data_Im(2); Data_Im(2) := Data_Im(1); Data_Im(1) := Temp; return; end if; -- No_Of_Data_points = 2**(Top_Bit+1) >= 8: K := 0; Bit_Reversed_K := 0; for count in 0..Half_Two_To_The_Top_Bit-2 loop -- now K = 00xxxxxxxxxxx and Bit_Reversed_K = xxxxxxxxxxxx00 K := K + 1; Bit_Reversed_K := Bit_Reversed_K + Two_To_The_Top_Bit; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; -- now K = 10xxxxxxxxxxx and Bit_Reversed_K = xxxxxxxxxxxx01 K := K + 1; Bit_Reversed_K := Bit_Reversed_K - Two_To_Top_Bit_minus_Two_To_lesser_Bit; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; -- now K = 01xxxxxxxxxxx xxxxxxxxxxxx10 K := K + 1; Bit_Reversed_K := Bit_Reversed_K + Two_To_The_Top_Bit; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; -- now K = 11xxxxxxxxxxx xxxxxxxxxxxx11 K := K + 1; Bit_Reversed_K := Bit_Reversed_K - Two_To_Top_Bit_plus_Two_To_lesser_Bit; Power_Of_Two := Quarter_Two_To_The_Top_Bit; -- 2**(Top_Bit-2) Bit_Reverse_K_Plus_1: for Exponent in reverse 0..Top_Bit-2 loop if Bit_Reversed_K < Power_Of_Two then -- B_R_K has a '0' at position Exponent. Put a '1' there: Bit_Reversed_K := Bit_Reversed_K + Power_Of_Two; exit Bit_Reverse_K_Plus_1; else -- B_R_K has a '1' at position Exponent. Put a '0' there: Bit_Reversed_K := Bit_Reversed_K - Power_Of_Two; Power_Of_Two := Power_Of_Two / 2; end if; end loop Bit_Reverse_K_Plus_1; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; end loop; -- now K = 00xxxxxxxxxxx xxxxxxxxxxxx00 K := K + 1; Bit_Reversed_K := Bit_Reversed_K + Two_To_The_Top_Bit; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; -- now K = 10xxxxxxxxxxx xxxxxxxxxxxx01 K := K + 1; Bit_Reversed_K := Bit_Reversed_K - Two_To_Top_Bit_minus_Two_To_lesser_Bit; if K < Bit_Reversed_K then Temp := Data_Re (Bit_Reversed_K); Data_Re(Bit_Reversed_K) := Data_Re(K); Data_Re(K) := Temp; Temp := Data_Im (Bit_Reversed_K); Data_Im(Bit_Reversed_K) := Data_Im(K); Data_Im(K) := Temp; end if; end Get_Bit_Reversal_Of; pragma Inline (Get_Bit_Reversal_Of); --------- -- FFT -- --------- procedure FFT (Data_Re, Data_Im : in out Data_Array; Transformed_Data_Last : out Data_Index; Input_Data_Last : in Data_Index; Exp_Table : in out Exp_Storage; Inverse_FFT_Desired : in Boolean := False; Normalized_Data_Desired : in Boolean := False; Bit_Reversal_Desired : in Boolean := True) is Sqrt_Half : constant Real := 0.70710_67811_86547_52440_08443_62104_84904; -- Indexing for the FFT Flock_Width, Start_Of_Butterfly, Start_Of_Flock : Data_Index; Butterflies_Per_Flock : Data_Index; Butterflies_Per_Flock2 : Data_Index; Butterflies_Per_Flock3 : Data_Index; Butterflies_Per_Flock4 : Data_Index; Butterflies_Per_Flock5 : Data_Index; Butterflies_Per_Flock6 : Data_Index; Butterflies_Per_Flock7 : Data_Index; No_Of_Butterfly_Flocks : Data_Index; Next_Butterfly : Data_Index; Padded_Data_Index_Last : Data_Index; Half_Data, Quarter_Data, Eighth_Data : Data_Index; Log_Of_Data_Length_Minus_1 : Exponent_Of_Two_Type; Radix_2_Stage_Last : Exponent_Of_Two_Type; Radix_8_Stage_Last : Exponent_Of_Two_Type; No_Of_Radix_8_Stages : Data_Index; No_Of_Radix_4_Stages : Data_Index; No_Of_Radix_2_Stages : Data_Index; Remaining_Radix_2_Stages : Data_Index; Log_Of_Data_Length : Data_Index; No_Of_Preliminary_Radix_8_Stages : Data_Index; Final_Stage_Is_A_Radix_8_Stage : Boolean; Final_Stage_Is_A_Radix_4_Stage : Boolean; Final_Stage_Is_A_Radix_2_Stage : Boolean; NormalizationFactor : Real := 1.0; -- For Radix 2 butterflies DataTop_Re, DataBot_Re : Real; DataTop_Im, DataBot_Im : Real; -- For Radix 4 butterflies Data02sum_Re, Data02sum_Im, Data02del_Re, Data02del_Im : Real; Data13sum_Re, Data13sum_Im, Data13del_Re, Data13del_Im : Real; -- For Radix 8 butterflies D0_Re, D1_Re, D2_Re, D3_Re, D4_Re, D5_Re, D6_Re, D7_Re : Real; D0_Im, D1_Im, D2_Im, D3_Im, D4_Im, D5_Im, D6_Im, D7_Im : Real; D04sum_Re, D15sum_Re, D26sum_Re, D37sum_Re : Real; D04sum_Im, D15sum_Im, D26sum_Im, D37sum_Im : Real; D04del_Re, D15del_Re, D26del_Re, D37del_Re : Real; D04del_Im, D15del_Im, D26del_Im, D37del_Im : Real; D1537sum_Re, D1537sum_Im, D1537del_Re, D1537del_Im : Real; Sqrt_sum_Re, Sqrt_sum_Im, Sqrt_del_Re, Sqrt_del_Im : Real; D04del26sum_Im, D04del26sum_Re, D04del26del_Re, D04del26del_Im : Real; D04sum26sum_Re, D04sum26sum_Im, D04sum26del_Re, D04sum26del_Im : Real; D15sum37sum_Re, D15sum37sum_Im, D15sum37del_Re, D15sum37del_Im : Real; Temp_Re, Temp_Im : Real; Exp1_Re, Exp2_Re, Exp3_Re : Real; Exp1_Im, Exp2_Im, Exp3_Im : Real; Exp4_Re, Exp5_Re, Exp6_Re, Exp7_Re : Real; Exp4_Im, Exp5_Im, Exp6_Im, Exp7_Im : Real; Index0, Index1, Index2, Index3 : Data_Index; Index4, Index5, Index6, Index7 : Data_Index; Exp_Id, E_low : Data_Index; ------------------ -- Integer_Log2 -- ------------------ -- Rounds down, so on range (eg) 0..2**15-1 it returns 0 .. 14 -- returns 0 for I in 0..1 -- returns 1 for I in 2..3, etc. function Integer_Log2 (I : Data_Index) return Exponent_Of_Two_Type is Log2 : Exponent_Of_Two_Type := 0; begin for Exponent in Exponent_Of_Two_Type loop exit when 2**Exponent > I; log2 := Exponent; end loop; return Log2; end Integer_Log2; begin -- Step 1. The FFT of a data set of length 1 is itself. -- So leave the data unchanged, and return. if Input_Data_Last < 1 then Padded_Data_Index_Last := 0; Transformed_Data_Last := 0; return; end if; -- Step 2. -- Pad the data with zeros -- out to the nearest power of 2. First must find what -- that power of 2 is, so use Integer_Log2 (Input_Data_Last). -- Integer_Log2 rounds down so LogOf.. is in Exponent_Of_Two_Type range. -- This is LogOfDataSize - 1, not LogOf(DataSize-1). The length of the -- padded data is twice 2**Log_Of_Data_Length_Minus_1 Log_Of_Data_Length_Minus_1 := Integer_Log2 (Input_Data_Last); Half_Data := 2 ** Integer (Log_Of_Data_Length_Minus_1); Quarter_Data := Half_Data / 2; -- Could be 0 Eighth_Data := Half_Data / 4; -- Could be 0 Padded_Data_Index_Last := Half_Data - 1; Padded_Data_Index_Last := Padded_Data_Index_Last + Half_Data; -- Pad with zeros: if Input_Data_Last < Data_Index'Last then for I in Input_Data_Last+1..Padded_Data_Index_Last loop Data_Re (I) := 0.0; end loop; for I in Input_Data_Last+1..Padded_Data_Index_Last loop Data_Im (I) := 0.0; end loop; end if; -- Step 2b. Must must decide how many Radix 8, 4, and 2 stages to take. -- Radix 2 stage will be the final stage if it is required. For a -- Radix 2 FFT, Stages is in 0..Log_Of_Data_Length_Minus_1. Log_Of_Data_Length := Data_Index (Log_Of_Data_Length_Minus_1) + 1; Remaining_Radix_2_Stages := Log_Of_Data_Length; No_Of_Radix_8_Stages := Remaining_Radix_2_Stages / 3; Remaining_Radix_2_Stages := Remaining_Radix_2_Stages-No_Of_Radix_8_Stages*3; No_Of_Radix_4_Stages := Remaining_Radix_2_Stages / 2; Remaining_Radix_2_Stages := Remaining_Radix_2_Stages-No_Of_Radix_4_Stages*2; No_Of_Radix_2_Stages := Remaining_Radix_2_Stages; Final_Stage_Is_A_Radix_8_Stage := False; Final_Stage_Is_A_Radix_4_Stage := False; Final_Stage_Is_A_Radix_2_Stage := False; if No_Of_Radix_2_Stages > 0 then Final_Stage_Is_A_Radix_2_Stage := True; elsif No_Of_Radix_4_Stages > 0 then Final_Stage_Is_A_Radix_4_Stage := True; elsif No_Of_Radix_8_Stages > 0 then Final_Stage_Is_A_Radix_8_Stage := True; end if; No_Of_Preliminary_Radix_8_Stages := No_Of_Radix_8_Stages; if Final_Stage_Is_A_Radix_8_Stage then -- have Radix_8_Stages > 0 No_Of_Preliminary_Radix_8_Stages := No_Of_Radix_8_Stages - 1; end if; -- Step 3. If haven't done so already, construct the table -- of SIN and COS functions (actually exp(-i*theta)). -- Dont need to remake it if it has already been constructed -- for the right value of Padded_Data_Index_Last. if not (Exp_Table.Current_Size_Of_Exp_Table = Padded_Data_Index_Last) then Make_Exp_Table (Padded_Data_Index_Last, Exp_Table); end if; -- here inline the Inverse (backward) fft by hand: if Inverse_FFT_Desired then -- Step 5a. Perform the FFT radix 8 Stages on 0..Radix_8_Stage_Last -- Each "Butterfly" has 8 inputs on the left, and 8 outputs on the right. -- The 8 on the left (input) are at indices n, n+N/8, n+N/4, n+3N/8 etc. -- Index n is in the range 0..N/8-1, where N is the Data_Length, a power of 2. -- The output data points (on the right) are at the same points. -- The above is for stage 0. At state 1, just replace the N by N/8. -- -- The Radix 8 stage is really a series of 8 point DFT's. The Radix -- 2 stage is a series of 2 point DFT's. We want the output of a single -- Radix 8 stage to be identical to the output of 3 Radix 2 stages. -- Therefore have to make sure that the 8 x 8 DFT's produces -- bit-reversed output just like results of 3 radix 2 stages, so -- have to artifically bit-reverse the results of the 8 x 8. To bit -- reverse an 8 pt DFT, just swap items 1 and 4, and items 3 and 6. -- -- Stage 0 prepares Data so that the N pt DFT can be done by eight N/8 -- pt DFT's in stage 1. Instead of performing the 8 DFT's, Stage 1 prepares -- the Data so the eight N/8 pt DFT's can each be -- done by eight N/64 pt. DFT's in stage 2. The value N/8 in Stage=0 is called -- Butterflies_Per_Flock. Since each butterfly has 8 outputs, the -- N/8 butterflies of stage 0 comprise the entire data set. At stage 0, with -- N/8 butterflies, say Flock_Width = N and No_Of_Butterfly_Flocks = 1. -- At Stage 1, with N/64 butterflies (for each of the 8 DFT's), say -- Flock_Width = N/8, and No_Of_Butterfly_Flocks = 8. if No_Of_Preliminary_Radix_8_Stages > 0 then Radix_8_Stage_Last:=Exponent_Of_Two_Type(No_Of_Preliminary_Radix_8_Stages-1); for Stage in 0 .. Radix_8_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Integer(3*Stage); Butterflies_Per_Flock := Eighth_Data / No_Of_Butterfly_Flocks; Butterflies_Per_Flock2 := Butterflies_Per_Flock + Butterflies_Per_Flock; Butterflies_Per_Flock3 := Butterflies_Per_Flock2 + Butterflies_Per_Flock; Butterflies_Per_Flock4 := Butterflies_Per_Flock2 + Butterflies_Per_Flock2; Butterflies_Per_Flock5 := Butterflies_Per_Flock2 + Butterflies_Per_Flock3; Butterflies_Per_Flock6 := Butterflies_Per_Flock2 + Butterflies_Per_Flock4; Butterflies_Per_Flock7 := Butterflies_Per_Flock2 + Butterflies_Per_Flock5; -- Butterflies_Per_Flock is in the range Eighth_Data..1 -- No_Of_Butterfly_Flocks is in the range 1..Eighth_Data Flock_Width := 0; -- Flock width overflows if Stage = 0. if Stage > 0 then Flock_Width := 8 * Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; -- table holds fft exps, not inverse fft, -- so must change sign of imag. parts: Exp_Id := Next_Butterfly; Exp1_Re := Exp_Table.Re(Exp_Id); Exp1_Im := -Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp2_Re := Exp_Table.Re(Exp_Id); Exp2_Im := -Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp3_Re := Exp_Table.Re(Exp_Id); Exp3_Im := -Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp4_Re := Exp_Table.Re(Exp_Id); Exp4_Im := -Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp5_Re := Exp_Table.Re(Exp_Id); Exp5_Im := -Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp5_Re := -Exp_Table.Re(E_low); Exp5_Im := Exp_Table.Im(E_low); end if; Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp6_Re := Exp_Table.Re(Exp_Id); Exp6_Im := -Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp6_Re := -Exp_Table.Re(E_low); Exp6_Im := Exp_Table.Im(E_low); end if; Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp7_Re := Exp_Table.Re(Exp_Id); Exp7_Im := -Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp7_Re := -Exp_Table.Re(E_low); Exp7_Im := Exp_Table.Im(E_low); end if; -- Next want to perform the 8 pt. Fourier Trans. on butterfly -- with ID = Butterfly_ID, in the Flock with ID = Flock_ID. The -- span of a flock is 8 times the number of butterflies in the -- flock. So the start of the Flock is at Flock_ID * Span, -- and add on to that Butterfly_ID to get the start of the -- desired butterfly. The index of the start of the butterfly -- is called K: -- Here is the abstract version of the inner loop, commented out. -- Below it is unrolled by hand to make it more efficient under -- gcc/gnat. -- -- must change sign of imag. partsfor inverse fft: -- -- D0new := ((D0+D4) + (D2+D6) + ( (D1+D5) + (D3+D7))) * Exp0; -- D2new := ((D0+D4) - (D2+D6) - i*( (D1+D5) - (D3+D7))) * Exp2; -- D4new := ((D0+D4) + (D2+D6) - ( (D1+D5) + (D3+D7))) * Exp4; -- D6new := ((D0+D4) - (D2+D6) + i*( (D1+D5) - (D3+D7))) * Exp6; -- -- D1new := ((D0-D4) - i(D2-D6) + a( 1-i)*(D1-D5) + a(-1-i)*(D3-D7))*Exp1; -- D3new := ((D0-D4) + i(D2-D6) + a(-1-i)*(D1-D5) + a( 1-i)*(D3-D7))*Exp3; -- D5new := ((D0-D4) - i(D2-D6) + a(-1+i)*(D1-D5) + a( 1+i)*(D3-D7))*Exp5; -- D7new := ((D0-D4) + i(D2-D6) + a( 1+i)*(D1-D5) + a(-1+i)*(D3-D7))*Exp7; -- -- The last set can be written: -- --D1new = ((D0-D4) - i(D2-D6) - a(i((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7))))*Exp1; --D3new = ((D0-D4) + i(D2-D6) - a(i((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7))))*Exp3; --D5new = ((D0-D4) - i(D2-D6) + a(i((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7))))*Exp5; --D7new = ((D0-D4) + i(D2-D6) + a(i((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7))))*Exp7; -- for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index4 := Start_Of_Butterfly + Butterflies_Per_Flock4; D0_Re := Data_Re (Index0); D0_Im := Data_Im (Index0); D4_Re := Data_Re (Index4); D4_Im := Data_Im (Index4); D04sum_Re := D0_Re + D4_Re; D04sum_Im := D0_Im + D4_Im; D04del_Re := D0_Re - D4_Re; D04del_Im := D0_Im - D4_Im; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index6 := Start_Of_Butterfly + Butterflies_Per_Flock6; D2_Re := Data_Re (Index2); D2_Im := Data_Im (Index2); D6_Re := Data_Re (Index6); D6_Im := Data_Im (Index6); D26sum_Re := D2_Re + D6_Re; D26sum_Im := D2_Im + D6_Im; D26del_Re := D2_Re - D6_Re; D26del_Im := D2_Im - D6_Im; D04sum26sum_Re := D04sum_Re + D26sum_Re; D04sum26sum_Im := D04sum_Im + D26sum_Im; D04sum26del_Re := D04sum_Re - D26sum_Re; D04sum26del_Im := D04sum_Im - D26sum_Im; -- D04del26sum := D04del + Im*D26del; D04del26sum_Re := D04del_Re - D26del_Im; D04del26sum_Im := D04del_Im + D26del_Re; -- D04del26del := D04del - Im*D26del; D04del26del_Re := D04del_Re + D26del_Im; D04del26del_Im := D04del_Im - D26del_Re; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index5 := Start_Of_Butterfly + Butterflies_Per_Flock5; D1_Re := Data_Re (Index1); D1_Im := Data_Im (Index1); D5_Re := Data_Re (Index5); D5_Im := Data_Im (Index5); D15sum_Re := D1_Re + D5_Re; D15sum_Im := D1_Im + D5_Im; D15del_Re := D1_Re - D5_Re; D15del_Im := D1_Im - D5_Im; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Index7 := Start_Of_Butterfly + Butterflies_Per_Flock7; D3_Re := Data_Re (Index3); D3_Im := Data_Im (Index3); D7_Re := Data_Re (Index7); D7_Im := Data_Im (Index7); D37sum_Re := D3_Re + D7_Re; D37sum_Im := D3_Im + D7_Im; D37del_Re := D3_Re - D7_Re; D37del_Im := D3_Im - D7_Im; D15sum37sum_Re := D15sum_Re + D37sum_Re; D15sum37sum_Im := D15sum_Im + D37sum_Im; D15sum37del_Re := D15sum_Re - D37sum_Re; D15sum37del_Im := D15sum_Im - D37sum_Im; D1537sum_Re := D15del_Re + D37del_Re; D1537sum_Im := D15del_Im + D37del_Im; D1537del_Re := D15del_Re - D37del_Re; D1537del_Im := D15del_Im - D37del_Im; -- D0new := ((D0+D4) + (D2+D6) + ( (D1+D5) + (D3+D7))) * Exp0; -- Data(Index0) := D04sum + D26sum + D15sum + D37sum; Temp_Re := D04sum26sum_Re + D15sum37sum_Re; Temp_Im := D04sum26sum_Im + D15sum37sum_Im; Data_Re (Index0) := Temp_Re; Data_Im (Index0) := Temp_Im; -- Inverse FFT: change sign of i: -- D2new := ((D0+D4) - (D2+D6) + i*((D1+D5) - (D3+D7))) * Exp2; -- Data(Index2) := (D04sum - D26sum + Im * (D15sum - D37sum)) * Exp2; Temp_Re := D04sum26del_Re - D15sum37del_Im; Temp_Im := D04sum26del_Im + D15sum37del_Re; Data_Re (Index2) := Temp_Re*Exp2_Re - Temp_Im*Exp2_Im; Data_Im (Index2) := Temp_Re*Exp2_Im + Temp_Im*Exp2_Re; -- D4new := ((D0+D4) + (D2+D6) - ((D1+D5) + (D3+D7))) * Exp4; -- Data(Index1) := (D04sum + D26sum - (D15sum + D37sum)) * Exp4; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04sum26sum_Re - D15sum37sum_Re; Temp_Im := D04sum26sum_Im - D15sum37sum_Im; Data_Re (Index1) := Temp_Re*Exp4_Re - Temp_Im*Exp4_Im; Data_Im (Index1) := Temp_Re*Exp4_Im + Temp_Im*Exp4_Re; -- Inverse FFT: change sign of i: -- D6new := ((D0+D4) - (D2+D6) - i*((D1+D5) - (D3+D7))) * Exp6; -- Data(Index3) := (D04sum - D26sum - Im*(D15sum - D37sum)) * Exp6; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04sum26del_Re + D15sum37del_Im; Temp_Im := D04sum26del_Im - D15sum37del_Re; Data_Re (Index3) := Temp_Re*Exp6_Re - Temp_Im*Exp6_Im; Data_Im (Index3) := Temp_Re*Exp6_Im + Temp_Im*Exp6_Re; -- Inverse FFT: change sign of i: -- Sqrt_Del := a(-i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); Sqrt_Del_Re := Sqrt_Half * ( D1537sum_Im - D1537del_Re); Sqrt_Del_Im := Sqrt_Half * (-D1537sum_Re - D1537del_Im); -- Inverse FFT: change sign of i: -- Sqrt_Sum := a(-i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); Sqrt_Sum_Re := Sqrt_Half * ( D1537sum_Im + D1537del_Re); Sqrt_Sum_Im := Sqrt_Half * (-D1537sum_Re + D1537del_Im); -- Inverse FFT: change sign of i: -- D04del26sum := D04del + Im*D26del; -- Sqrt_Del := a(-i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); -- D1new := ((D0-D4) + i(D2-D6)) - Sqrt_Del) * Exp1 -- Data(Index4) := (D04del + Im*D26del - Sqrt_Del) * Exp1; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04del26sum_Re - Sqrt_del_Re; Temp_Im := D04del26sum_Im - Sqrt_del_Im; Data_Re (Index4) := Temp_Re*Exp1_Re - Temp_Im*Exp1_Im; Data_Im (Index4) := Temp_Re*Exp1_Im + Temp_Im*Exp1_Re; -- Inverse FFT: change sign of i: -- D04del26del := D04del - Im*D26del; -- Sqrt_Sum := a(-i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); -- D3new := ((D0-D4) - i(D2-D6)) - Sqrt_Sum) * Exp3; -- Data(Index6) := (D04del - Im*D26del - Sqrt_Sum) * Exp3; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04del26del_Re - Sqrt_sum_Re; Temp_Im := D04del26del_Im - Sqrt_sum_Im; Data_Re (Index6) := Temp_Re*Exp3_Re - Temp_Im*Exp3_Im; Data_Im (Index6) := Temp_Re*Exp3_Im + Temp_Im*Exp3_Re; -- D04del26sum := D04del + Im*D26del; -- D5new := ((D0-D4) + i(D2-D6)) + Sqrt_Del) * Exp5; -- Data(Index5) := (D04del + Im*D26del + Sqrt_Del) * Exp5; Temp_Re := D04del26sum_Re + Sqrt_del_Re; Temp_Im := D04del26sum_Im + Sqrt_del_Im; Data_Re (Index5) := Temp_Re*Exp5_Re - Temp_Im*Exp5_Im; Data_Im (Index5) := Temp_Re*Exp5_Im + Temp_Im*Exp5_Re; -- D04del26del := D04del - Im*D26del; -- D7new := ((D0-D4) - i(D2-D6)) + Sqrt_Sum) * Exp7; -- Data(Index7) := (D04del - Im*D26del + Sqrt_Sum) * Exp7; Temp_Re := D04del26del_Re + Sqrt_sum_Re; Temp_Im := D04del26del_Im + Sqrt_sum_Im; Data_Re (Index7) := Temp_Re*Exp7_Re - Temp_Im*Exp7_Im; Data_Im (Index7) := Temp_Re*Exp7_Im + Temp_Im*Exp7_Re; end loop; end loop; end loop; end if; -- Step 5b. Perform the last stage of the Radix 8 set if it exists. if Final_Stage_Is_A_Radix_8_Stage then Radix_8_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length / 3 - 1); for Stage in Radix_8_Stage_Last .. Radix_8_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Integer (3*Stage); Butterflies_Per_Flock := Eighth_Data / No_Of_Butterfly_Flocks; -- 1 Butterflies_Per_Flock2 := Butterflies_Per_Flock + Butterflies_Per_Flock; Butterflies_Per_Flock3 := Butterflies_Per_Flock2 + Butterflies_Per_Flock; Butterflies_Per_Flock4 := Butterflies_Per_Flock2 + Butterflies_Per_Flock2; Butterflies_Per_Flock5 := Butterflies_Per_Flock2 + Butterflies_Per_Flock3; Butterflies_Per_Flock6 := Butterflies_Per_Flock2 + Butterflies_Per_Flock4; Butterflies_Per_Flock7 := Butterflies_Per_Flock2 + Butterflies_Per_Flock5; -- Butterflies_Per_Flock is in the range Eighth_Data..1 -- No_Of_Butterfly_Flocks is in the range 1..Eighth_Data Flock_Width := 0; -- Flock width overflows if Stage = 0. if Stage > 0 then Flock_Width := 8 * Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index4 := Start_Of_Butterfly + Butterflies_Per_Flock4; D0_Re := Data_Re (Index0); D0_Im := Data_Im (Index0); D4_Re := Data_Re (Index4); D4_Im := Data_Im (Index4); D04sum_Re := D0_Re + D4_Re; D04sum_Im := D0_Im + D4_Im; D04del_Re := D0_Re - D4_Re; D04del_Im := D0_Im - D4_Im; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index6 := Start_Of_Butterfly + Butterflies_Per_Flock6; D2_Re := Data_Re (Index2); D2_Im := Data_Im (Index2); D6_Re := Data_Re (Index6); D6_Im := Data_Im (Index6); D26sum_Re := D2_Re + D6_Re; D26sum_Im := D2_Im + D6_Im; D26del_Re := D2_Re - D6_Re; D26del_Im := D2_Im - D6_Im; D04sum26sum_Re := D04sum_Re + D26sum_Re; D04sum26sum_Im := D04sum_Im + D26sum_Im; D04sum26del_Re := D04sum_Re - D26sum_Re; D04sum26del_Im := D04sum_Im - D26sum_Im; -- D04del26sum := D04del + Im*D26del; D04del26sum_Re := D04del_Re - D26del_Im; D04del26sum_Im := D04del_Im + D26del_Re; -- D04del26del := D04del - Im*D26del; D04del26del_Re := D04del_Re + D26del_Im; D04del26del_Im := D04del_Im - D26del_Re; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index5 := Start_Of_Butterfly + Butterflies_Per_Flock5; D1_Re := Data_Re (Index1); D1_Im := Data_Im (Index1); D5_Re := Data_Re (Index5); D5_Im := Data_Im (Index5); D15sum_Re := D1_Re + D5_Re; D15sum_Im := D1_Im + D5_Im; D15del_Re := D1_Re - D5_Re; D15del_Im := D1_Im - D5_Im; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Index7 := Start_Of_Butterfly + Butterflies_Per_Flock7; D3_Re := Data_Re (Index3); D3_Im := Data_Im (Index3); D7_Re := Data_Re (Index7); D7_Im := Data_Im (Index7); D37sum_Re := D3_Re + D7_Re; D37sum_Im := D3_Im + D7_Im; D37del_Re := D3_Re - D7_Re; D37del_Im := D3_Im - D7_Im; D15sum37sum_Re := D15sum_Re + D37sum_Re; D15sum37sum_Im := D15sum_Im + D37sum_Im; D15sum37del_Re := D15sum_Re - D37sum_Re; D15sum37del_Im := D15sum_Im - D37sum_Im; D1537sum_Re := D15del_Re + D37del_Re; D1537sum_Im := D15del_Im + D37del_Im; D1537del_Re := D15del_Re - D37del_Re; D1537del_Im := D15del_Im - D37del_Im; -- D0new := ((D0+D4) + (D2+D6) + ( (D1+D5) + (D3+D7))) * Exp0; -- Data(Index0) := D04sum + D26sum + D15sum + D37sum; Temp_Re := D04sum26sum_Re + D15sum37sum_Re; Temp_Im := D04sum26sum_Im + D15sum37sum_Im; Data_Re (Index0) := Temp_Re; Data_Im (Index0) := Temp_Im; -- Inverse FFT: change sign of i: -- D2new := ((D0+D4) - (D2+D6) + i*((D1+D5) - (D3+D7))) * Exp2; -- Data(Index2) := (D04sum - D26sum + Im * (D15sum - D37sum)) * Exp2; Temp_Re := D04sum26del_Re - D15sum37del_Im; Temp_Im := D04sum26del_Im + D15sum37del_Re; Data_Re (Index2) := Temp_Re; Data_Im (Index2) := Temp_Im; -- D4new := ((D0+D4) + (D2+D6) - ((D1+D5) + (D3+D7))) * Exp4; -- Data(Index1) := (D04sum + D26sum - (D15sum + D37sum)) * Exp4; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04sum26sum_Re - D15sum37sum_Re; Temp_Im := D04sum26sum_Im - D15sum37sum_Im; Data_Re (Index1) := Temp_Re; Data_Im (Index1) := Temp_Im; -- Inverse FFT: change sign of i: -- D6new := ((D0+D4) - (D2+D6) - i*((D1+D5) - (D3+D7))) * Exp6; -- Data(Index3) := (D04sum - D26sum - Im*(D15sum - D37sum)) * Exp6; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04sum26del_Re + D15sum37del_Im; Temp_Im := D04sum26del_Im - D15sum37del_Re; Data_Re (Index3) := Temp_Re; Data_Im (Index3) := Temp_Im; -- Inverse FFT: change sign of i: -- Sqrt_Del := a(-i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); Sqrt_Del_Re := Sqrt_Half * ( D1537sum_Im - D1537del_Re); Sqrt_Del_Im := Sqrt_Half * (-D1537sum_Re - D1537del_Im); -- Inverse FFT: change sign of i: -- Sqrt_Sum := a(-i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); Sqrt_Sum_Re := Sqrt_Half * ( D1537sum_Im + D1537del_Re); Sqrt_Sum_Im := Sqrt_Half * (-D1537sum_Re + D1537del_Im); -- Inverse FFT: change sign of i: -- D04del26sum := D04del + Im*D26del; -- Sqrt_Del := a(-i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); -- D1new := ((D0-D4) + i(D2-D6)) - Sqrt_Del) * Exp1 -- Data(Index4) := (D04del + Im*D26del - Sqrt_Del) * Exp1; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04del26sum_Re - Sqrt_del_Re; Temp_Im := D04del26sum_Im - Sqrt_del_Im; Data_Re (Index4) := Temp_Re; Data_Im (Index4) := Temp_Im; -- Inverse FFT: change sign of i: -- D04del26del := D04del - Im*D26del; -- Sqrt_Sum := a(-i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); -- D3new := ((D0-D4) - i(D2-D6)) - Sqrt_Sum) * Exp3; -- Data(Index6) := (D04del - Im*D26del - Sqrt_Sum) * Exp3; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04del26del_Re - Sqrt_sum_Re; Temp_Im := D04del26del_Im - Sqrt_sum_Im; Data_Re (Index6) := Temp_Re; Data_Im (Index6) := Temp_Im; -- D04del26sum := D04del + Im*D26del; -- D5new := ((D0-D4) + i(D2-D6)) + Sqrt_Del) * Exp5; -- Data(Index5) := (D04del + Im*D26del + Sqrt_Del) * Exp5; Temp_Re := D04del26sum_Re + Sqrt_del_Re; Temp_Im := D04del26sum_Im + Sqrt_del_Im; Data_Re (Index5) := Temp_Re; Data_Im (Index5) := Temp_Im; -- D04del26del := D04del - Im*D26del; -- D7new := ((D0-D4) - i(D2-D6)) + Sqrt_Sum) * Exp7; -- Data(Index7) := (D04del - Im*D26del + Sqrt_Sum) * Exp7; Temp_Re := D04del26del_Re + Sqrt_sum_Re; Temp_Im := D04del26del_Im + Sqrt_sum_Im; Data_Re (Index7) := Temp_Re; Data_Im (Index7) := Temp_Im; end loop; end loop; end loop; end if; -- Step 5b. Perform an optimized final stage: a Radix 4 stage if it -- exists. All the Exps are 1.0, optimizations reflect that. if Final_Stage_Is_A_Radix_4_Stage then --Radix_4_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length / 2 - 1); --for Stage in 0 .. Radix_4_Stage_Last loop --No_Of_Butterfly_Flocks := 2 ** Integer (2*Stage); --Butterflies_Per_Flock := Quarter_Data / No_Of_Butterfly_Flocks; No_Of_Butterfly_Flocks := Quarter_Data; Butterflies_Per_Flock := 1; Butterflies_Per_Flock2 := 2*Butterflies_Per_Flock; Butterflies_Per_Flock3 := 3*Butterflies_Per_Flock; -- here: Butterflies_Per_Flock := 1; -- here: No_Of_Butterfly_Flocks := Quarter_Data; Flock_Width := 0; -- Flock width overflows if Stage = 0. --if Stage > 0 then Flock_Width := 4 * Butterflies_Per_Flock; end if; Flock_Width := 4 * Butterflies_Per_Flock; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop -- All the Exp's equal One. for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Data02Sum_Re := Data_Re(Index0) + Data_Re(Index2); Data02Sum_Im := Data_Im(Index0) + Data_Im(Index2); Data02Del_Re := Data_Re(Index0) - Data_Re(Index2); Data02Del_Im := Data_Im(Index0) - Data_Im(Index2); Data13Sum_Re := Data_Re(Index1) + Data_Re(Index3); Data13Sum_Im := Data_Im(Index1) + Data_Im(Index3); Data13Del_Re := Data_Re(Index1) - Data_Re(Index3); Data13Del_Im := Data_Im(Index1) - Data_Im(Index3); Data_Re (Index0) := Data02sum_Re + Data13sum_Re; Data_Im (Index0) := Data02sum_Im + Data13sum_Im; Data_Re (Index1) := Data02sum_Re - Data13sum_Re; Data_Im (Index1) := Data02sum_Im - Data13sum_Im; Data_Re (Index2) := Data02del_Re - Data13del_Im; Data_Im (Index2) := Data02del_Im + Data13del_Re; Data_Re (Index3) := Data02del_Re + Data13del_Im; Data_Im (Index3) := Data02del_Im - Data13del_Re; end loop; end loop; --end loop; end if; -- Step 5c. Perform an optimized final stage, a radix 2 stage -- if it exists. In this stage Stage := Log_Of_Size_Minus_1, -- all of the twiddle factors are 1 (Exp_Fctn = (1.0, 0.0)). if Final_Stage_Is_A_Radix_2_Stage then Radix_2_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length - 1); for Stage in Radix_2_Stage_Last .. Radix_2_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Stage; Butterflies_Per_Flock := Half_Data / No_Of_Butterfly_Flocks; -- Butterflies_Per_Flock = 1, and No_Of_Butterfly_Flocks = Half_Data Flock_Width := 0; if Stage > 0 then Flock_Width := 2*Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop -- in 0..0 -- Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; -- Exp_Id := Next_Butterfly; -- Get_Exp_At (Exp_Id, Inverse_FFT_Desired, Exp1_Re, Exp1_Im); for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; DataTop_Re := Data_Re (Index0); DataTop_Im := Data_Im (Index0); DataBot_Re := Data_Re (Index1); DataBot_Im := Data_Im (Index1); -- Here is the 2 pt. FFT. Exp = (1,0) here. -- Data0 := DataTop + DataBot; -- Data1 := (DataTop - DataBot)*(Exp1_Re, Exp1_Im); Data_Re (Index0) := DataTop_Re + DataBot_Re; Data_Im (Index0) := DataTop_Im + DataBot_Im; Data_Re (Index1) := DataTop_Re - DataBot_Re; Data_Im (Index1) := DataTop_Im - DataBot_Im; end loop; end loop; end loop; end if; else -- not Inverse FFT; here inline the forward fft by hand: -- Step 5a. Perform the FFT radix 8 Stages on 0..Radix_8_Stage_Last -- Each "Butterfly" has 8 inputs on the left, and 8 outputs on the right. -- The 8 on the left (input) are at indices n, n+N/8, n+N/4, n+3N/8 etc. -- Index n is in the range 0..N/8-1, where N is the Data_Length, a power -- of 2. The output data points (on the right) are at the same points. -- The above is for stage 0. At state 1, just replace the N by N/8. -- -- The Radix 8 stage is really a series of 8 point DFT's. The Radix -- 2 stage is a series of 2 point DFT's. Want the output of a single -- Radix 8 stage to be identical to the output of 3 Radix 2 stages. -- Therefore have to make sure that the 8 x 8 DFT's produces -- bit-reversed output just like results of 3 radix 2 stages, so -- have to artifically bit-reverse the results of the 8 x 8. To bit -- reverse an 8 pt DFT, just swap items 1 and 4, and items 3 and 6. -- -- Stage 0 prepares Data so that the N pt DFT can be done by eight N/8 -- pt DFT's in stage 1. Instead of performing the 8 DFT's, Stage 1 -- prepares the Data so the eight N/8 pt DFT's can each be -- done by eight N/64 pt. DFT's in stage 2. The value N/8 in Stage=0 is -- called Butterflies_Per_Flock. Since each butterfly has 8 outputs, the -- N/8 butterflies of stage 0 comprise the entire data set. At stage 0, -- with N/8 butterflies, say Flock_Width = N and No_Of_Butterfly_Flocks = 1. -- At Stage 1, with N/64 butterflies (for each of the 8 DFT's), say -- Flock_Width = N/8, and No_Of_Butterfly_Flocks = 8. if No_Of_Preliminary_Radix_8_Stages > 0 then Radix_8_Stage_Last :=Exponent_Of_Two_Type(No_Of_Preliminary_Radix_8_Stages-1); for Stage in 0 .. Radix_8_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Integer (3*Stage); Butterflies_Per_Flock := Eighth_Data / No_Of_Butterfly_Flocks; Butterflies_Per_Flock2 := Butterflies_Per_Flock + Butterflies_Per_Flock; Butterflies_Per_Flock3 := Butterflies_Per_Flock2 + Butterflies_Per_Flock; Butterflies_Per_Flock4 := Butterflies_Per_Flock2 + Butterflies_Per_Flock2; Butterflies_Per_Flock5 := Butterflies_Per_Flock2 + Butterflies_Per_Flock3; Butterflies_Per_Flock6 := Butterflies_Per_Flock2 + Butterflies_Per_Flock4; Butterflies_Per_Flock7 := Butterflies_Per_Flock2 + Butterflies_Per_Flock5; -- Butterflies_Per_Flock is in the range Eighth_Data..1 -- No_Of_Butterfly_Flocks is in the range 1..Eighth_Data Flock_Width := 0; -- Flock width overflows if Stage = 0. if Stage > 0 then Flock_Width := 8 * Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; Exp_Id := Next_Butterfly; Exp1_Re := Exp_Table.Re(Exp_Id); Exp1_Im := Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp2_Re := Exp_Table.Re(Exp_Id); Exp2_Im := Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp3_Re := Exp_Table.Re(Exp_Id); Exp3_Im := Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; Exp4_Re := Exp_Table.Re(Exp_Id); Exp4_Im := Exp_Table.Im(Exp_Id); Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp5_Re := Exp_Table.Re(Exp_Id); Exp5_Im := Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp5_Re := -Exp_Table.Re(E_low); Exp5_Im := -Exp_Table.Im(E_low); end if; Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp6_Re := Exp_Table.Re(Exp_Id); Exp6_Im := Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp6_Re := -Exp_Table.Re(E_low); Exp6_Im := -Exp_Table.Im(E_low); end if; Exp_Id := Exp_Id + Next_Butterfly; if Exp_Id < Half_Data then Exp7_Re := Exp_Table.Re(Exp_Id); Exp7_Im := Exp_Table.Im(Exp_Id); else E_low := Exp_Id - Half_Data; Exp7_Re := -Exp_Table.Re(E_low); Exp7_Im := -Exp_Table.Im(E_low); end if; -- Next perform the 8 pt. Fourier Trans. on butterfly -- with ID = Butterfly_ID, in the Flock with ID = Flock_ID. The -- span of a flock is 8 times the number of butterflies in the -- flock. So the start of the Flock is at Flock_ID * Span, -- and add on to that Butterfly_ID to get the start of the -- desired butterfly. The index of the start of the butterfly -- is called K: -- Here is the abstract version of the inner loop, commented out. -- Below it is unrolled by hand to make it more efficient under -- gcc/gnat. -- -- -- D0new := ((D0+D4) + (D2+D6) + ( (D1+D5) + (D3+D7))) * Exp0; -- D2new := ((D0+D4) - (D2+D6) - i*( (D1+D5) - (D3+D7))) * Exp2; -- D4new := ((D0+D4) + (D2+D6) - ( (D1+D5) + (D3+D7))) * Exp4; -- D6new := ((D0+D4) - (D2+D6) + i*( (D1+D5) - (D3+D7))) * Exp6; -- -- D1new := ((D0-D4) - i(D2-D6) + a( 1-i)*(D1-D5) + a(-1-i)*(D3-D7))*Exp1; -- D3new := ((D0-D4) + i(D2-D6) + a(-1-i)*(D1-D5) + a( 1-i)*(D3-D7))*Exp3; -- D5new := ((D0-D4) - i(D2-D6) + a(-1+i)*(D1-D5) + a( 1+i)*(D3-D7))*Exp5; -- D7new := ((D0-D4) + i(D2-D6) + a( 1+i)*(D1-D5) + a(-1+i)*(D3-D7))*Exp7; -- -- The last set can be written: -- --D1new = ((D0-D4) - i(D2-D6) - a(i((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7))))*Exp1; --D3new = ((D0-D4) + i(D2-D6) - a(i((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7))))*Exp3; --D5new = ((D0-D4) - i(D2-D6) + a(i((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7))))*Exp5; --D7new = ((D0-D4) + i(D2-D6) + a(i((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7))))*Exp7; -- for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index4 := Start_Of_Butterfly + Butterflies_Per_Flock4; D0_Re := Data_Re (Index0); D0_Im := Data_Im (Index0); D4_Re := Data_Re (Index4); D4_Im := Data_Im (Index4); D04sum_Re := D0_Re + D4_Re; D04sum_Im := D0_Im + D4_Im; D04del_Re := D0_Re - D4_Re; D04del_Im := D0_Im - D4_Im; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index6 := Start_Of_Butterfly + Butterflies_Per_Flock6; D2_Re := Data_Re (Index2); D2_Im := Data_Im (Index2); D6_Re := Data_Re (Index6); D6_Im := Data_Im (Index6); D26sum_Re := D2_Re + D6_Re; D26sum_Im := D2_Im + D6_Im; D26del_Re := D2_Re - D6_Re; D26del_Im := D2_Im - D6_Im; D04sum26sum_Re := D04sum_Re + D26sum_Re; D04sum26sum_Im := D04sum_Im + D26sum_Im; D04sum26del_Re := D04sum_Re - D26sum_Re; D04sum26del_Im := D04sum_Im - D26sum_Im; -- D04del26sum := D04del + Im*D26del; D04del26sum_Re := D04del_Re - D26del_Im; D04del26sum_Im := D04del_Im + D26del_Re; -- D04del26del := D04del - Im*D26del; D04del26del_Re := D04del_Re + D26del_Im; D04del26del_Im := D04del_Im - D26del_Re; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index5 := Start_Of_Butterfly + Butterflies_Per_Flock5; D1_Re := Data_Re (Index1); D1_Im := Data_Im (Index1); D5_Re := Data_Re (Index5); D5_Im := Data_Im (Index5); D15sum_Re := D1_Re + D5_Re; D15sum_Im := D1_Im + D5_Im; D15del_Re := D1_Re - D5_Re; D15del_Im := D1_Im - D5_Im; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Index7 := Start_Of_Butterfly + Butterflies_Per_Flock7; D3_Re := Data_Re (Index3); D3_Im := Data_Im (Index3); D7_Re := Data_Re (Index7); D7_Im := Data_Im (Index7); D37sum_Re := D3_Re + D7_Re; D37sum_Im := D3_Im + D7_Im; D37del_Re := D3_Re - D7_Re; D37del_Im := D3_Im - D7_Im; D15sum37sum_Re := D15sum_Re + D37sum_Re; D15sum37sum_Im := D15sum_Im + D37sum_Im; D15sum37del_Re := D15sum_Re - D37sum_Re; D15sum37del_Im := D15sum_Im - D37sum_Im; D1537sum_Re := D15del_Re + D37del_Re; D1537sum_Im := D15del_Im + D37del_Im; D1537del_Re := D15del_Re - D37del_Re; D1537del_Im := D15del_Im - D37del_Im; -- D0new := ((D0+D4) + (D2+D6) + ((D1+D5) + (D3+D7))) * Exp0; -- Data(Index0) := D04sum + D26sum + D15sum + D37sum; Temp_Re := D04sum26sum_Re + D15sum37sum_Re; Temp_Im := D04sum26sum_Im + D15sum37sum_Im; Data_Re (Index0) := Temp_Re; Data_Im (Index0) := Temp_Im; -- D2new := ((D0+D4) - (D2+D6) - i*((D1+D5) - (D3+D7))) * Exp2; -- Data(Index2) := (D04sum - D26sum - Im * (D15sum - D37sum)) * Exp2; Temp_Re := D04sum26del_Re + D15sum37del_Im; Temp_Im := D04sum26del_Im - D15sum37del_Re; Data_Re (Index2) := Temp_Re*Exp2_Re - Temp_Im*Exp2_Im; Data_Im (Index2) := Temp_Re*Exp2_Im + Temp_Im*Exp2_Re; -- D4new := ((D0+D4) + (D2+D6) - ((D1+D5) + (D3+D7))) * Exp4; -- Data(Index1) := (D04sum + D26sum - (D15sum + D37sum)) * Exp4; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04sum26sum_Re - D15sum37sum_Re; Temp_Im := D04sum26sum_Im - D15sum37sum_Im; Data_Re (Index1) := Temp_Re*Exp4_Re - Temp_Im*Exp4_Im; Data_Im (Index1) := Temp_Re*Exp4_Im + Temp_Im*Exp4_Re; -- D6new := ((D0+D4) - (D2+D6) + i*((D1+D5) - (D3+D7))) * Exp6; -- Data(Index3) := (D04sum - D26sum + Im*(D15sum - D37sum)) * Exp6; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04sum26del_Re - D15sum37del_Im; Temp_Im := D04sum26del_Im + D15sum37del_Re; Data_Re (Index3) := Temp_Re*Exp6_Re - Temp_Im*Exp6_Im; Data_Im (Index3) := Temp_Re*Exp6_Im + Temp_Im*Exp6_Re; -- Sqrt_Del := a(i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); Sqrt_Del_Re := Sqrt_Half * (-D1537sum_Im - D1537del_Re); Sqrt_Del_Im := Sqrt_Half * ( D1537sum_Re - D1537del_Im); -- Sqrt_Sum := a(i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); Sqrt_Sum_Re := Sqrt_Half * (-D1537sum_Im + D1537del_Re); Sqrt_Sum_Im := Sqrt_Half * ( D1537sum_Re + D1537del_Im); -- D04del26del := D04del - Im*D26del; -- Sqrt_Del := a(i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); -- D1new := ((D0-D4) - i(D2-D6) - Sqrt_Del) * Exp1 -- Data(Index4) := (D04del - Im*D26del - Sqrt_Del) * Exp1; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04del26del_Re - Sqrt_del_Re; Temp_Im := D04del26del_Im - Sqrt_del_Im; Data_Re (Index4) := Temp_Re*Exp1_Re - Temp_Im*Exp1_Im; Data_Im (Index4) := Temp_Re*Exp1_Im + Temp_Im*Exp1_Re; -- D04del26sum := D04del + Im*D26del; -- Sqrt_Sum := a(i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); -- D3new := ((D0-D4) + i(D2-D6) - Sqrt_Sum) * Exp3; -- Data(Index6) := (D04del + Im*D26del - Sqrt_Sum) * Exp3; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04del26sum_Re - Sqrt_sum_Re; Temp_Im := D04del26sum_Im - Sqrt_sum_Im; Data_Re (Index6) := Temp_Re*Exp3_Re - Temp_Im*Exp3_Im; Data_Im (Index6) := Temp_Re*Exp3_Im + Temp_Im*Exp3_Re; -- D04del26del := D04del - Im*D26del; -- D5new := ((D0-D4) - i(D2-D6) + Sqrt_Del) * Exp5; -- Data(Index5) := (D04del - Im*D26del + Sqrt_Del) * Exp5; Temp_Re := D04del26del_Re + Sqrt_del_Re; Temp_Im := D04del26del_Im + Sqrt_del_Im; Data_Re (Index5) := Temp_Re*Exp5_Re - Temp_Im*Exp5_Im; Data_Im (Index5) := Temp_Re*Exp5_Im + Temp_Im*Exp5_Re; -- D04del26sum := D04del + Im*D26del; -- D7new := ((D0-D4) + i(D2-D6) + Sqrt_Sum) * Exp7; -- Data(Index7) := (D04del + Im*D26del + Sqrt_Sum) * Exp7; Temp_Re := D04del26sum_Re + Sqrt_sum_Re; Temp_Im := D04del26sum_Im + Sqrt_sum_Im; Data_Re (Index7) := Temp_Re*Exp7_Re - Temp_Im*Exp7_Im; Data_Im (Index7) := Temp_Re*Exp7_Im + Temp_Im*Exp7_Re; end loop; end loop; end loop; end if; -- Step 5b. Perform the last stage of the Radix 8 set if it exists. if Final_Stage_Is_A_Radix_8_Stage then Radix_8_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length / 3 - 1); for Stage in Radix_8_Stage_Last .. Radix_8_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Integer (3*Stage); Butterflies_Per_Flock := Eighth_Data / No_Of_Butterfly_Flocks; Butterflies_Per_Flock2 := Butterflies_Per_Flock + Butterflies_Per_Flock; Butterflies_Per_Flock3 := Butterflies_Per_Flock2 + Butterflies_Per_Flock; Butterflies_Per_Flock4 := Butterflies_Per_Flock2 + Butterflies_Per_Flock2; Butterflies_Per_Flock5 := Butterflies_Per_Flock2 + Butterflies_Per_Flock3; Butterflies_Per_Flock6 := Butterflies_Per_Flock2 + Butterflies_Per_Flock4; Butterflies_Per_Flock7 := Butterflies_Per_Flock2 + Butterflies_Per_Flock5; -- Butterflies_Per_Flock is in the range Eighth_Data..1 -- No_Of_Butterfly_Flocks is in the range 1..Eighth_Data Flock_Width := 0; -- Flock width overflows if Stage = 0. if Stage > 0 then Flock_Width := 8 * Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index4 := Start_Of_Butterfly + Butterflies_Per_Flock4; D0_Re := Data_Re (Index0); D0_Im := Data_Im (Index0); D4_Re := Data_Re (Index4); D4_Im := Data_Im (Index4); D04sum_Re := D0_Re + D4_Re; D04sum_Im := D0_Im + D4_Im; D04del_Re := D0_Re - D4_Re; D04del_Im := D0_Im - D4_Im; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index6 := Start_Of_Butterfly + Butterflies_Per_Flock6; D2_Re := Data_Re (Index2); D2_Im := Data_Im (Index2); D6_Re := Data_Re (Index6); D6_Im := Data_Im (Index6); D26sum_Re := D2_Re + D6_Re; D26sum_Im := D2_Im + D6_Im; D26del_Re := D2_Re - D6_Re; D26del_Im := D2_Im - D6_Im; D04sum26sum_Re := D04sum_Re + D26sum_Re; D04sum26sum_Im := D04sum_Im + D26sum_Im; D04sum26del_Re := D04sum_Re - D26sum_Re; D04sum26del_Im := D04sum_Im - D26sum_Im; -- D04del26sum := D04del + Im*D26del; D04del26sum_Re := D04del_Re - D26del_Im; D04del26sum_Im := D04del_Im + D26del_Re; -- D04del26del := D04del - Im*D26del; D04del26del_Re := D04del_Re + D26del_Im; D04del26del_Im := D04del_Im - D26del_Re; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index5 := Start_Of_Butterfly + Butterflies_Per_Flock5; D1_Re := Data_Re (Index1); D1_Im := Data_Im (Index1); D5_Re := Data_Re (Index5); D5_Im := Data_Im (Index5); D15sum_Re := D1_Re + D5_Re; D15sum_Im := D1_Im + D5_Im; D15del_Re := D1_Re - D5_Re; D15del_Im := D1_Im - D5_Im; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Index7 := Start_Of_Butterfly + Butterflies_Per_Flock7; D3_Re := Data_Re (Index3); D3_Im := Data_Im (Index3); D7_Re := Data_Re (Index7); D7_Im := Data_Im (Index7); D37sum_Re := D3_Re + D7_Re; D37sum_Im := D3_Im + D7_Im; D37del_Re := D3_Re - D7_Re; D37del_Im := D3_Im - D7_Im; D15sum37sum_Re := D15sum_Re + D37sum_Re; D15sum37sum_Im := D15sum_Im + D37sum_Im; D15sum37del_Re := D15sum_Re - D37sum_Re; D15sum37del_Im := D15sum_Im - D37sum_Im; D1537sum_Re := D15del_Re + D37del_Re; D1537sum_Im := D15del_Im + D37del_Im; D1537del_Re := D15del_Re - D37del_Re; D1537del_Im := D15del_Im - D37del_Im; -- D0new := ((D0+D4) + (D2+D6) + ((D1+D5) + (D3+D7))) * Exp0; -- Data(Index0) := D04sum + D26sum + D15sum + D37sum; Temp_Re := D04sum26sum_Re + D15sum37sum_Re; Temp_Im := D04sum26sum_Im + D15sum37sum_Im; Data_Re (Index0) := Temp_Re; Data_Im (Index0) := Temp_Im; -- D2new := ((D0+D4) - (D2+D6) - i*((D1+D5) - (D3+D7))) * Exp2; -- Data(Index2) := (D04sum - D26sum - Im * (D15sum - D37sum)) * Exp2; Temp_Re := D04sum26del_Re + D15sum37del_Im; Temp_Im := D04sum26del_Im - D15sum37del_Re; Data_Re (Index2) := Temp_Re; Data_Im (Index2) := Temp_Im; -- D4new := ((D0+D4) + (D2+D6) - ((D1+D5) + (D3+D7))) * Exp4; -- Data(Index1) := (D04sum + D26sum - (D15sum + D37sum)) * Exp4; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04sum26sum_Re - D15sum37sum_Re; Temp_Im := D04sum26sum_Im - D15sum37sum_Im; Data_Re (Index1) := Temp_Re; Data_Im (Index1) := Temp_Im; -- D6new := ((D0+D4) - (D2+D6) + i*((D1+D5) - (D3+D7))) * Exp6; -- Data(Index3) := (D04sum - D26sum + Im*(D15sum - D37sum)) * Exp6; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04sum26del_Re - D15sum37del_Im; Temp_Im := D04sum26del_Im + D15sum37del_Re; Data_Re (Index3) := Temp_Re; Data_Im (Index3) := Temp_Im; -- Sqrt_Del := a(i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); Sqrt_Del_Re := Sqrt_Half * (-D1537sum_Im - D1537del_Re); Sqrt_Del_Im := Sqrt_Half * ( D1537sum_Re - D1537del_Im); -- Sqrt_Sum := a(i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); Sqrt_Sum_Re := Sqrt_Half * (-D1537sum_Im + D1537del_Re); Sqrt_Sum_Im := Sqrt_Half * ( D1537sum_Re + D1537del_Im); -- D04del26del := D04del - Im*D26del; -- Sqrt_Del := a(i*((D1-D5)+(D3-D7)) - ((D1-D5)-(D3-D7)); -- D1new := ((D0-D4) - i(D2-D6) - Sqrt_Del) * Exp1 -- Data(Index4) := (D04del - Im*D26del - Sqrt_Del) * Exp1; -- To bit reverse the 8 x 8 DFT, swap items 4 and 1: Temp_Re := D04del26del_Re - Sqrt_del_Re; Temp_Im := D04del26del_Im - Sqrt_del_Im; Data_Re (Index4) := Temp_Re; Data_Im (Index4) := Temp_Im; -- D04del26sum := D04del + Im*D26del; -- Sqrt_Sum := a(i*((D1-D5)+(D3-D7)) + ((D1-D5)-(D3-D7)); -- D3new := ((D0-D4) + i(D2-D6) - Sqrt_Sum) * Exp3; -- Data(Index6) := (D04del + Im*D26del - Sqrt_Sum) * Exp3; -- To bit reverse the 8 x 8 DFT, swap items 6 and 3: Temp_Re := D04del26sum_Re - Sqrt_sum_Re; Temp_Im := D04del26sum_Im - Sqrt_sum_Im; Data_Re (Index6) := Temp_Re; Data_Im (Index6) := Temp_Im; -- D04del26del := D04del - Im*D26del; -- D5new := ((D0-D4) - i(D2-D6) + Sqrt_Del) * Exp5; -- Data(Index5) := (D04del - Im*D26del + Sqrt_Del) * Exp5; Temp_Re := D04del26del_Re + Sqrt_del_Re; Temp_Im := D04del26del_Im + Sqrt_del_Im; Data_Re (Index5) := Temp_Re; Data_Im (Index5) := Temp_Im; -- D04del26sum := D04del + Im*D26del; -- D7new := ((D0-D4) + i(D2-D6) + Sqrt_Sum) * Exp7; -- Data(Index7) := (D04del + Im*D26del + Sqrt_Sum) * Exp7; Temp_Re := D04del26sum_Re + Sqrt_sum_Re; Temp_Im := D04del26sum_Im + Sqrt_sum_Im; Data_Re (Index7) := Temp_Re; Data_Im (Index7) := Temp_Im; end loop; end loop; end loop; end if; -- Step 5b. Perform an optimized final stage: a Radix 4 stage if it -- exists. All the Exps are 1.0, optimizations reflect that. if Final_Stage_Is_A_Radix_4_Stage then --Radix_4_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length / 2 - 1); --for Stage in 0 .. Radix_4_Stage_Last loop --No_Of_Butterfly_Flocks := 2 ** Integer (2*Stage); --Butterflies_Per_Flock := Quarter_Data / No_Of_Butterfly_Flocks; No_Of_Butterfly_Flocks := Quarter_Data; Butterflies_Per_Flock := 1; Butterflies_Per_Flock2 := 2*Butterflies_Per_Flock; Butterflies_Per_Flock3 := 3*Butterflies_Per_Flock; -- here: Butterflies_Per_Flock := 1; -- here: No_Of_Butterfly_Flocks := Quarter_Data; Flock_Width := 0; -- Flock width overflows if Stage = 0. --if Stage > 0 then Flock_Width := 4 * Butterflies_Per_Flock; end if; Flock_Width := 4 * Butterflies_Per_Flock; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop -- All the Exp's equal One. for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; Index2 := Start_Of_Butterfly + Butterflies_Per_Flock2; Index3 := Start_Of_Butterfly + Butterflies_Per_Flock3; Data02Sum_Re := Data_Re(Index0) + Data_Re(Index2); Data02Sum_Im := Data_Im(Index0) + Data_Im(Index2); Data02Del_Re := Data_Re(Index0) - Data_Re(Index2); Data02Del_Im := Data_Im(Index0) - Data_Im(Index2); Data13Sum_Re := Data_Re(Index1) + Data_Re(Index3); Data13Sum_Im := Data_Im(Index1) + Data_Im(Index3); Data13Del_Re := Data_Re(Index1) - Data_Re(Index3); Data13Del_Im := Data_Im(Index1) - Data_Im(Index3); Data_Re (Index0) := Data02sum_Re + Data13sum_Re; Data_Im (Index0) := Data02sum_Im + Data13sum_Im; Data_Re (Index1) := Data02sum_Re - Data13sum_Re; Data_Im (Index1) := Data02sum_Im - Data13sum_Im; Data_Re (Index2) := Data02del_Re + Data13del_Im; Data_Im (Index2) := Data02del_Im - Data13del_Re; Data_Re (Index3) := Data02del_Re - Data13del_Im; Data_Im (Index3) := Data02del_Im + Data13del_Re; end loop; end loop; --end loop; end if; -- Step 5c. Perform an optimized final stage, a radix 2 stage -- if it exists. In this stage Stage := Log_Of_Size_Minus_1, -- all of the twiddle factors are 1 (Exp_Fctn = (1.0, 0.0)). if Final_Stage_Is_A_Radix_2_Stage then Radix_2_Stage_Last := Exponent_Of_Two_Type(Log_Of_Data_Length - 1); for Stage in Radix_2_Stage_Last .. Radix_2_Stage_Last loop No_Of_Butterfly_Flocks := 2 ** Stage; Butterflies_Per_Flock := Half_Data / No_Of_Butterfly_Flocks; -- Butterflies_Per_Flock = 1, and No_Of_Butterfly_Flocks = Half_Data Flock_Width := 0; if Stage > 0 then Flock_Width := 2*Butterflies_Per_Flock; end if; for Butterfly_ID in 0 .. Butterflies_Per_Flock-1 loop -- in 0..0 -- Next_Butterfly := No_Of_Butterfly_Flocks * Butterfly_ID; -- Exp_Id := Next_Butterfly; -- Get_Exp_At (Exp_Id, Inverse_FFT_Desired, Exp1_Re, Exp1_Im); for Flock_ID in 0 .. No_Of_Butterfly_Flocks-1 loop Start_Of_Flock := Flock_ID * Flock_Width; Start_Of_Butterfly := Start_Of_Flock + Butterfly_ID; Index0 := Start_Of_Butterfly; Index1 := Start_Of_Butterfly + Butterflies_Per_Flock; DataTop_Re := Data_Re (Index0); DataTop_Im := Data_Im (Index0); DataBot_Re := Data_Re (Index1); DataBot_Im := Data_Im (Index1); -- Here is the 2 pt. FFT. Exp = (1,0) here. -- Data0 := DataTop + DataBot; -- Data1 := (DataTop - DataBot)*(Exp1_Re, Exp1_Im); Data_Re (Index0) := DataTop_Re + DataBot_Re; Data_Im (Index0) := DataTop_Im + DataBot_Im; Data_Re (Index1) := DataTop_Re - DataBot_Re; Data_Im (Index1) := DataTop_Im - DataBot_Im; end loop; end loop; end loop; end if; end if; -- not inverse fft if Normalized_Data_Desired then NormalizationFactor := 1.0 / SQRT (Real(Padded_Data_Index_Last)+1.0); for K in 0..Padded_Data_Index_Last loop Data_Re (K) := Data_Re (K) * NormalizationFactor; end loop; for K in 0..Padded_Data_Index_Last loop Data_Im (K) := Data_Im (K) * NormalizationFactor; end loop; end if; if Bit_Reversal_Desired then Get_Bit_Reversal_Of (Data_Re => Data_Re, Data_Im => Data_Im, Two_To_The_Top_Bit => Half_Data, Half_Two_To_The_Top_Bit => Quarter_Data, Quarter_Two_To_The_Top_Bit => Eighth_Data, Top_Bit => Log_Of_Data_Length_Minus_1); end if; Transformed_Data_Last := Padded_Data_Index_Last; end FFT; end Fourier8;
41.854128
88
0.60102
3dd6696ef19408e2b2e6605d6e2a3b02d0ef0603
1,054
ads
Ada
src/search.ads
stcarrez/ada-search
286dda8fbdd7fb0cd5e447347f92a77e34615089
[ "Apache-2.0" ]
9
2020-06-28T11:00:30.000Z
2021-11-30T21:38:58.000Z
src/search.ads
stcarrez/ada-search
286dda8fbdd7fb0cd5e447347f92a77e34615089
[ "Apache-2.0" ]
null
null
null
src/search.ads
stcarrez/ada-search
286dda8fbdd7fb0cd5e447347f92a77e34615089
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- search -- Search engine -- Copyright (C) 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; package Search is use Ada.Strings.Unbounded; subtype UString is Unbounded_String; function To_UString (S : String) return UString renames To_Unbounded_String; end Search;
36.344828
76
0.637571
2ece4539f4c193ab3ce3cc60f25565907fd66c03
17,808
adb
Ada
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer.bind.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-06-18T16:51:39.000Z
2020-06-18T16:51:39.000Z
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer.bind.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
null
null
null
apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer.bind.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-03-18T00:43:22.000Z
2020-03-18T00:43:22.000Z
<?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>linebuffer</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>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>out_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>72</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>2</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</fileDirectory> <lineNumber>403</lineNumber> <contextFuncName>linebuffer_2D&amp;lt;4, 4, 1, 1, 1, 1, 3, 3, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</first> <second class_id="11" tracking_level="0" version="0"> <count>4</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>linebuffer&amp;lt;4, 4, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>530</second> </item> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer_2D&amp;lt;4, 4, 1, 1, 1, 1, 3, 3, unsigned char&amp;gt;</second> </first> <second>403</second> </item> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer_3D&amp;lt;4, 4, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>492</second> </item> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer_4D&amp;lt;4, 4, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>505</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>16</item> <item>17</item> <item>18</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</fileDirectory> <lineNumber>531</lineNumber> <contextFuncName>linebuffer&amp;lt;4, 4, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;4, 4, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>531</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>2</type> <id>15</id> <name>call</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:call&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_6"> <Obj> <type>3</type> <id>14</id> <name>linebuffer</name> <fileName></fileName> <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>12</item> <item>13</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_7"> <id>16</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_8"> <id>17</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_9"> <id>18</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>12</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_10"> <mId>1</mId> <mTag>linebuffer</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>14</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>33</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_11"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_12"> <type>0</type> <name>call_U0</name> <ssdmobj_id>12</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_13"> <port class_id="29" tracking_level="1" version="0" object_id="_14"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_15"> <type>0</type> <name>call_U0</name> <ssdmobj_id>12</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_16"> <port class_id_reference="29" object_id="_17"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_15"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </channel_list> <net_list class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="33" tracking_level="1" version="0" object_id="_18"> <states class_id="34" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="35" tracking_level="1" version="0" object_id="_19"> <id>1</id> <operations class_id="36" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="37" tracking_level="1" version="0" object_id="_20"> <id>12</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="35" object_id="_21"> <id>2</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="37" object_id="_22"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_23"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_24"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_25"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_26"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_27"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_28"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_29"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_30"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="37" object_id="_31"> <id>12</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="37" object_id="_32"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="38" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="39" tracking_level="1" version="0" object_id="_33"> <inState>1</inState> <outState>2</outState> <condition class_id="40" tracking_level="0" version="0"> <id>0</id> <sop class_id="41" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="44" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>12</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="47" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>14</first> <second class_id="49" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="50" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="51" tracking_level="1" version="0" object_id="_34"> <region_name>linebuffer</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>14</item> </basic_blocks> <nodes> <count>11</count> <item_version>0</item_version> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="52" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>36</first> <second> <count>2</count> <item_version>0</item_version> <item>12</item> <item>12</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="55" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>1</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>grp_call_fu_36</first> <second> <count>2</count> <item_version>0</item_version> <item>12</item> <item>12</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="57" 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="58" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> <item> <first>out_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="60" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="61" 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>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
29.630616
137
0.609782
2ee0ca77e35250e68185571a946782f7258992db
1,634
adb
Ada
src/commands-create.adb
GLADORG/glad-cli
d6a804ea51b52d84bf590f061e05f404787a79f2
[ "MIT" ]
null
null
null
src/commands-create.adb
GLADORG/glad-cli
d6a804ea51b52d84bf590f061e05f404787a79f2
[ "MIT" ]
3
2021-09-03T16:44:49.000Z
2021-09-03T16:45:24.000Z
src/commands-create.adb
GLADORG/glad-cli
d6a804ea51b52d84bf590f061e05f404787a79f2
[ "MIT" ]
null
null
null
with Ada.Text_IO; with Ada.Directories; with Ada.Containers.Vectors; with Init_Project; with Blueprint; use Blueprint; package body Commands.Create is package IO renames Ada.Text_IO; package TT renames CLIC.TTY; package Dir renames Ada.Directories; use Ada.Directories; use Ada.Containers; ------------- -- Execute -- ------------- overriding procedure Execute ( Cmd : in out Command; Args : AAA.Strings.Vector) is begin if Args.Length > 0 then declare Path : String := Args.First_Element; ToDo : Action := Write; begin if Cmd.Dry_Run then IO.Put_Line(TT.Emph("You specified the dry-run flag, so no changes will be written.")); ToDo := DryRun; end if; if not Dir.Exists(Path) then if ToDo = Write then Dir.Create_Directory(Path); end if; end if; if Dir.Kind(Path) = Ada.Directories.Directory then Init_Project.Init(Path,ToDo); else IO.Put_Line(TT.Error(Path & " exists and is not a directory.")); end if; end; else IO.Put_Line(TT.Error("Command requires a project name to be specified.")); end if; end Execute; -------------------- -- Setup_Switches -- -------------------- overriding procedure Setup_Switches (Cmd : in out Command; Config : in out CLIC.Subcommand.Switches_Configuration) is use CLIC.Subcommand; begin Define_Switch (Config, Cmd.Dry_Run'Access, "", "-dry-run", "Dry-run"); end Setup_Switches; end Commands.Create;
23.681159
97
0.587515
c700f941683287c03b984a5e5ccaa20674fea3f3
1,000
ads
Ada
source/oasis/program-elements-others_choices.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/oasis/program-elements-others_choices.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/oasis/program-elements-others_choices.ads
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
1
2019-10-16T09:05:27.000Z
2019-10-16T09:05:27.000Z
-- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Definitions; with Program.Lexical_Elements; package Program.Elements.Others_Choices is pragma Pure (Program.Elements.Others_Choices); type Others_Choice is limited interface and Program.Elements.Definitions.Definition; type Others_Choice_Access is access all Others_Choice'Class with Storage_Size => 0; type Others_Choice_Text is limited interface; type Others_Choice_Text_Access is access all Others_Choice_Text'Class with Storage_Size => 0; not overriding function To_Others_Choice_Text (Self : in out Others_Choice) return Others_Choice_Text_Access is abstract; not overriding function Others_Token (Self : Others_Choice_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Others_Choices;
29.411765
72
0.732
1a210dd52b0b1441490e584bc63370733148713b
4,035
ads
Ada
source/amf/uml/amf-uml-clear_variable_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-clear_variable_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-clear_variable_actions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 clear variable action is a variable action that removes all values of a -- variable. ------------------------------------------------------------------------------ with AMF.UML.Variable_Actions; package AMF.UML.Clear_Variable_Actions is pragma Preelaborate; type UML_Clear_Variable_Action is limited interface and AMF.UML.Variable_Actions.UML_Variable_Action; type UML_Clear_Variable_Action_Access is access all UML_Clear_Variable_Action'Class; for UML_Clear_Variable_Action_Access'Storage_Size use 0; end AMF.UML.Clear_Variable_Actions;
64.047619
78
0.428005
3d829802fe071437343c6f658856728958451889
10,677
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c67002d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c67002d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c6/c67002d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C67002D.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 ALL OPERATOR SYMBOLS CAN BE USED IN (OVERLOADED) -- FUNCTION SPECIFICATIONS WITH THE REQUIRED NUMBER OF PARAMETERS. -- THIS TEST CHECKS GENERIC INSTANTIATIONS FOR THESE FUNCTIONS. -- SUBTESTS ARE: -- (A) THROUGH (P): "=", "AND", "OR", "XOR", "<", "<=", -- ">", ">=", "&", "*", "/", "MOD", "REM", "**", "+", "-", -- RESPECTIVELY. ALL OF THESE HAVE TWO PARAMETERS. -- (Q), (R), (S), AND (T): "+", "-", "NOT", "ABS", RESPECTIVELY, -- WITH ONE PARAMETER. -- CPP 6/25/84 WITH REPORT; USE REPORT; PROCEDURE C67002D IS GENERIC TYPE ELEMENT IS (<>); FUNCTION TWO_PARAMS (I1, I2 : ELEMENT) RETURN CHARACTER; FUNCTION TWO_PARAMS (I1, I2 : ELEMENT) RETURN CHARACTER IS BEGIN IF I1 > I2 THEN RETURN 'G'; ELSE RETURN 'L'; END IF; END TWO_PARAMS; GENERIC TYPE ELEMENT IS (<>); FUNCTION ONE_PARAM (I1 : ELEMENT) RETURN CHARACTER; FUNCTION ONE_PARAM (I1 : ELEMENT) RETURN CHARACTER IS BEGIN IF I1 < ELEMENT'VAL(IDENT_INT(0)) THEN RETURN 'N'; ELSE RETURN 'P'; END IF; END ONE_PARAM; BEGIN TEST ("C67002D", "USE OF OPERATOR SYMBOLS IN " & "(OVERLOADED) FUNCTION SPECIFICATIONS"); ------------------------------------------------- DECLARE -- (A) GENERIC TYPE LP IS LIMITED PRIVATE; WITH FUNCTION ">" (L, R : LP) RETURN BOOLEAN IS <>; PACKAGE PKG IS LP1, LP2 : LP; FUNCTION "=" (LPA, LPB : LP) RETURN BOOLEAN; END PKG; PACKAGE BODY PKG IS FUNCTION "=" (LPA, LPB : LP) RETURN BOOLEAN IS BEGIN RETURN LPA > LPB; END "="; END PKG; BEGIN -- (A) DECLARE PACKAGE PACK IS NEW PKG (LP => INTEGER); USE PACK; FUNCTION "=" (L, R : INTEGER) RETURN BOOLEAN RENAMES PACK."="; BEGIN LP1 := IDENT_INT(7); LP2 := IDENT_INT(8); IF (LP1 = LP2) OR NOT (LP2 = LP1) OR (LP1 = LP1) OR (LP2 /= LP1) THEN FAILED ("OVERLOADING OF ""="" OPERATOR DEFECTIVE"); END IF; END; END; -- (A) ------------------------------------------------- DECLARE -- (B) FUNCTION "AND" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (B) IF (IDENT_INT (10) AND 1) /= 'G' OR (5 AND 10) /= 'L' THEN FAILED ("OVERLOADING OF ""AND"" OPERATOR DEFECTIVE"); END IF; END; -- (B) ------------------------------------------------- DECLARE -- (C) FUNCTION "OR" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (C) IF (IDENT_INT (10) OR 1) /= 'G' OR (5 OR 10) /= 'L' THEN FAILED ("OVERLOADING OF ""OR"" OPERATOR DEFECTIVE"); END IF; END; -- (C) ------------------------------------------------- DECLARE -- (D) FUNCTION "XOR" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (D) IF (IDENT_INT (10) XOR 1) /= 'G' OR (5 XOR 10) /= 'L' THEN FAILED ("OVERLOADING OF ""XOR"" OPERATOR DEFECTIVE"); END IF; END; -- (D) ------------------------------------------------- DECLARE -- (E) FUNCTION "<" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (E) IF (IDENT_INT (10) < 1) /= 'G' OR (5 < 10) /= 'L' THEN FAILED ("OVERLOADING OF ""<"" OPERATOR DEFECTIVE"); END IF; END; -- (E) ------------------------------------------------- DECLARE -- (F) FUNCTION "<=" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (F) IF (IDENT_INT (10) <= 1) /= 'G' OR (5 <= 10) /= 'L' THEN FAILED ("OVERLOADING OF ""<="" OPERATOR DEFECTIVE"); END IF; END; -- (F) ------------------------------------------------- DECLARE -- (G) FUNCTION ">" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (G) IF (IDENT_INT (10) > 1) /= 'G' OR (5 > 10) /= 'L' THEN FAILED ("OVERLOADING OF "">"" OPERATOR DEFECTIVE"); END IF; END; -- (G) ------------------------------------------------- DECLARE -- (H) FUNCTION ">=" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (H) IF (IDENT_INT (10) >= 1) /= 'G' OR (5 >= 10) /= 'L' THEN FAILED ("OVERLOADING OF "">="" OPERATOR DEFECTIVE"); END IF; END; -- (H) ------------------------------------------------- DECLARE -- (I) FUNCTION "&" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (I) IF (IDENT_INT (10) & 1) /= 'G' OR (5 & 10) /= 'L' THEN FAILED ("OVERLOADING OF ""&"" OPERATOR DEFECTIVE"); END IF; END; -- (I) ------------------------------------------------- DECLARE -- (J) FUNCTION "*" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (J) IF (IDENT_INT (10) * 1) /= 'G' OR (5 * 10) /= 'L' THEN FAILED ("OVERLOADING OF ""*"" OPERATOR DEFECTIVE"); END IF; END; -- (J) ------------------------------------------------- DECLARE -- (K) FUNCTION "/" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (K) IF (IDENT_INT (10) / 1) /= 'G' OR (5 / 10) /= 'L' THEN FAILED ("OVERLOADING OF ""/"" OPERATOR DEFECTIVE"); END IF; END; -- (K) ------------------------------------------------- DECLARE -- (L) FUNCTION "MOD" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (L) IF (IDENT_INT (10) MOD 1) /= 'G' OR (5 MOD 10) /= 'L' THEN FAILED ("OVERLOADING OF ""MOD"" OPERATOR DEFECTIVE"); END IF; END; -- (L) ------------------------------------------------- DECLARE -- (M) FUNCTION "REM" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (M) IF (IDENT_INT (10) REM 1) /= 'G' OR (5 REM 10) /= 'L' THEN FAILED ("OVERLOADING OF ""REM"" OPERATOR DEFECTIVE"); END IF; END; -- (M) ------------------------------------------------- DECLARE -- (N) FUNCTION "**" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (N) IF (IDENT_INT (10) ** 1) /= 'G' OR (5 ** 10) /= 'L' THEN FAILED ("OVERLOADING OF ""**"" OPERATOR DEFECTIVE"); END IF; END; -- (N) ------------------------------------------------- DECLARE -- (O) FUNCTION "+" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (O) IF (IDENT_INT (10) + 1) /= 'G' OR (5 + 10) /= 'L' THEN FAILED ("OVERLOADING OF ""+"" OPERATOR DEFECTIVE"); END IF; END; -- (O) ------------------------------------------------- DECLARE -- (P) FUNCTION "-" IS NEW TWO_PARAMS (ELEMENT => INTEGER); BEGIN -- (P) IF (IDENT_INT (10) - 1) /= 'G' OR (5 - 10) /= 'L' THEN FAILED ("OVERLOADING OF ""-"" OPERATOR DEFECTIVE"); END IF; END; -- (P) ------------------------------------------------- DECLARE -- (Q) FUNCTION "+" IS NEW ONE_PARAM (ELEMENT => INTEGER); BEGIN -- (Q) IF (+ IDENT_INT(25) /= 'P') OR (+ (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""+"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END; -- (Q) ------------------------------------------------- DECLARE -- (R) FUNCTION "-" IS NEW ONE_PARAM (ELEMENT => INTEGER); BEGIN -- (R) IF (- IDENT_INT(25) /= 'P') OR (- (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""-"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END; -- (R) ------------------------------------------------- DECLARE -- (S) FUNCTION "NOT" IS NEW ONE_PARAM (ELEMENT => INTEGER); BEGIN -- (S) IF (NOT IDENT_INT(25) /= 'P') OR (NOT (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""NOT"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END; -- (S) ------------------------------------------------- DECLARE -- (T) FUNCTION "ABS" IS NEW ONE_PARAM (ELEMENT => INTEGER); BEGIN -- (T) IF (ABS IDENT_INT(25) /= 'P') OR (ABS (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""ABS"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END; -- (T) ------------------------------------------------- RESULT; END C67002D;
30.076056
79
0.412101
22e72d374e3df775771ca32a7138b0952835b754
3,446
adb
Ada
src/bbqueue-buffers.adb
skade/bbqueue-spark
a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd
[ "MIT" ]
8
2020-12-19T00:55:03.000Z
2021-08-10T22:12:14.000Z
src/bbqueue-buffers.adb
skade/bbqueue-spark
a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd
[ "MIT" ]
1
2022-02-15T10:41:18.000Z
2022-02-15T10:41:18.000Z
src/bbqueue-buffers.adb
skade/bbqueue-spark
a39f7f6ef9e2b027c4f68b17e70989ef57dbebcd
[ "MIT" ]
2
2021-08-11T17:00:13.000Z
2022-01-13T17:58:23.000Z
package body BBqueue.Buffers with SPARK_Mode is function Get_Addr (This : Buffer; Offset : Buffer_Offset) return System.Address with Pre => Offset in 0 .. This.Buf'Last - 1; -------------- -- Get_Addr -- -------------- function Get_Addr (This : Buffer; Offset : Buffer_Offset) return System.Address is pragma SPARK_Mode (Off); begin return This.Buf (This.Buf'First + Offset)'Address; end Get_Addr; ----------- -- Grant -- ----------- procedure Grant (This : in out Buffer; G : in out Write_Grant; Size : Count) is begin BBqueue.Grant (This.Offsets, G.Offsets_Grant, Size); if G.Offsets_Grant.Result = Valid then G.Slice.Length := G.Offsets_Grant.Slice.Length; G.Slice.Addr := Get_Addr (This, G.Offsets_Grant.Slice.From); end if; end Grant; ------------ -- Commit -- ------------ procedure Commit (This : in out Buffer; G : in out Write_Grant; Size : Count := Count'Last) is begin BBqueue.Commit (This.Offsets, G.Offsets_Grant, Size); end Commit; -------------- -- Write_CB -- -------------- procedure Write_CB (This : in out Buffer; Size : Count; Result : out Result_Kind) is G : Write_Grant := Empty; begin Grant (This, G, Size); Result := State (G); if Result = Valid then declare S : constant BBqueue.Slice_Rec := BBqueue.Slice (G.Offsets_Grant); B : Storage_Array renames This.Buf; To_Commit : Count; begin Process_Write (B (B'First + S.From .. B'First + S.To), To_Commit); Commit (This, G, To_Commit); pragma Assert (State (G) = Empty); end; end if; end Write_CB; ---------- -- Read -- ---------- procedure Read (This : in out Buffer; G : in out Read_Grant; Max : Count := Count'Last) is begin BBqueue.Read (This.Offsets, G.Offsets_Grant, Max); if G.Offsets_Grant.Result = Valid then G.Slice.Length := G.Offsets_Grant.Slice.Length; G.Slice.Addr := Get_Addr (This, G.Offsets_Grant.Slice.From); end if; end Read; ------------- -- Release -- ------------- procedure Release (This : in out Buffer; G : in out Read_Grant; Size : Count := Count'Last) is begin BBqueue.Release (This.Offsets, G.Offsets_Grant, Size); end Release; ------------- -- Read_CB -- ------------- procedure Read_CB (This : in out Buffer; Result : out Result_Kind) is pragma SPARK_Mode (Off); G : Read_Grant := Empty; begin Read (This, G); Result := State (G); if Result = Valid then declare S : constant BBqueue.Slice_Rec := BBqueue.Slice (G.Offsets_Grant); B : Storage_Array renames This.Buf; To_Release : Count; begin Process_Read (B (B'First + S.From .. B'First + S.To), To_Release); Release (This, G, To_Release); pragma Assert (State (G) = Empty); end; end if; end Read_CB; end BBqueue.Buffers;
24.791367
79
0.50029
c792da91bd960d3d2ae982840a9d521b26d05908
3,124
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/sem_vfpt.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/sem_vfpt.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/sem_vfpt.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ V F P T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1997 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains specialized routines for handling the Alpha -- floating point formats. It is used only in Alpha implementations. -- Note that this means that the caller can assume that we are on an -- Alpha implementation, and that Vax floating-point formats are valid. with Types; use Types; package Sem_VFpt is procedure Set_D_Float (E : Entity_Id); -- Sets the given floating-point entity to have Vax D_Float format procedure Set_F_Float (E : Entity_Id); -- Sets the given floating-point entity to have Vax F_Float format procedure Set_G_Float (E : Entity_Id); -- Sets the given floating-point entity to have Vax G_Float format procedure Set_IEEE_Short (E : Entity_Id); -- Sets the given floating-point entity to have IEEE Short format procedure Set_IEEE_Long (E : Entity_Id); -- Sets the given floating-point entity to have IEEE Long format procedure Set_Standard_Fpt_Formats; -- This procedure sets the appropriate formats for the standard -- floating-point types in Standard, based on the setting of -- the flags Opt.Float_Format and Opt.Float_Format_Long end Sem_VFpt;
54.807018
78
0.503521
1ad6566511b760f8fe4b242b34875002da918174
3,910
adb
Ada
applet/aide/source/editors/aide-editor-of_context.adb
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
3
2017-04-29T14:25:22.000Z
2017-09-29T10:15:28.000Z
applet/aide/source/editors/aide-editor-of_context.adb
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
applet/aide/source/editors/aide-editor-of_context.adb
charlie5/aIDE
fab406dbcd9b72a4cb215ffebb05166c788d6365
[ "MIT" ]
null
null
null
with Glib, glib.Error, gtk.Builder, gtk.Handlers, AdaM.context_Line, aIDE.Editor.of_context_line; package body aIDE.Editor.of_context is use gtk.Builder, Glib, Glib.Error; function on_context_Label_clicked (the_Label : access Gtk_Label_Record'Class; Self : in aIDE.Editor.of_context.view) return Boolean is pragma Unreferenced (the_Label); use AdaM; the_Line : constant AdaM.context_Line .view := AdaM.context_Line.new_context_Line ("anon"); the_Line_Editor : constant aIDE.Editor.of_context_line.view := Editor.of_context_line.Forge.to_context_line_Editor (Self.Context, the_Line); begin the_Line_Editor.top_Widget.reparent (Self.context_lines_Box); Self.Context.add (the_Line); return False; end on_context_Label_clicked; package Label_return_Callbacks is new Gtk.Handlers.User_Return_Callback (Gtk_Label_Record, Boolean, aIDE.Editor.of_context.view); package body Forge is function to_context_Editor (the_Context : in AdaM.Context.view) return View is Self : constant Editor.of_context.view := new Editor.of_context.item; the_Builder : Gtk_Builder; Error : aliased GError; Result : Guint; pragma Unreferenced (Result); begin Gtk_New (the_Builder); Result := the_Builder.Add_From_File ("glade/editor/context_editor.glade", Error'Access); if Error /= null then Error_Free (Error); end if; Self.Top := gtk_Frame (the_Builder.get_Object ("top_Frame")); Self.context_Label := gtk_Label (the_Builder.get_Object ("context_Label")); Self.context_lines_Box := gtk_Box (the_Builder.get_Object ("context_lines_Box")); Label_return_Callbacks.Connect (Self.context_Label, "button-release-event", on_context_Label_clicked'Access, Self); Self.Context := the_Context; Self.freshen; return Self; end to_context_Editor; end Forge; procedure Context_is (Self : in out Item; Now : in AdaM.Context.view) is begin Self.Context := Now; Self.freshen; end Context_is; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget is begin return gtk.Widget.Gtk_Widget (Self.Top); end top_Widget; overriding procedure freshen (Self : in out Item) is the_Lines : constant AdaM.context_Line.Vector := Self.Context.Lines; begin loop declare the_Child : constant gtk_Widget := Self.context_lines_Box.Get_Child (0); begin exit when the_Child = null; the_Child.destroy; end; end loop; for i in 1 .. Integer (the_Lines.Length) loop declare the_Line : AdaM.context_line .view renames the_Lines.Element (i); the_Line_Editor : constant aIDE.Editor.of_context_line.view := Editor.of_context_line.Forge.to_context_line_Editor (Self.Context, the_Line); begin the_Line_Editor.top_Widget.reparent (Self.context_lines_Box); end; end loop; end freshen; end aIDE.Editor.of_context;
31.532258
148
0.546547
3d0aa9cb672437ea6721e56628dace42ae7a32af
9,435
adb
Ada
b2stest/spark_io.adb
lkujaw/ada-blake2
e661083c765000d5ed4e4d8e09c49b46db83641c
[ "MIT-0" ]
1
2021-11-03T00:38:59.000Z
2021-11-03T00:38:59.000Z
b2stest/spark_io.adb
lkujaw/ada-blake2
e661083c765000d5ed4e4d8e09c49b46db83641c
[ "MIT-0" ]
1
2021-09-24T04:42:58.000Z
2021-09-29T12:21:22.000Z
b2stest/spark_io.adb
lkujaw/blake2s
e661083c765000d5ed4e4d8e09c49b46db83641c
[ "MIT-0" ]
null
null
null
----------------------------------------------------------------------- -- Copyright 2012 Altran Praxis Limited -- -- Copyright 2021 Lev Kujawski -- -- -- -- This file is part of B2STEST. -- -- -- -- B2STEST 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. -- -- -- -- B2STEST 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 B2STEST. -- -- If not, see <https://www.gnu.org/licenses/>. -- -- -- -- SPDX-License-Identifier: GPL-3.0-or-later -- -- -- -- File: spark_io.adb (Ada Package Body) -- -- Language: SPARK83 [1] subset of Ada (1987) [2] -- -- Description: Ada Text_IO binding for SPARK83 -- -- -- -- References: -- -- [1] SPARK Team, SPARK83 - The SPADE Ada83 Kernel, -- -- Altran Praxis, 17 Oct. 2011. -- -- [2] Programming languages - Ada, ISO/IEC 8652:1987, -- -- 15 Jun. 1987. -- ----------------------------------------------------------------------- package body SPARK_IO is --# hide SPARK_IO; function "=" (Left : in Text_IO.File_Mode; Right : in Text_IO.File_Mode) return Boolean renames Text_IO."="; package Integer_IO is new Text_IO.Integer_IO (Num => Integer); function Is_Input_File (File : in File_T) return Boolean is begin return File.Kind = Input_Stream or else (File.Kind = Regular_File and then Text_IO.Mode (File.Actual) = Text_IO.In_File); exception when others => return False; end Is_Input_File; function Is_Output_File (File : in File_T) return Boolean is begin return File.Kind = Output_Stream or else (File.Kind = Regular_File and then Text_IO.Mode (File.Actual) = Text_IO.Out_File); exception when others => return False; end Is_Output_File; function End_Of_File (File : in File_T) return Boolean is begin return not Is_Input_File (File) or else Text_IO.End_Of_File (File.Actual); exception when others => return True; end End_Of_File; procedure Standard_Input (File : out File_T) is begin File.Kind := Input_Stream; end Standard_Input; procedure Standard_Output (File : out File_T) is begin File.Kind := Output_Stream; end Standard_Output; procedure Open (File : out File_T; File_Mode : in File_Mode_T; File_Name : in String; File_Form : in String; Status : out File_Status_T) is Ada_Mode : Text_IO.File_Mode; begin case File_Mode is when In_File => Ada_Mode := Text_IO.In_File; when Out_File => Ada_Mode := Text_IO.Out_File; end case; Text_IO.Open (File.Actual, Ada_Mode, File_Name, File_Form); File.Kind := Regular_File; Status := Success; exception when Text_IO.Status_Error => Status := Status_Error; when Text_IO.Mode_Error => Status := Mode_Error; when Text_IO.Name_Error => Status := Name_Error; when Text_IO.Use_Error => Status := Use_Error; when Text_IO.Device_Error => Status := Device_Error; when Text_IO.End_Error => Status := End_Error; when Text_IO.Data_Error => Status := Data_Error; when Text_IO.Layout_Error => Status := Layout_Error; when Storage_Error => Status := Standard_Storage_Error; when others => Status := Standard_Program_Error; end Open; procedure Close (File : in out File_T; Status : out File_Status_T) is begin if File.Kind = Regular_File then Text_IO.Close (File.Actual); File.Kind := Empty; Status := Success; else Status := Status_Error; end if; exception when Text_IO.Status_Error => Status := Status_Error; when Text_IO.Mode_Error => Status := Mode_Error; when Text_IO.Name_Error => Status := Name_Error; when Text_IO.Use_Error => Status := Use_Error; when Text_IO.Device_Error => Status := Device_Error; when Text_IO.End_Error => Status := End_Error; when Text_IO.Data_Error => Status := Data_Error; when Text_IO.Layout_Error => Status := Layout_Error; when Constraint_Error => Status := Use_Error; when Storage_Error => Status := Standard_Storage_Error; when others => Status := Standard_Program_Error; end Close; procedure New_Line (File : in File_T; Spacing : in Positive) is begin case File.Kind is when Output_Stream => Text_IO.New_Line (Text_IO.Standard_Output, Text_IO.Positive_Count (Spacing)); when Regular_File => if Text_IO.Mode (File.Actual) = Text_IO.Out_File then Text_IO.New_Line (File.Actual, Text_IO.Positive_Count (Spacing)); end if; when Empty => null; when Input_Stream => null; end case; exception when others => null; end New_Line; procedure Put (File : in File_T; Item : in String) is begin if Is_Output_File (File) then if File.Kind = Output_Stream then Text_IO.Put (Text_IO.Standard_Output, Item); else Text_IO.Put (File.Actual, Item); end if; end if; end Put; procedure Put_String (File : in File_T; Item : in String; Stop : in Natural) is begin if Stop = 0 then Put (File, Item); elsif Stop <= Item'Last then Put (File, Item (Item'First .. Stop)); else Put (File, Item); for I in Natural range 0 .. Stop - Item'Last loop Put (File, " "); end loop; end if; exception when others => null; end Put_String; procedure Get_Line (File : in File_T; Item : out String; Stop : out Natural) is Line_Stop : Natural; begin if Is_Input_File (File) then if File.Kind = Input_Stream then Text_IO.Get_Line (Text_IO.Standard_Input, Item, Line_Stop); else Text_IO.Get_Line (File.Actual, Item, Line_Stop); end if; if Line_Stop <= Item'Last then Stop := Line_Stop; else -- This should never occur. Stop := Item'Last; end if; else Stop := Item'First - 1; end if; exception when others => Stop := Item'First - 1; end Get_Line; procedure Put_Line (File : in File_T; Item : in String) is begin if Is_Output_File (File) then if File.Kind = Output_Stream then Text_IO.Put_Line (Text_IO.Standard_Output, Item); else Text_IO.Put_Line (File.Actual, Item); end if; end if; end Put_Line; procedure Put_Line (File : in File_T; Item : in String; Stop : in Natural) is begin if Is_Output_File (File) then if Stop = 0 then Put_Line (File, Item); else Put_Line (File, Item (Item'First .. Stop)); end if; end if; exception when others => null; end Put_Line; procedure Put_Integer (File : in File_T; Item : in Integer; Width : in Natural; Base : in Number_Base_T) is begin if Is_Output_File (File) then if File.Kind = Output_Stream then Integer_IO.Put (Text_IO.Standard_Output, Item, Width, Base); else Integer_IO.Put (File.Actual, Item, Width, Base); end if; end if; exception when others => null; end Put_Integer; end SPARK_IO;
28.853211
71
0.504081
5797db92fa412bef52d5aecc7e1c34c11e2393eb
2,927
ads
Ada
build/gnat/rts/4.9/adainclude/s-addima.ads
Lucretia/bare_bones
2666092925729aa8b5655211211529b98c5d18bd
[ "CC0-1.0" ]
70
2015-01-03T01:44:38.000Z
2022-03-20T14:24:24.000Z
build/gnat/rts/4.9/adainclude/s-addima.ads
Lucretia/bare_bones
2666092925729aa8b5655211211529b98c5d18bd
[ "CC0-1.0" ]
null
null
null
build/gnat/rts/4.9/adainclude/s-addima.ads
Lucretia/bare_bones
2666092925729aa8b5655211211529b98c5d18bd
[ "CC0-1.0" ]
12
2015-07-13T04:36:54.000Z
2020-06-21T02:55:04.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . A D D R E S S _ I M A G E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-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 a GNAT specific addition which provides a useful debugging -- procedure that gives an (implementation dependent) string which -- identifies an address. -- This unit may be used directly from an application program by providing -- an appropriate WITH, and the interface can be expected to remain stable. function System.Address_Image (A : Address) return String; pragma Pure (System.Address_Image); -- Returns string (hexadecimal digits with upper case letters) representing -- the address (string is 8/16 bytes for 32/64-bit machines).
68.069767
78
0.444482
58068aff7c1cac73a57b875aedfe38c6194eb2fa
1,011
adb
Ada
build_gnu/binutils/gdb/testsuite/gdb.ada/array_bounds/bar.adb
jed-frey/e200-gcc
df1421b421a8ec8729d70791129f5283dee5f9ea
[ "BSD-3-Clause" ]
1
2017-05-31T21:42:12.000Z
2017-05-31T21:42:12.000Z
build_gnu/binutils/gdb/testsuite/gdb.ada/array_bounds/bar.adb
jed-frey/e200-gcc
df1421b421a8ec8729d70791129f5283dee5f9ea
[ "BSD-3-Clause" ]
null
null
null
build_gnu/binutils/gdb/testsuite/gdb.ada/array_bounds/bar.adb
jed-frey/e200-gcc
df1421b421a8ec8729d70791129f5283dee5f9ea
[ "BSD-3-Clause" ]
1
2019-12-17T22:04:07.000Z
2019-12-17T22:04:07.000Z
-- Copyright 2008-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Bar is type Index is (Zero, One, Two); type Vector is array (Index) of Integer; type IVector is array (Integer range 2 .. 5) of Integer; Table : Vector := (0, 1, 2); ITable : IVector := (2, 3, 4, 5); begin Table (Zero) := 5; -- START ITable (3) := 10; end Bar;
36.107143
73
0.693373
4ddbd52516e4313b2355d95218d6034c4158a4d2
5,882
adb
Ada
source/coroutines-timeouts.adb
reznikmm/coroutines
52dd5d483f09d69cdc133910e49d13664cf05d80
[ "MIT" ]
3
2019-11-11T06:35:21.000Z
2019-11-13T13:34:56.000Z
source/coroutines-timeouts.adb
reznikmm/coroutines
52dd5d483f09d69cdc133910e49d13664cf05d80
[ "MIT" ]
null
null
null
source/coroutines-timeouts.adb
reznikmm/coroutines
52dd5d483f09d69cdc133910e49d13664cf05d80
[ "MIT" ]
null
null
null
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Containers.Ordered_Sets; with Ada.Containers.Vectors; package body Coroutines.Timeouts is type Timeout_Manager; type Timeout_Manager_Access is access all Timeout_Manager'Class; type Timeout_Event is new Event_Object with record Time : Ada.Calendar.Time; Context : Coroutines.Context; Manager : Timeout_Manager_Access; Ready : Boolean := False; end record; overriding procedure Activate (Self : in out Timeout_Event); overriding function Ready (Self : Timeout_Event) return Boolean; overriding procedure Deactivate (Self : in out Timeout_Event); type Timeout_Event_Access is access all Timeout_Event; use type Ada.Calendar.Time; function Equal (Left, Right : Timeout_Event_Access) return Boolean is (Left.Context = Right.Context and then Left.Time = Right.Time); function Less (Left, Right : Timeout_Event_Access) return Boolean; package Event_Sets is new Ada.Containers.Ordered_Sets (Element_Type => Timeout_Event_Access, "<" => Less, "=" => Equal); package Event_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Timeout_Event_Access); type Timeout_Manager is new Coroutine_Manager with record Active : Event_Sets.Set; Unused : Event_Vectors.Vector; Down : Coroutine_Manager_Access; end record; overriding procedure Get_Always_Ready_Event (Self : in out Timeout_Manager; Result : out Event_Id); overriding procedure New_Round (Self : in out Timeout_Manager; Queue : in out Context_Vectors.Vector; Timeout : Duration); Manager : aliased Timeout_Manager; -------------- -- Activate -- -------------- overriding procedure Activate (Self : in out Timeout_Event) is begin if not Self.Manager.Active.Contains (Self'Unchecked_Access) then Self.Manager.Active.Insert (Self'Unchecked_Access); end if; end Activate; ---------------- -- Deactivate -- ---------------- overriding procedure Deactivate (Self : in out Timeout_Event) is begin if Self.Manager.Active.Contains (Self'Unchecked_Access) then Self.Manager.Active.Delete (Self'Unchecked_Access); end if; Self.Manager.Unused.Append (Self'Unchecked_Access); end Deactivate; ---------------------------- -- Get_Always_Ready_Event -- ---------------------------- procedure Get_Always_Ready_Event (Self : in out Timeout_Manager; Result : out Event_Id) is pragma Unreferenced (Self); begin Result := Timeout (0.0); end Get_Always_Ready_Event; ---------------- -- Initialize -- ---------------- procedure Initialize is begin Manager.Down := Coroutines.Manager; Coroutines.Manager := Manager'Access; end Initialize; ---------- -- Less -- ---------- function Less (Left, Right : Timeout_Event_Access) return Boolean is function Less_Context return Boolean; ------------------ -- Less_Context -- ------------------ function Less_Context return Boolean is use type System.Storage_Elements.Integer_Address; L : constant System.Storage_Elements.Integer_Address := System.Storage_Elements.To_Integer (System.Address (Left.Context)); R : constant System.Storage_Elements.Integer_Address := System.Storage_Elements.To_Integer (System.Address (Right.Context)); begin return L < R; end Less_Context; begin return Left.Time < Right.Time or else (Left.Time = Right.Time and then Less_Context); end Less; --------------- -- New_Round -- --------------- procedure New_Round (Self : in out Timeout_Manager; Queue : in out Context_Vectors.Vector; Timeout : Duration) is Limit : Duration := Timeout; First : Timeout_Event_Access; Now : Ada.Calendar.Time; begin if not Self.Active.Is_Empty then Now := Ada.Calendar.Clock; while not Self.Active.Is_Empty loop First := Self.Active.First_Element; if First.Time <= Now then Queue.Append (First.Context); Self.Active.Delete_First; Limit := 0.0; else Limit := Duration'Min (Timeout, First.Time - Now); exit; end if; end loop; end if; if Self.Down /= null then Self.Down.New_Round (Queue, Timeout => Limit); elsif Queue.Is_Empty then delay Limit; end if; end New_Round; ----------- -- Ready -- ----------- overriding function Ready (Self : Timeout_Event) return Boolean is begin return Self.Ready; end Ready; ------------- -- Timeout -- ------------- function Timeout (Value : Duration) return Event_Id is -- use type Ada.Calendar.Time; begin return Timeout (Ada.Calendar.Clock + Value); end Timeout; ------------- -- Timeout -- ------------- function Timeout (Value : Ada.Calendar.Time) return Event_Id is Result : Timeout_Event_Access; begin if Manager.Unused.Is_Empty then Result := new Timeout_Event; else Result := Manager.Unused.Last_Element; Manager.Unused.Delete_Last; end if; Result.all := (Event_Object with Time => Value, Context => Current_Context, Manager => Manager'Access, Ready => False); return Event_Id (Result); end Timeout; end Coroutines.Timeouts;
27.105991
79
0.596566
2e70d17e514f942ab7f26815bfff87f7b646931f
6,977
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45531k.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45531k.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45531k.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C45531K.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 THE OPERATOR "*" PRODUCES CORRECT RESULTS -- FOR MIXED FIXED POINT AND INTEGER TYPES USING 4 SUBTESTS. -- THIS TEST REQUIRES MIN_WORD_LENGTH = 32. -- THIS TEST USES VALUES OF DELTA WHICH ARE GREATER THAN OR -- EQUAL TO 0.5. -- -- TEST CASES ARE: -- A) INTEGER * FIXED WHEN ALL VALUES ARE MODEL NUMBERS. -- B) FIXED * INTEGER WHEN ALL VALUES ARE MODEL NUMBERS. -- C) INTEGER * FIXED FOR NON-MODEL NUMBERS. -- D) FIXED * INTEGER FOR NON-MODEL NUMBERS. -- -- REPEAT FOR MINIMUM REQUIRED WORD LENGTHS OF 12, 16, 32 AND 48, -- WITH RANGE <, =, AND > THAN 1.0 AND -- WITH DELTA <, =, AND > THAN 1.0. -- HISTORY: -- NTW 09/08/86 CREATED ORIGINAL TEST. -- RJW 11/05/86 REVISED COMMENTS. -- DHH 01/13/88 ADDED APPLICABILITY CRITERIA AND STANDARD HEADER. -- BCB 04/27/90 REVISED APPLICABILITY CRITERIA. -- BCB 10/03/90 REMOVED APPLICABILITY CRITERIA AND N/A => ERROR -- LINE. CHANGED EXTENSION FROM '.DEP' TO '.ADA'. WITH REPORT; PROCEDURE C45531K IS USE REPORT; MIN_WORD_LENGTH : CONSTANT := 32; FULL_SCALE : CONSTANT := 2 ** (MIN_WORD_LENGTH - 1); FORTH : CONSTANT := FULL_SCALE / 4; RNG1 : CONSTANT := FULL_SCALE * 0.5; TYPE FX_0P5 IS DELTA 0.5 RANGE -RNG1 * 1 .. RNG1 * 1 - 0.5; TYPE FX_1 IS DELTA 1.0 RANGE -RNG1 * 2 .. RNG1 * 2 - 1.0; TYPE FX_RNG1 IS DELTA RNG1 RANGE -RNG1 * FULL_SCALE .. RNG1 * (FULL_SCALE - 1); BEGIN TEST ("C45531K", "MIXED FIXED POINT AND INTEGER ""*"" " & "FOR DELTA <, =, > 1.0"); -------------------------------------------------- -- CASE A) INTEGER * FIXED WHEN ALL VALUES ARE MODEL NUMBERS. A: DECLARE A : INTEGER := 0; B : FX_0P5 := 0.0; RESULT_VALUE : FX_0P5 := 0.0; LOWEST_ACCEPTABLE_VALUE : FX_0P5 := FX_0P5 (7.5); HIGHEST_ACCEPTABLE_VALUE : FX_0P5 := FX_0P5 (7.5); BEGIN IF EQUAL (3, 3) THEN A := 3; B := FX_0P5 (2.5); -- A MODEL NUMBER END IF; RESULT_VALUE := A * B; IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE) OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL " & "FOR INTEGER * FIXED " & "WHEN ALL VALUES ARE MODEL NUMBERS"); END IF; END A; -------------------------------------------------- -- CASE B) FIXED * INTEGER WHEN ALL VALUES ARE MODEL NUMBERS. B: DECLARE A : FX_1 := 0.0; B : INTEGER := 0; RESULT_VALUE : FX_1 := 0.0; LOWEST_ACCEPTABLE_VALUE : FX_1 := FX_1 (3 * FORTH); HIGHEST_ACCEPTABLE_VALUE : FX_1 := FX_1 (3 * FORTH); BEGIN IF EQUAL (3, 3) THEN A := FX_1 (FULL_SCALE / 8); -- A MODEL NUMBER B := 6; END IF; RESULT_VALUE := A * B; IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE) OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL " & "FOR FIXED * INTEGER " & "WHEN ALL VALUES ARE MODEL NUMBERS"); END IF; END B; -------------------------------------------------- -- CASE C) INTEGER * FIXED FOR NON-MODEL NUMBERS. C: DECLARE A : INTEGER := 0; B : FX_RNG1 := 0.0; RESULT_VALUE : FX_RNG1 := 0.0; LOW_COUNT : CONSTANT := (3 * (FORTH + 0) ); HIGH_COUNT : CONSTANT := (3 * (FORTH + 1) ); LOWEST_ACCEPTABLE_VALUE : FX_RNG1 := FX_RNG1 (RNG1 * LOW_COUNT ); HIGHEST_ACCEPTABLE_VALUE : FX_RNG1 := FX_RNG1 (RNG1 * HIGH_COUNT); BEGIN IF EQUAL (3, 3) THEN -- B NOT A MODEL NUMBER A := 3; B := FX_RNG1 (RNG1 * FORTH + 0.5); END IF; RESULT_VALUE := A * B; IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE) OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL " & "FOR INTEGER * FIXED FOR NON-MODEL NUMBERS"); END IF; END C; -------------------------------------------------- -- CASE D) FIXED * INTEGER FOR NON-MODEL NUMBERS. D: DECLARE A : FX_RNG1 := 0.0; B : INTEGER := 0; RESULT_VALUE : FX_RNG1 := 0.0; LOW_COUNT : CONSTANT := (3 * (FORTH + 0) ); HIGH_COUNT : CONSTANT := (3 * (FORTH + 1) ); LOWEST_ACCEPTABLE_VALUE : FX_RNG1 := FX_RNG1 (RNG1 * LOW_COUNT ); HIGHEST_ACCEPTABLE_VALUE : FX_RNG1 := FX_RNG1 (RNG1 * HIGH_COUNT); BEGIN IF EQUAL (3, 3) THEN -- A NOT A MODEL NUMBER A := FX_RNG1 (RNG1 * FORTH + 0.5); B := 3; END IF; RESULT_VALUE := A * B; IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE) OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL " & "FOR FIXED * INTEGER FOR NON-MODEL NUMBERS"); END IF; END D; -------------------------------------------------- RESULT; END C45531K;
37.713514
79
0.513401
1a5404c92d264f906ab7d530de8a8fe2c9a37315
3,876
adb
Ada
1A/S5/PIM/tps/tp3/tri_selection.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
4
2020-05-02T12:32:32.000Z
2022-01-12T20:20:35.000Z
1A/S5/PIM/tps/tp3/tri_selection.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
2
2021-01-14T20:03:26.000Z
2022-01-30T01:10:00.000Z
1A/S5/PIM/tps/tp3/tri_selection.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
13
2020-11-11T21:28:11.000Z
2022-02-19T13:54:22.000Z
with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; -- Objectif : Afficher un tableau trié suivant le principe du tri par sélection. procedure Tri_Selection is CAPACITE: constant Integer := 10; -- la capacité du tableau type Tableau_Entier is array (1..CAPACITE) of Integer; type Tableau is record Elements : Tableau_Entier; Taille : Integer; --{ Taille in [0..CAPACITE] } end record; -- Objectif : Afficher le tableau Tab. -- Paramètres : -- Tab : le tableau à afficher -- Nécessite : --- -- Assure : Le tableau est affiché. procedure Afficher (Tab : in Tableau) is begin Put ("["); if Tab.Taille > 0 then -- Afficher le premier élément Put (Tab.Elements (1), 1); -- Afficher les autres éléments for Indice in 2..Tab.Taille loop Put (", "); Put (Tab.Elements (Indice), 1); end loop; end if; Put ("]"); end Afficher; function Min_Index_Tableau ( Tab : in Tableau_Entier; Init_Index, Taille : in Integer) return Integer is Min : Integer; begin Min := Init_Index; for i in (Init_Index + 1)..Taille loop if Tab(i) < Tab(Min) then Min := i; end if; end loop; return Min; end Min_Index_Tableau; function Permute ( Tab : in out Tableau_Entier; Min, Init_Index : in Integer) return Tableau_Entier is Temp : Integer; begin if Min /= Init_Index then Temp := Tab(Init_Index); Tab(Init_Index) := Tab(Min); Tab(Min) := Temp; end if; return Tab; end Permute; function Tri_Tableau (Tab : In Out Tableau) return Tableau is Init_Index : Integer; begin Init_Index := 1; Put("Initial vector : "); Afficher (Tab); New_Line(1); Tri_Tab: loop Tab.Elements := Permute(Tab.Elements, Min_Index_Tableau(Tab.Elements, Init_Index, Tab.Taille), Init_Index); New_Line(1); Put("After"& Integer'Image(Init_Index) & " step : "); Afficher (Tab); New_Line(1); Init_Index := Init_Index + 1; exit Tri_Tab when Init_Index = Tab.Taille; end loop Tri_Tab; New_Line(1); return Tab; end Tri_Tableau; procedure Verifier_tri (Tab : In Tableau) is begin for i in 1..(Tab.Taille - 1) loop if Tab.Elements(i) > Tab.Elements(i + 1) then Put_Line("Error in the program"); end if; end loop; end Verifier_tri; function Occurrence ( Tab : In Tableau; Item : In Integer) return Integer is Count : Integer; begin Count := 0; for i in 1..Tab.Taille loop if Tab.Elements(i) = Item then Count := Count + 1; end if; end loop; return Count; end Occurrence; procedure Verifier_elements ( Tab_Trie, Tab : IN Tableau) is begin for i in 1..Tab.Taille loop for j in 1..Tab.Taille loop if Tab_Trie.Elements(i) = Tab.Elements(j) and Occurrence ( Tab, Tab.Elements(j)) /= Occurrence ( Tab_Trie, Tab_Trie.Elements(j)) then Put_Line("Error in the program"); end if; end loop; end loop; end Verifier_Elements; procedure Verifier_Taille ( Tab_Trie, Tab : In Tableau) is begin if Tab_Trie.Taille /= Tab.Taille then Put_Line("Error in the program"); end if; end Verifier_Taille; procedure Test ( Tab_Trie, Tab : In Tableau) is begin Verifier_Taille ( Tab_Trie, Tab ); Verifier_Elements ( Tab_Trie, Tab ); Verifier_Tri ( Tab ); end Test; Tab1, Tab2, Tab3 , Trie1, Trie2, Trie3 : Tableau; begin -- Initialiser le tableau Tab1 := ( (1, 3, 4, 2, others => 0), 4); Tab2 := ( (4, 3, 2, 1, others => 0), 4); Tab3 := ( (-5, 3, 8, 1, -25, 0, 8, 1, 1, 1), 10); -- Trier les tableaux Trie1 := Tri_Tableau (Tab1); Test ( Trie1, Tab1); Trie2 := Tri_Tableau (Tab2); Test ( Trie2, Tab2); Trie3 := Tri_Tableau (Tab3); Test ( Trie3, Tab3); end Tri_Selection;
26.013423
137
0.626677
1a80baca098dd373152f37d27d1a71aa235341b9
15,149
adb
Ada
tools-src/gnu/gcc/gcc/ada/xnmake.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/xnmake.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/xnmake.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT SYSTEM UTILITIES -- -- -- -- X N M A K E -- -- -- -- 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 and body of the Nmake package -- Input files: -- sinfo.ads Spec of Sinfo package -- nmake.adt Template for Nmake package -- Output files: -- nmake.ads Spec of Nmake package -- nmake.adb Body of Nmake package -- Note: this program assumes that sinfo.ads has passed the error checks that -- are carried out by the csinfo utility, so it does not duplicate these -- checks and assumes that sinfo.ads has the correct form. -- In the absence of any switches, both the ads and adb files are output. -- The switch -s or /s indicates that only the ads file is to be output. -- The switch -b or /b indicates that only the adb file is to be output. -- If a file name argument is given, then the output is written to this file -- rather than to nmake.ads or nmake.adb. A file name can only be given if -- exactly one of the -s or -b options is present. 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.Strings.Maps; use Ada.Strings.Maps; with Ada.Strings.Maps.Constants; use Ada.Strings.Maps.Constants; with Ada.Text_IO; use Ada.Text_IO; with GNAT.Spitbol; use GNAT.Spitbol; with GNAT.Spitbol.Patterns; use GNAT.Spitbol.Patterns; procedure XNmake is Err : exception; -- Raised to terminate execution A : VString := Nul; Arg : VString := Nul; Arg_List : VString := Nul; Comment : VString := Nul; Default : VString := Nul; Field : VString := Nul; Line : VString := Nul; Node : VString := Nul; Op_Name : VString := Nul; Prevl : VString := Nul; Sinfo_Rev : VString := Nul; Synonym : VString := Nul; Temp_Rev : VString := Nul; X : VString := Nul; XNmake_Rev : VString := Nul; Lineno : Natural; NWidth : Natural; FileS : VString := V ("nmake.ads"); FileB : VString := V ("nmake.adb"); -- Set to null if corresponding file not to be generated Given_File : VString := Nul; -- File name given by command line argument InS, InT : File_Type; OutS, OutB : File_Type; wsp : Pattern := Span (' ' & ASCII.HT); -- Note: in following patterns, we break up the word revision to -- avoid RCS getting enthusiastic about updating the reference! Get_SRev : Pattern := BreakX ('$') & "$Rev" & "ision: " & Break (' ') * Sinfo_Rev; GetT_Rev : Pattern := BreakX ('$') & "$Rev" & "ision: " & Break (' ') * Temp_Rev; Body_Only : Pattern := BreakX (' ') * X & Span (' ') & "-- body only"; Spec_Only : Pattern := BreakX (' ') * X & Span (' ') & "-- spec only"; Node_Hdr : Pattern := wsp & "-- N_" & Rest * Node; Punc : Pattern := BreakX (" .,"); Binop : Pattern := wsp & "-- plus fields for binary operator"; Unop : Pattern := wsp & "-- plus fields for unary operator"; Syn : Pattern := wsp & "-- " & Break (' ') * Synonym & " (" & Break (')') * Field & Rest * Comment; Templ : Pattern := BreakX ('T') * A & "T e m p l a t e"; Spec : Pattern := BreakX ('S') * A & "S p e c"; Sem_Field : Pattern := BreakX ('-') & "-Sem"; Lib_Field : Pattern := BreakX ('-') & "-Lib"; Get_Field : Pattern := BreakX (Decimal_Digit_Set) * Field; Get_Dflt : Pattern := BreakX ('(') & "(set to " & Break (" ") * Default & " if"; Next_Arg : Pattern := Break (',') * Arg & ','; Op_Node : Pattern := "Op_" & Rest * Op_Name; Shft_Rot : Pattern := "Shift_" or "Rotate_"; No_Ent : Pattern := "Or_Else" or "And_Then" or "In" or "Not_In"; M : Match_Result; V_String_Id : constant VString := V ("String_Id"); V_Node_Id : constant VString := V ("Node_Id"); V_Name_Id : constant VString := V ("Name_Id"); V_List_Id : constant VString := V ("List_Id"); V_Elist_Id : constant VString := V ("Elist_Id"); V_Boolean : constant VString := V ("Boolean"); procedure WriteS (S : String); procedure WriteB (S : String); procedure WriteBS (S : String); procedure WriteS (S : VString); procedure WriteB (S : VString); procedure WriteBS (S : VString); -- Write given line to spec or body file or both if active procedure WriteB (S : String) is begin if FileB /= Nul then Put_Line (OutB, S); end if; end WriteB; procedure WriteB (S : VString) is begin if FileB /= Nul then Put_Line (OutB, S); end if; end WriteB; procedure WriteBS (S : String) is begin if FileB /= Nul then Put_Line (OutB, S); end if; if FileS /= Nul then Put_Line (OutS, S); end if; end WriteBS; procedure WriteBS (S : VString) is begin if FileB /= Nul then Put_Line (OutB, S); end if; if FileS /= Nul then Put_Line (OutS, S); end if; end WriteBS; procedure WriteS (S : String) is begin if FileS /= Nul then Put_Line (OutS, S); end if; end WriteS; procedure WriteS (S : VString) is begin if FileS /= Nul then Put_Line (OutS, S); end if; end WriteS; -- Start of processing for XNmake begin -- Capture our revision (following line updated by RCS) Match ("$Revision$", "$Rev" & "ision: " & Break (' ') * XNmake_Rev); Lineno := 0; NWidth := 28; Anchored_Mode := True; for ArgN in 1 .. Argument_Count loop declare Arg : constant String := Argument (ArgN); begin if Arg (1) = '-' then if Arg'Length = 2 and then (Arg (2) = 'b' or else Arg (2) = 'B') then FileS := Nul; elsif Arg'Length = 2 and then (Arg (2) = 's' or else Arg (2) = 'S') then FileB := Nul; else raise Err; end if; else if Given_File /= Nul then raise Err; else Given_File := V (Arg); end if; end if; end; end loop; if FileS = Nul and then FileB = Nul then raise Err; elsif Given_File /= Nul then if FileB = Nul then FileS := Given_File; elsif FileS = Nul then FileB := Given_File; else raise Err; end if; end if; Open (InS, In_File, "sinfo.ads"); Open (InT, In_File, "nmake.adt"); if FileS /= Nul then Create (OutS, Out_File, S (FileS)); end if; if FileB /= Nul then Create (OutB, Out_File, S (FileB)); end if; Anchored_Mode := True; -- Get Sinfo revision number loop Line := Get_Line (InS); exit when Match (Line, Get_SRev); end loop; -- Copy initial part of template to spec and body loop Line := Get_Line (InT); if Match (Line, GetT_Rev) then WriteBS ("-- Generated by xnmake revision " & XNmake_Rev & " using"); WriteBS ("-- sinfo.ads revision " & Sinfo_Rev); WriteBS ("-- nmake.adt revision " & Temp_Rev); 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, Body_Only, M) then Replace (M, X); WriteB (Line); elsif Match (Line, Spec_Only, M) then Replace (M, X); WriteS (Line); else if Match (Line, Templ, M) then Replace (M, A & " S p e c "); end if; WriteS (Line); if Match (Line, Spec, M) then Replace (M, A & "B o d y"); end if; WriteB (Line); end if; end if; end loop; -- Package line reached WriteS ("package Nmake is"); WriteB ("package body Nmake is"); WriteB (""); -- Copy rest of lines up to template insert point to spec only loop Line := Get_Line (InT); exit when Match (Line, "!!TEMPLATE INSERTION POINT"); WriteS (Line); end loop; -- Here we are doing the actual insertions, loop through node types loop Line := Get_Line (InS); if Match (Line, Node_Hdr) and then not Match (Node, Punc) and then Node /= "Unused" then exit when Node = "Empty"; Prevl := " function Make_" & Node & " (Sloc : Source_Ptr"; Arg_List := Nul; -- Loop through fields of one node loop Line := Get_Line (InS); exit when Line = ""; if Match (Line, Binop) then WriteBS (Prevl & ';'); Append (Arg_List, "Left_Opnd,Right_Opnd,"); WriteBS ( " " & Rpad ("Left_Opnd", NWidth) & " : Node_Id;"); Prevl := " " & Rpad ("Right_Opnd", NWidth) & " : Node_Id"; elsif Match (Line, Unop) then WriteBS (Prevl & ';'); Append (Arg_List, "Right_Opnd,"); Prevl := " " & Rpad ("Right_Opnd", NWidth) & " : Node_Id"; elsif Match (Line, Syn) then if Synonym /= "Prev_Ids" and then Synonym /= "More_Ids" and then Synonym /= "Comes_From_Source" and then Synonym /= "Paren_Count" and then not Match (Field, Sem_Field) and then not Match (Field, Lib_Field) then Match (Field, Get_Field); if Field = "Str" then Field := V_String_Id; elsif Field = "Node" then Field := V_Node_Id; elsif Field = "Name" then Field := V_Name_Id; elsif Field = "List" then Field := V_List_Id; elsif Field = "Elist" then Field := V_Elist_Id; elsif Field = "Flag" then Field := V_Boolean; end if; if Field = "Boolean" then Default := V ("False"); else Default := Nul; end if; Match (Comment, Get_Dflt); WriteBS (Prevl & ';'); Append (Arg_List, Synonym & ','); Rpad (Synonym, NWidth); if Default = "" then Prevl := " " & Synonym & " : " & Field; else Prevl := " " & Synonym & " : " & Field & " := " & Default; end if; end if; end if; end loop; WriteBS (Prevl & ')'); WriteS (" return Node_Id;"); WriteS (" pragma Inline (Make_" & Node & ");"); WriteB (" return Node_Id"); WriteB (" is"); WriteB (" N : constant Node_Id :="); if Match (Node, "Defining_Identifier") or else Match (Node, "Defining_Character") or else Match (Node, "Defining_Operator") then WriteB (" New_Entity (N_" & Node & ", Sloc);"); else WriteB (" New_Node (N_" & Node & ", Sloc);"); end if; WriteB (" begin"); while Match (Arg_List, Next_Arg, "") loop if Length (Arg) < NWidth then WriteB (" Set_" & Arg & " (N, " & Arg & ");"); else WriteB (" Set_" & Arg); WriteB (" (N, " & Arg & ");"); end if; end loop; if Match (Node, Op_Node) then if Node = "Op_Plus" then WriteB (" Set_Chars (N, Name_Op_Add);"); elsif Node = "Op_Minus" then WriteB (" Set_Chars (N, Name_Op_Subtract);"); elsif Match (Op_Name, Shft_Rot) then WriteB (" Set_Chars (N, Name_" & Op_Name & ");"); else WriteB (" Set_Chars (N, Name_" & Node & ");"); end if; if not Match (Op_Name, No_Ent) then WriteB (" Set_Entity (N, Standard_" & Node & ");"); end if; end if; WriteB (" return N;"); WriteB (" end Make_" & Node & ';'); WriteBS (""); end if; end loop; WriteBS ("end Nmake;"); exception when Err => Put_Line (Standard_Error, "usage: xnmake [-b] [-s] [filename]"); Set_Exit_Status (1); end XNmake;
31.364389
78
0.474817
2ee9c324d68eaf03b8d4c03c3e2884adb335ed9f
934
ads
Ada
src/vulkan-instances.ads
persan/a-vulkan
0309aaf475a74ee21011f206abc96df2889e9e60
[ "MIT" ]
null
null
null
src/vulkan-instances.ads
persan/a-vulkan
0309aaf475a74ee21011f206abc96df2889e9e60
[ "MIT" ]
null
null
null
src/vulkan-instances.ads
persan/a-vulkan
0309aaf475a74ee21011f206abc96df2889e9e60
[ "MIT" ]
null
null
null
private with System.Storage_Elements; private with Ada.Finalization; package Vulkan.Instances is type InstanceCreateInfo is tagged limited private; type AllocationCallbacks is tagged limited private; type Instance (CreateInfo : not null access constant InstanceCreateInfo; Allocator : not null access constant AllocationCallbacks) is tagged limited private; private type Instance (CreateInfo : not null access constant InstanceCreateInfo; Allocator : not null access constant AllocationCallbacks) is new Ada.Finalization.Limited_Controlled with record Store : aliased System.Storage_Elements.Storage_Array (1 .. 8); end record; type InstanceCreateInfo is new Ada.Finalization.Limited_Controlled with record null; end record; type AllocationCallbacks is new Ada.Finalization.Limited_Controlled with record null; end record; end Vulkan.Instances;
37.36
132
0.762313
2ebd1518fdfcb301a49a544d94f2d08d2a1aa292
1,058
ads
Ada
test/file_utils_test.ads
psyomn/ash
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
11
2017-04-08T17:48:19.000Z
2021-12-31T23:36:25.000Z
test/file_utils_test.ads
psyomn/axios
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
3
2017-03-24T04:34:15.000Z
2017-04-03T05:18:47.000Z
test/file_utils_test.ads
psyomn/axios
7630208f9f2dc296f75076141d591354bde02ac7
[ "Apache-2.0" ]
4
2017-05-14T11:46:37.000Z
2019-04-18T20:34:07.000Z
-- Copyright 2019 Simon Symeonidis (psyomn) -- -- 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; with AUnit.Test_Fixtures; package File_Utils_Test is type Test is new AUnit.Test_Fixtures.Test_Fixture with null record; procedure Test_Read_File_With_Normal_Named_String (T : in out Test); procedure Test_Read_File_With_Null_Named_String (T : in out Test); procedure Test_Read_File_From_Null_Concat_Name (T : in out Test); procedure Test_Read_File_From_Null_Concat_Name_Fix (T : in out Test); end File_Utils_Test;
35.266667
76
0.763705
58ace96872b24b8d3b0d32f2df5f32f974455a4b
5,545
ads
Ada
source/amf/uml/amf-uml-substitutions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-substitutions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-substitutions.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- 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 substitution is a relationship between two classifiers signifies that -- the substituting classifier complies with the contract specified by the -- contract classifier. This implies that instances of the substituting -- classifier are runtime substitutable where instances of the contract -- classifier are expected. ------------------------------------------------------------------------------ limited with AMF.UML.Classifiers; with AMF.UML.Realizations; package AMF.UML.Substitutions is pragma Preelaborate; type UML_Substitution is limited interface and AMF.UML.Realizations.UML_Realization; type UML_Substitution_Access is access all UML_Substitution'Class; for UML_Substitution_Access'Storage_Size use 0; not overriding function Get_Contract (Self : not null access constant UML_Substitution) return AMF.UML.Classifiers.UML_Classifier_Access is abstract; -- Getter of Substitution::contract. -- -- The contract with which the substituting classifier complies. not overriding procedure Set_Contract (Self : not null access UML_Substitution; To : AMF.UML.Classifiers.UML_Classifier_Access) is abstract; -- Setter of Substitution::contract. -- -- The contract with which the substituting classifier complies. not overriding function Get_Substituting_Classifier (Self : not null access constant UML_Substitution) return AMF.UML.Classifiers.UML_Classifier_Access is abstract; -- Getter of Substitution::substitutingClassifier. -- -- Instances of the substituting classifier are runtime substitutable -- where instances of the contract classifier are expected. not overriding procedure Set_Substituting_Classifier (Self : not null access UML_Substitution; To : AMF.UML.Classifiers.UML_Classifier_Access) is abstract; -- Setter of Substitution::substitutingClassifier. -- -- Instances of the substituting classifier are runtime substitutable -- where instances of the contract classifier are expected. end AMF.UML.Substitutions;
57.164948
78
0.516682
a11224b57cce4677833b569af887937cfd4a68a5
2,283
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/live.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/live.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/live.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- L I V E -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package implements a compiler phase that determines the set of live -- entities. For now entities are considered live when they have at least one -- execution time reference. package Live is procedure Collect_Garbage_Entities; -- Eliminate unreachable entities using a mark-and-sweep from the set of -- root entities, i.e. those having Is_Public set. end Live;
61.702703
78
0.429698
ad0b8db30a3034bcd87129a48c888a7ebdf1b113
459
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/lto11.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/lto11.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/lto11.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do compile } -- { dg-options "-flto" { target lto } } with Ada.Streams; use Ada.Streams; package body Lto11 is procedure Write (S : not null access Root_Stream_Type'Class; V : Vector) is subtype M_SEA is Stream_Element_Array (1 .. V'Size / Stream_Element'Size); Bytes : M_SEA; for Bytes'Address use V'Address; pragma Import (Ada, Bytes); begin Ada.Streams.Write (S.all, Bytes); end; end Lto11;
21.857143
80
0.631808
58976d795af9c50a877f0fa28961a9cb7d7776a8
3,132
ads
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-vercon.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-vercon.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-vercon.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . V E R S I O N _ C O N T R O L -- -- -- -- 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 module contains the runtime routine for implementation of the -- Version and Body_Version attributes, as well as the string type that -- is returned as a result of using these attributes. with System.Unsigned_Types; package System.Version_Control is pragma Pure; subtype Version_String is String (1 .. 8); -- Eight character string returned by Get_version_String function Get_Version_String (V : System.Unsigned_Types.Unsigned) return Version_String; -- The version information in the executable file is stored as unsigned -- integers. This routine converts the unsigned integer into an eight -- character string containing its hexadecimal digits (with lower case -- letters). end System.Version_Control;
59.09434
78
0.462324
ad15f3db08cec6aa1ddd61f9ce755e0322b7378f
57,834
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/a-stwisu.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/a-stwisu.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/a-stwisu.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ S U P E R B O U N D E D -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.Wide_Maps; use Ada.Strings.Wide_Maps; with Ada.Strings.Wide_Search; package body Ada.Strings.Wide_Superbounded is ------------ -- Concat -- ------------ function Concat (Left : Super_String; Right : Super_String) return Super_String is Result : Super_String (Left.Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end if; return Result; end Concat; function Concat (Left : Super_String; Right : Wide_String) return Super_String is Result : Super_String (Left.Max_Length); Llen : constant Natural := Left.Current_Length; Nlen : constant Natural := Llen + Right'Length; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; end if; return Result; end Concat; function Concat (Left : Wide_String; Right : Super_String) return Super_String is Result : Super_String (Right.Max_Length); Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end if; return Result; end Concat; function Concat (Left : Super_String; Right : Wide_Character) return Super_String is Result : Super_String (Left.Max_Length); Llen : constant Natural := Left.Current_Length; begin if Llen = Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Result.Current_Length) := Right; end if; return Result; end Concat; function Concat (Left : Wide_Character; Right : Super_String) return Super_String is Result : Super_String (Right.Max_Length); Rlen : constant Natural := Right.Current_Length; begin if Rlen = Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Result.Current_Length) := Right.Data (1 .. Rlen); end if; return Result; end Concat; ----------- -- Equal -- ----------- function "=" (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Current_Length = Right.Current_Length and then Left.Data (1 .. Left.Current_Length) = Right.Data (1 .. Right.Current_Length); end "="; function Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Current_Length = Right'Length and then Left.Data (1 .. Left.Current_Length) = Right; end Equal; function Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left'Length = Right.Current_Length and then Left = Right.Data (1 .. Right.Current_Length); end Equal; ------------- -- Greater -- ------------- function Greater (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right.Data (1 .. Right.Current_Length); end Greater; function Greater (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right; end Greater; function Greater (Left : Wide_String; Right : Super_String) return Boolean is begin return Left > Right.Data (1 .. Right.Current_Length); end Greater; ---------------------- -- Greater_Or_Equal -- ---------------------- function Greater_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; function Greater_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right; end Greater_Or_Equal; function Greater_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; ---------- -- Less -- ---------- function Less (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right.Data (1 .. Right.Current_Length); end Less; function Less (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right; end Less; function Less (Left : Wide_String; Right : Super_String) return Boolean is begin return Left < Right.Data (1 .. Right.Current_Length); end Less; ------------------- -- Less_Or_Equal -- ------------------- function Less_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; function Less_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right; end Less_Or_Equal; function Less_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; ---------------------- -- Set_Super_String -- ---------------------- procedure Set_Super_String (Target : out Super_String; Source : Wide_String; Drop : Truncation := Error) is Slen : constant Natural := Source'Length; Max_Length : constant Positive := Target.Max_Length; begin if Slen <= Max_Length then Target.Current_Length := Slen; Target.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Set_Super_String; ------------------ -- Super_Append -- ------------------ -- Case of Super_String and Super_String function Super_Append (Left : Super_String; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Result.Data := Right.Data; else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Super_String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item.Data (1 .. Rlen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Source.Data := New_Item.Data; else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Super_String and Wide_String function Super_Append (Left : Super_String; Right : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right (Right'First .. Right'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right (Right'Last - (Max_Length - 1) .. Right'Last); else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Wide_String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item (New_Item'First .. New_Item'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - (Max_Length - 1) .. New_Item'Last); else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Wide_String and Super_String function Super_Append (Left : Wide_String; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Llen + Rlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then Result.Data (1 .. Max_Length) := Left (Left'First .. Left'First + (Max_Length - 1)); else Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right.Data (Rlen - (Max_Length - 1) .. Rlen); else Result.Data (1 .. Max_Length - Rlen) := Left (Left'Last - (Max_Length - Rlen - 1) .. Left'Last); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; -- Case of Super_String and Wide_Character function Super_Append (Left : Super_String; Right : Wide_Character; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; begin if Llen < Max_Length then Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1) := Right; return Result; else case Drop is when Strings.Right => return Left; when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length - 1) := Left.Data (2 .. Max_Length); Result.Data (Max_Length) := Right; return Result; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Wide_Character; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; begin if Llen < Max_Length then Source.Current_Length := Llen + 1; Source.Data (Llen + 1) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => null; when Strings.Left => Source.Data (1 .. Max_Length - 1) := Source.Data (2 .. Max_Length); Source.Data (Max_Length) := New_Item; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Wide_Character and Super_String function Super_Append (Left : Wide_Character; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Rlen : constant Natural := Right.Current_Length; begin if Rlen < Max_Length then Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Rlen + 1) := Right.Data (1 .. Rlen); return Result; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1) := Left; Result.Data (2 .. Max_Length) := Right.Data (1 .. Max_Length - 1); return Result; when Strings.Left => return Right; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; ----------------- -- Super_Count -- ----------------- function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Set : Wide_Maps.Wide_Character_Set) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Set); end Super_Count; ------------------ -- Super_Delete -- ------------------ function Super_Delete (Source : Super_String; From : Positive; Through : Natural) return Super_String is Result : Super_String (Source.Max_Length); Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return Source; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Result.Current_Length := From - 1; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); return Result; else Result.Current_Length := Slen - Num_Delete; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); Result.Data (From .. Result.Current_Length) := Source.Data (Through + 1 .. Slen); return Result; end if; end Super_Delete; procedure Super_Delete (Source : in out Super_String; From : Positive; Through : Natural) is Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Source.Current_Length := From - 1; else Source.Current_Length := Slen - Num_Delete; Source.Data (From .. Source.Current_Length) := Source.Data (Through + 1 .. Slen); end if; end Super_Delete; ------------------- -- Super_Element -- ------------------- function Super_Element (Source : Super_String; Index : Positive) return Wide_Character is begin if Index in 1 .. Source.Current_Length then return Source.Data (Index); else raise Strings.Index_Error; end if; end Super_Element; ---------------------- -- Super_Find_Token -- ---------------------- procedure Super_Find_Token (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Strings.Membership; First : out Positive; Last : out Natural) is begin Wide_Search.Find_Token (Source.Data (1 .. Source.Current_Length), Set, Test, First, Last); end Super_Find_Token; ---------------- -- Super_Head -- ---------------- function Super_Head (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (1 .. Count); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Count) := (others => Pad); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Max_Length - Npad) := Source.Data (Count - Max_Length + 1 .. Slen); Result.Data (Max_Length - Npad + 1 .. Max_Length) := (others => Pad); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Head; procedure Super_Head (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : Wide_String (1 .. Max_Length); begin if Npad <= 0 then Source.Current_Length := Count; elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (Slen + 1 .. Count) := (others => Pad); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => Source.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad > Max_Length then Source.Data := (others => Pad); else Temp := Source.Data; Source.Data (1 .. Max_Length - Npad) := Temp (Count - Max_Length + 1 .. Slen); for J in Max_Length - Npad + 1 .. Max_Length loop Source.Data (J) := Pad; end loop; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Head; ----------------- -- Super_Index -- ----------------- function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Strings.Direction := Strings.Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Strings.Membership := Strings.Inside; Going : Strings.Direction := Strings.Forward) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Set, Test, Going); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Set, From, Test, Going); end Super_Index; --------------------------- -- Super_Index_Non_Blank -- --------------------------- function Super_Index_Non_Blank (Source : Super_String; Going : Strings.Direction := Strings.Forward) return Natural is begin return Wide_Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), Going); end Super_Index_Non_Blank; function Super_Index_Non_Blank (Source : Super_String; From : Positive; Going : Direction := Forward) return Natural is begin return Wide_Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), From, Going); end Super_Index_Non_Blank; ------------------ -- Super_Insert -- ------------------ function Super_Insert (Source : Super_String; Before : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Nlen : constant Natural := New_Item'Length; Tlen : constant Natural := Slen + Nlen; Blen : constant Natural := Before - 1; Alen : constant Integer := Slen - Blen; Droplen : constant Integer := Tlen - Max_Length; -- Tlen is the length of the total string before possible truncation. -- Blen, Alen are the lengths of the before and after pieces of the -- source string. begin if Alen < 0 then raise Ada.Strings.Index_Error; elsif Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Tlen) := Source.Data (Before .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Before .. Max_Length) := New_Item (New_Item'First .. New_Item'First + Max_Length - Before); else Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Max_Length) := Source.Data (Before .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (Before .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := New_Item (New_Item'Last - (Max_Length - Alen) + 1 .. New_Item'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := New_Item; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Insert; procedure Super_Insert (Source : in out Super_String; Before : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Insert (Source, Before, New_Item, Drop); end Super_Insert; ------------------ -- Super_Length -- ------------------ function Super_Length (Source : Super_String) return Natural is begin return Source.Current_Length; end Super_Length; --------------------- -- Super_Overwrite -- --------------------- function Super_Overwrite (Source : Super_String; Position : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Endpos : constant Natural := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif New_Item'Length = 0 then return Source; elsif Endpos <= Slen then Result.Current_Length := Source.Current_Length; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Position .. Endpos) := New_Item; return Result; elsif Endpos <= Max_Length then Result.Current_Length := Endpos; Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Endpos) := New_Item; return Result; else Result.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); return Result; when Strings.Left => if New_Item'Length >= Max_Length then Result.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); return Result; else Result.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Result.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; return Result; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; procedure Super_Overwrite (Source : in out Super_String; Position : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) is Max_Length : constant Positive := Source.Max_Length; Endpos : constant Positive := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif Endpos <= Slen then Source.Data (Position .. Endpos) := New_Item; elsif Endpos <= Max_Length then Source.Data (Position .. Endpos) := New_Item; Source.Current_Length := Endpos; else Source.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Source.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); when Strings.Left => if New_Item'Length > Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); else Source.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Source.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; --------------------------- -- Super_Replace_Element -- --------------------------- procedure Super_Replace_Element (Source : in out Super_String; Index : Positive; By : Wide_Character) is begin if Index <= Source.Current_Length then Source.Data (Index) := By; else raise Ada.Strings.Index_Error; end if; end Super_Replace_Element; ------------------------- -- Super_Replace_Slice -- ------------------------- function Super_Replace_Slice (Source : Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; begin if Low > Slen + 1 then raise Strings.Index_Error; elsif High < Low then return Super_Insert (Source, Low, By, Drop); else declare Blen : constant Natural := Natural'Max (0, Low - 1); Alen : constant Natural := Natural'Max (0, Slen - High); Tlen : constant Natural := Blen + By'Length + Alen; Droplen : constant Integer := Tlen - Max_Length; Result : Super_String (Max_Length); -- Tlen is the total length of the result string before any -- truncation. Blen and Alen are the lengths of the pieces -- of the original string that end up in the result string -- before and after the replaced slice. begin if Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Tlen) := Source.Data (High + 1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Low .. Max_Length) := By (By'First .. By'First + Max_Length - Low); else Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Max_Length) := Source.Data (High + 1 .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (High + 1 .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := By (By'Last - (Max_Length - Alen) + 1 .. By'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := By; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end; end if; end Super_Replace_Slice; procedure Super_Replace_Slice (Source : in out Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Replace_Slice (Source, Low, High, By, Drop); end Super_Replace_Slice; --------------------- -- Super_Replicate -- --------------------- function Super_Replicate (Count : Natural; Item : Wide_Character; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Count <= Max_Length then Result.Current_Length := Count; elsif Drop = Strings.Error then raise Ada.Strings.Length_Error; else Result.Current_Length := Max_Length; end if; Result.Data (1 .. Result.Current_Length) := (others => Item); return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : Wide_String; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Length : constant Integer := Count * Item'Length; Result : Super_String (Max_Length); Indx : Positive; begin if Length <= Max_Length then Result.Current_Length := Length; if Length > 0 then Indx := 1; for J in 1 .. Count loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; end if; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Indx := 1; while Indx + Item'Length <= Max_Length + 1 loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; Result.Data (Indx .. Max_Length) := Item (Item'First .. Item'First + Max_Length - Indx); when Strings.Left => Indx := Max_Length; while Indx - Item'Length >= 1 loop Result.Data (Indx - (Item'Length - 1) .. Indx) := Item; Indx := Indx - Item'Length; end loop; Result.Data (1 .. Indx) := Item (Item'Last - Indx + 1 .. Item'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is begin return Super_Replicate (Count, Item.Data (1 .. Item.Current_Length), Drop, Item.Max_Length); end Super_Replicate; ----------------- -- Super_Slice -- ----------------- function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Wide_String is begin -- Note: test of High > Length is in accordance with AI95-00128 if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; else return Source.Data (Low .. High); end if; end Super_Slice; function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Super_String is Result : Super_String (Source.Max_Length); begin if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; else Result.Current_Length := High - Low + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (Low .. High); end if; return Result; end Super_Slice; procedure Super_Slice (Source : Super_String; Target : out Super_String; Low : Positive; High : Natural) is begin if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; else Target.Current_Length := High - Low + 1; Target.Data (1 .. Target.Current_Length) := Source.Data (Low .. High); end if; end Super_Slice; ---------------- -- Super_Tail -- ---------------- function Super_Tail (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Count) := Source.Data (1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Max_Length) := Source.Data (1 .. Max_Length - Npad); end if; when Strings.Left => Result.Data (1 .. Max_Length - Slen) := (others => Pad); Result.Data (Max_Length - Slen + 1 .. Max_Length) := Source.Data (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Tail; procedure Super_Tail (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : constant Wide_String (1 .. Max_Length) := Source.Data; begin if Npad <= 0 then Source.Current_Length := Count; Source.Data (1 .. Count) := Temp (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Count) := Temp (1 .. Slen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Source.Data := (others => Pad); else Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Max_Length) := Temp (1 .. Max_Length - Npad); end if; when Strings.Left => for J in 1 .. Max_Length - Slen loop Source.Data (J) := Pad; end loop; Source.Data (Max_Length - Slen + 1 .. Max_Length) := Temp (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Tail; --------------------- -- Super_To_String -- --------------------- function Super_To_String (Source : Super_String) return Wide_String is begin return Source.Data (1 .. Source.Current_Length); end Super_To_String; --------------------- -- Super_Translate -- --------------------- function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Value (Mapping, Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Value (Mapping, Source.Data (J)); end loop; end Super_Translate; function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Mapping.all (Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Mapping.all (Source.Data (J)); end loop; end Super_Translate; ---------------- -- Super_Trim -- ---------------- function Super_Trim (Source : Super_String; Side : Trim_End) return Super_String is Result : Super_String (Source.Max_Length); Last : Natural := Source.Current_Length; First : Positive := 1; begin if Side = Left or else Side = Both then while First <= Last and then Source.Data (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Source.Data (Last) = ' ' loop Last := Last - 1; end loop; end if; Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Side : Trim_End) is Max_Length : constant Positive := Source.Max_Length; Last : Natural := Source.Current_Length; First : Positive := 1; Temp : Wide_String (1 .. Max_Length); begin Temp (1 .. Last) := Source.Data (1 .. Last); if Side = Left or else Side = Both then while First <= Last and then Temp (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Temp (Last) = ' ' loop Last := Last - 1; end loop; end if; Source.Data := (others => Wide_NUL); Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Temp (First .. Last); end Super_Trim; function Super_Trim (Source : Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set) return Super_String is Result : Super_String (Source.Max_Length); begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end if; end loop; end if; end loop; Result.Current_Length := 0; return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set) is begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then if First = 1 then Source.Current_Length := Last; return; else Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Source.Data (First .. Last); for J in Source.Current_Length + 1 .. Source.Max_Length loop Source.Data (J) := Wide_NUL; end loop; return; end if; end if; end loop; Source.Current_Length := 0; return; end if; end loop; Source.Current_Length := 0; end Super_Trim; ----------- -- Times -- ----------- function Times (Left : Natural; Right : Wide_Character; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Left > Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Left; for J in 1 .. Left loop Result.Data (J) := Right; end loop; end if; return Result; end Times; function Times (Left : Natural; Right : Wide_String; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Max_Length then raise Ada.Strings.Index_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right; Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; function Times (Left : Natural; Right : Super_String) return Super_String is Result : Super_String (Right.Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right.Data (1 .. Rlen); Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; --------------------- -- To_Super_String -- --------------------- function To_Super_String (Source : Wide_String; Max_Length : Natural; Drop : Truncation := Error) return Super_String is Result : Super_String (Max_Length); Slen : constant Natural := Source'Length; begin if Slen <= Max_Length then Result.Current_Length := Slen; Result.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end To_Super_String; end Ada.Strings.Wide_Superbounded;
30.279581
79
0.531037
3d6072704416b5b6b26e97647ab68c8ec827f0e2
1,241
adb
Ada
source/containers/a-cahdco.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/containers/a-cahdco.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/containers/a-cahdco.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
with Ada.Unchecked_Conversion; package body Ada.Containers.Access_Holders_Derivational_Conversions is procedure Assign ( Target : in out Base_Holders.Holder; Source : Derived_Holders.Holder) is type Base_Holder_Access is access all Base_Holders.Holder; for Base_Holder_Access'Storage_Size use 0; type Derived_Holder_Access is access constant Derived_Holders.Holder; for Derived_Holder_Access'Storage_Size use 0; function Cast is new Unchecked_Conversion (Derived_Holder_Access, Base_Holder_Access); begin Base_Holders.Assign (Target, Cast (Source'Access).all); end Assign; procedure Move ( Target : in out Base_Holders.Holder; Source : in out Derived_Holders.Holder) is type Base_Holder_Access is access all Base_Holders.Holder; for Base_Holder_Access'Storage_Size use 0; type Derived_Holder_Access is access all Derived_Holders.Holder; for Derived_Holder_Access'Storage_Size use 0; function Cast is new Unchecked_Conversion (Derived_Holder_Access, Base_Holder_Access); begin Base_Holders.Move (Target, Cast (Source'Access).all); end Move; end Ada.Containers.Access_Holders_Derivational_Conversions;
37.606061
78
0.751813
3d76a0bb836bf4a0477190a8ff15605c935b96d9
202,309
adb
Ada
AES/AES_Solutions/unoptimized/.autopilot/db/AddRoundKey.adb
itzpankajpanwar/VLSI
64f18489ebeb5f46c4c402809d3e66b2a717e8af
[ "Apache-2.0" ]
null
null
null
AES/AES_Solutions/unoptimized/.autopilot/db/AddRoundKey.adb
itzpankajpanwar/VLSI
64f18489ebeb5f46c4c402809d3e66b2a717e8af
[ "Apache-2.0" ]
null
null
null
AES/AES_Solutions/unoptimized/.autopilot/db/AddRoundKey.adb
itzpankajpanwar/VLSI
64f18489ebeb5f46c4c402809d3e66b2a717e8af
[ "Apache-2.0" ]
null
null
null
<?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>AddRoundKey</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>statemt</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>statemt</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>32</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>n</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n</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="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>word</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>480</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>52</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>4</id> <name>n_read</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>512</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>G:\AES</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>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>512</second> </item> </second> </item> </inlineStackInfo> <originalName>n</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>62</item> <item>63</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>5</id> <name>shl_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln536_fu_159_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>64</item> <item>66</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>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>_ln534</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>67</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>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>8</id> <name>j_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>69</item> <item>70</item> <item>71</item> <item>72</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>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>9</id> <name>zext_ln534</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln534_fu_165_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>73</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="_9"> <Value> <Obj> <type>0</type> <id>10</id> <name>icmp_ln534</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln534_fu_169_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>74</item> <item>76</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.13</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>12</id> <name>j</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_fu_175_p2</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>77</item> <item>79</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.65</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>13</id> <name>_ln534</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>80</item> <item>81</item> <item>82</item> </oprand_edges> <opcode>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>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>15</id> <name>add_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln536_fu_181_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>83</item> <item>84</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>16</id> <name>sext_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>sext_ln536_fu_186_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>85</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>17</id> <name>trunc_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln536_fu_191_p1</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>86</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>18</id> <name>word_addr</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>87</item> <item>89</item> <item>90</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>19</id> <name>add_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln537_fu_195_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>92</item> <item>93</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.73</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>20</id> <name>sext_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>sext_ln537_fu_201_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>94</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>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>21</id> <name>word_addr_13</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>95</item> <item>96</item> <item>97</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>22</id> <name>add_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln538_fu_234_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>99</item> <item>100</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.73</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>23</id> <name>sext_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>sext_ln538_fu_239_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>101</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>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>24</id> <name>word_addr_14</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>25</id> <name>add_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln539_fu_244_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>106</item> <item>107</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.73</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>26</id> <name>sext_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>sext_ln539_fu_249_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</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>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>27</id> <name>word_addr_15</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>109</item> <item>110</item> <item>111</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="_25"> <Value> <Obj> <type>0</type> <id>28</id> <name>word_load</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>112</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>29</id> <name>trunc_ln536_1</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln536_1_fu_206_p1</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>113</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="_27"> <Value> <Obj> <type>0</type> <id>30</id> <name>shl_ln</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln_fu_210_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>115</item> <item>116</item> <item>118</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>31</id> <name>zext_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln536_fu_218_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>119</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>32</id> <name>statemt_addr</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>120</item> <item>121</item> <item>122</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>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>33</id> <name>statemt_load</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>34</id> <name>xor_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_137_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>125</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>35</id> <name>statemt_addr_write_ln536</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>536</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>536</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>126</item> <item>127</item> <item>181</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>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>36</id> <name>word_load_8</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>128</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>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>37</id> <name>or_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln537_fu_223_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>129</item> <item>131</item> </oprand_edges> <opcode>or</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="_35"> <Value> <Obj> <type>0</type> <id>38</id> <name>zext_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln537_fu_229_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>39</id> <name>statemt_addr_157</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>135</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>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>40</id> <name>statemt_load_153</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>136</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>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>41</id> <name>xor_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_143_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>137</item> <item>138</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>42</id> <name>statemt_addr_157_write_ln537</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>537</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>537</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>139</item> <item>140</item> <item>180</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>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>43</id> <name>word_load_9</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</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>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>44</id> <name>or_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln538_fu_254_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>142</item> <item>144</item> </oprand_edges> <opcode>or</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>45</id> <name>zext_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln538_fu_259_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>145</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>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>46</id> <name>statemt_addr_158</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>146</item> <item>147</item> <item>148</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>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>47</id> <name>statemt_load_154</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>149</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>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>48</id> <name>xor_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_137_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>151</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>49</id> <name>statemt_addr_158_write_ln538</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>538</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>538</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>179</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>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>50</id> <name>word_load_10</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>154</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>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>51</id> <name>or_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln539_fu_264_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>155</item> <item>157</item> </oprand_edges> <opcode>or</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="_49"> <Value> <Obj> <type>0</type> <id>52</id> <name>zext_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln539_fu_269_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>158</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>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>53</id> <name>statemt_addr_159</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>159</item> <item>160</item> <item>161</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>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>54</id> <name>statemt_load_155</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>162</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>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>55</id> <name>xor_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_143_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>163</item> <item>164</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>56</id> <name>statemt_addr_159_write_ln539</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>539</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>539</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>178</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>57</id> <name>_ln534</name> <fileName>aes/aes_func.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>AddRoundKey</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>G:\AES</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>aes/aes_func.c</first> <second>AddRoundKey</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <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>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>59</id> <name>_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </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="_56"> <Value> <Obj> <type>2</type> <id>65</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="_57"> <Value> <Obj> <type>2</type> <id>68</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>75</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>78</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>88</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="_61"> <Value> <Obj> <type>2</type> <id>91</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>10</bitwidth> </Value> <const_type>0</const_type> <content>120</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>98</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>10</bitwidth> </Value> <const_type>0</const_type> <content>240</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>105</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>10</bitwidth> </Value> <const_type>0</const_type> <content>360</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>117</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="_65"> <Value> <Obj> <type>2</type> <id>130</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>143</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_68"> <Obj> <type>3</type> <id>7</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>14</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>12</item> <item>13</item> </node_objs> </item> <item class_id_reference="18" object_id="_70"> <Obj> <type>3</type> <id>58</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>43</count> <item_version>0</item_version> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_71"> <Obj> <type>3</type> <id>60</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>59</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>99</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_72"> <id>63</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>4</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>64</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>66</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>67</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>6</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>69</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>70</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>71</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>8</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>72</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>8</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>73</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>74</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>76</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>77</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>79</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>80</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>81</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>82</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>83</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>84</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="_90"> <id>85</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="_91"> <id>86</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="_92"> <id>87</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>89</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>90</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>92</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>93</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>94</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>95</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>96</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>97</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>99</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>100</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>101</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="_104"> <id>102</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>103</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>104</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>107</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="_109"> <id>108</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="_110"> <id>109</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>110</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>111</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>112</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>113</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>116</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="_116"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>119</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>120</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>121</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>122</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>123</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="_122"> <id>124</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>125</id> <edge_type>1</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="_124"> <id>126</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>127</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>128</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>129</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>132</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="_130"> <id>133</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>134</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>135</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="_133"> <id>136</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="_134"> <id>137</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>138</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>139</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>140</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="_138"> <id>141</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>142</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>144</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>145</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="_142"> <id>146</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>147</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>148</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>149</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>150</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>151</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>152</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="_149"> <id>153</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>154</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>155</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>158</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="_154"> <id>159</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>160</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>161</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="_157"> <id>162</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="_158"> <id>163</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>164</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>165</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="_161"> <id>166</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>167</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>174</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>175</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>176</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>177</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>14</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>178</id> <edge_type>4</edge_type> <source_obj>54</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>179</id> <edge_type>4</edge_type> <source_obj>47</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>180</id> <edge_type>4</edge_type> <source_obj>40</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>181</id> <edge_type>4</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_171"> <mId>1</mId> <mTag>AddRoundKey</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>17</mMinLatency> <mMaxLatency>17</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_172"> <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>7</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="_173"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>14</item> <item>58</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_174"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>60</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_175"> <states class_id="25" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_176"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_177"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_178"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_179"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_180"> <id>2</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_181"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_182"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_183"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_184"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_185"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_186"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_187"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_188"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_189"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_190"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_191"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_192"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_193"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_194"> <id>28</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_195"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_196"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_197"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_198"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_199"> <id>33</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_200"> <id>36</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_201"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_202"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_203"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_204"> <id>40</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_205"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_206"> <id>3</id> <operations> <count>22</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_207"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_208"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_209"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_210"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_211"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_212"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_213"> <id>28</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_214"> <id>33</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_215"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_216"> <id>36</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_217"> <id>40</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_218"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_219"> <id>43</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_220"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_221"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_222"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>47</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_224"> <id>50</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_225"> <id>51</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> <item class_id_reference="28" object_id="_228"> <id>54</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_229"> <id>4</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_230"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>43</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_233"> <id>47</id> <stage>1</stage> <latency>2</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>50</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_236"> <id>54</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_237"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_238"> <id>5</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_239"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_242"> <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="_243"> <inState>2</inState> <outState>3</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>10</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_244"> <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="_245"> <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="_246"> <inState>5</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_247"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>11</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>add_ln536_fu_181_p2 ( + ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>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>add_ln537_fu_195_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>add_ln538_fu_234_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>add_ln539_fu_244_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>9</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>grp_fu_137_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>grp_fu_143_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>icmp_ln534_fu_169_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j_fu_175_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>or_ln537_fu_223_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>or_ln538_fu_254_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>or_ln539_fu_264_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>6</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>6</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>33</second> </item> </second> </item> <item> <first>j_0_reg_126</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>statemt_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>5</second> </item> <item> <first>(2Count)</first> <second>25</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>statemt_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>5</second> </item> <item> <first>(2Count)</first> <second>25</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>word_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>9</second> </item> <item> <first>(2Count)</first> <second>27</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>word_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>9</second> </item> <item> <first>(2Count)</first> <second>27</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>12</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>5</second> </item> </second> </item> <item> <first>j_0_reg_126</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>j_reg_282</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>reg_149</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reg_154</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>shl_ln536_reg_274</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>shl_ln_reg_303</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>2</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>statemt_addr_157_reg_314</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>3</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>statemt_addr_158_reg_329</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>3</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>statemt_addr_159_reg_334</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>3</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>statemt_addr_reg_309</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>3</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>trunc_ln536_reg_287</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>10</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>10</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>11</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>add_ln536_fu_181_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>add_ln537_fu_195_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>add_ln538_fu_234_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>add_ln539_fu_244_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>grp_fu_137_p2 ( xor ) </first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>48</item> </second> </item> <item> <first>grp_fu_143_p2 ( xor ) </first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>55</item> </second> </item> <item> <first>icmp_ln534_fu_169_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>j_fu_175_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>or_ln537_fu_223_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>or_ln538_fu_254_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>or_ln539_fu_264_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>52</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>4</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</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>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>2</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>1</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>48</first> <second> <first>3</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>2</first> <second>1</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>7</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="50" tracking_level="0" version="0"> <count>36</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>38</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>51</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>58</first> <second> <count>8</count> <item_version>0</item_version> <item>28</item> <item>28</item> <item>36</item> <item>36</item> <item>43</item> <item>43</item> <item>50</item> <item>50</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>71</first> <second> <count>12</count> <item_version>0</item_version> <item>33</item> <item>33</item> <item>40</item> <item>40</item> <item>47</item> <item>47</item> <item>54</item> <item>54</item> <item>35</item> <item>42</item> <item>49</item> <item>56</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>101</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>109</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>137</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>48</item> </second> </item> <item> <first>143</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>55</item> </second> </item> <item> <first>159</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>169</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>175</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>186</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>218</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>239</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>244</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>259</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>264</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>33</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>add_ln536_fu_181</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>add_ln537_fu_195</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>add_ln538_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>add_ln539_fu_244</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>grp_fu_137</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>48</item> </second> </item> <item> <first>grp_fu_143</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>55</item> </second> </item> <item> <first>icmp_ln534_fu_169</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>j_0_phi_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>j_fu_175</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>or_ln537_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>or_ln538_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>or_ln539_fu_264</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>sext_ln536_fu_186</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>sext_ln537_fu_201</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>sext_ln538_fu_239</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>sext_ln539_fu_249</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>shl_ln536_fu_159</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>shl_ln_fu_210</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>statemt_addr_157_gep_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>statemt_addr_158_gep_fu_109</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>statemt_addr_159_gep_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>statemt_addr_gep_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>trunc_ln536_1_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>trunc_ln536_fu_191</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>word_addr_13_gep_fu_51</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>word_addr_14_gep_fu_94</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>word_addr_15_gep_fu_101</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>word_addr_gep_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>zext_ln534_fu_165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>zext_ln536_fu_218</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>zext_ln537_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>zext_ln538_fu_259</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>zext_ln539_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>1</count> <item_version>0</item_version> <item> <first>n_read_read_fu_38</first> <second> <count>1</count> <item_version>0</item_version> <item>4</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="55" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first class_id="57" tracking_level="0" version="0"> <first>statemt</first> <second>0</second> </first> <second> <count>6</count> <item_version>0</item_version> <item>33</item> <item>33</item> <item>47</item> <item>47</item> <item>35</item> <item>49</item> </second> </item> <item> <first> <first>statemt</first> <second>1</second> </first> <second> <count>6</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>54</item> <item>54</item> <item>42</item> <item>56</item> </second> </item> <item> <first> <first>word</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>28</item> <item>28</item> <item>43</item> <item>43</item> </second> </item> <item> <first> <first>word</first> <second>1</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>36</item> <item>36</item> <item>50</item> <item>50</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>15</count> <item_version>0</item_version> <item> <first>126</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>149</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>48</item> </second> </item> <item> <first>154</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>55</item> </second> </item> <item> <first>274</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>282</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>287</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>298</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>303</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>314</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>324</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>15</count> <item_version>0</item_version> <item> <first>j_0_reg_126</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>j_reg_282</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>reg_149</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>48</item> </second> </item> <item> <first>reg_154</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>55</item> </second> </item> <item> <first>shl_ln536_reg_274</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>shl_ln_reg_303</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>statemt_addr_157_reg_314</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>statemt_addr_158_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>statemt_addr_159_reg_334</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>statemt_addr_reg_309</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>trunc_ln536_reg_287</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>word_addr_13_reg_298</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>word_addr_14_reg_319</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>word_addr_15_reg_324</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>word_addr_reg_293</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>126</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>j_0_reg_126</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="58" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first>n</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> </second> </item> <item> <first>statemt(p0)</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>33</item> <item>33</item> <item>47</item> <item>47</item> </second> </item> <item> <first>store</first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>49</item> </second> </item> </second> </item> <item> <first>statemt(p1)</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>54</item> <item>54</item> </second> </item> <item> <first>store</first> <second> <count>2</count> <item_version>0</item_version> <item>42</item> <item>56</item> </second> </item> </second> </item> <item> <first>word(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>28</item> <item>28</item> <item>43</item> <item>43</item> </second> </item> </second> </item> <item> <first>word(p1)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>36</item> <item>36</item> <item>50</item> <item>50</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="60" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="61" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>3</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
31.162816
80
0.450894
1a09cd8ca83d15ec8e832080cf8d1325a6447c12
3,768
ads
Ada
tools-src/gnu/gcc/gcc/ada/a-ngelfu.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/a-ngelfu.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/a-ngelfu.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- ADA.NUMERICS.GENERIC_ELEMENTARY_FUNCTIONS -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ generic type Float_Type is digits <>; package Ada.Numerics.Generic_Elementary_Functions is pragma Pure (Generic_Elementary_Functions); function Sqrt (X : Float_Type'Base) return Float_Type'Base; function Log (X : Float_Type'Base) return Float_Type'Base; function Log (X, Base : Float_Type'Base) return Float_Type'Base; function Exp (X : Float_Type'Base) return Float_Type'Base; function "**" (Left, Right : Float_Type'Base) return Float_Type'Base; function Sin (X : Float_Type'Base) return Float_Type'Base; function Sin (X, Cycle : Float_Type'Base) return Float_Type'Base; function Cos (X : Float_Type'Base) return Float_Type'Base; function Cos (X, Cycle : Float_Type'Base) return Float_Type'Base; function Tan (X : Float_Type'Base) return Float_Type'Base; function Tan (X, Cycle : Float_Type'Base) return Float_Type'Base; function Cot (X : Float_Type'Base) return Float_Type'Base; function Cot (X, Cycle : Float_Type'Base) return Float_Type'Base; function Arcsin (X : Float_Type'Base) return Float_Type'Base; function Arcsin (X, Cycle : Float_Type'Base) return Float_Type'Base; function Arccos (X : Float_Type'Base) return Float_Type'Base; function Arccos (X, Cycle : Float_Type'Base) return Float_Type'Base; function Arctan (Y : Float_Type'Base; X : Float_Type'Base := 1.0) return Float_Type'Base; function Arctan (Y : Float_Type'Base; X : Float_Type'Base := 1.0; Cycle : Float_Type'Base) return Float_Type'Base; function Arccot (X : Float_Type'Base; Y : Float_Type'Base := 1.0) return Float_Type'Base; function Arccot (X : Float_Type'Base; Y : Float_Type'Base := 1.0; Cycle : Float_Type'Base) return Float_Type'Base; function Sinh (X : Float_Type'Base) return Float_Type'Base; function Cosh (X : Float_Type'Base) return Float_Type'Base; function Tanh (X : Float_Type'Base) return Float_Type'Base; function Coth (X : Float_Type'Base) return Float_Type'Base; function Arcsinh (X : Float_Type'Base) return Float_Type'Base; function Arccosh (X : Float_Type'Base) return Float_Type'Base; function Arctanh (X : Float_Type'Base) return Float_Type'Base; function Arccoth (X : Float_Type'Base) return Float_Type'Base; end Ada.Numerics.Generic_Elementary_Functions;
49.578947
78
0.528397
2ebd4f8f034585e7e248bf7b98af3c91f600ea99
3,232
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/rident.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/rident.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/rident.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- R I D E N T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2015, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package defines the set of restriction identifiers for use by the -- compiler and binder. It is in a separate package from Restrict so that -- it can be used by the binder without dragging in unneeded compiler -- packages. -- Note: the actual definitions of the types are in package System.Rident, -- and this package is merely an instantiation of that package. The point -- of this level of generic indirection is to allow the compile time use -- to have the image tables available (this package is not compiled with -- Discard_Names), while at run-time we do not want those image tables. -- Rather than have clients instantiate System.Rident directly, we have the -- single instantiation here at the library level, which means that we only -- have one copy of the image tables. with System.Rident; package Rident is new System.Rident;
64.64
78
0.46875
580bb8d117e38e76a8c29441c6c87b1583f28484
6,909
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2b11a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2b11a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2b11a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CD2B11A.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 IF A COLLECTION SIZE SPECIFICATION CAN BE GIVEN FOR AN -- ACCESS TYPE, THEN OPERATIONS ON VALUES OF THE ACCESS TYPE ARE NOT -- AFFECTED. -- HISTORY: -- BCB 11/01/88 CREATED ORIGINAL TEST. -- RJW 05/17/89 CHANGED FROM '.DEP' TEST TO '.ADA' TEST. -- ADDED CHECK FOR UNCHECKED_DEALLOCATION. WITH REPORT; USE REPORT; WITH SYSTEM; WITH UNCHECKED_DEALLOCATION; PROCEDURE CD2B11A IS BASIC_SIZE : CONSTANT := 1024; TYPE MAINTYPE IS ARRAY (INTEGER RANGE <>) OF INTEGER; TYPE ACC_TYPE IS ACCESS MAINTYPE; SUBTYPE ACC_RANGE IS ACC_TYPE (1 .. 3); FOR ACC_TYPE'STORAGE_SIZE USE BASIC_SIZE; TYPE RECORD_TYPE IS RECORD COMP : ACC_TYPE; END RECORD; CHECK_TYPE1 : ACC_TYPE; CHECK_TYPE2 : ACC_TYPE; CHECK_TYPE3 : ACC_TYPE(1..3); CHECK_ARRAY : ARRAY (1..2) OF ACC_TYPE; CHECK_RECORD1 : RECORD_TYPE; CHECK_RECORD2 : RECORD_TYPE; CHECK_PARAM1 : ACC_TYPE; CHECK_PARAM2 : ACC_TYPE; CHECK_NULL : ACC_TYPE := NULL; PROCEDURE PROC (ACC1,ACC2 : IN OUT ACC_TYPE) IS BEGIN IF (ACC1.ALL /= ACC2.ALL) THEN FAILED ("INCORRECT VALUES FOR DESIGNATED OBJECTS " & "- 1"); END IF; IF EQUAL (3,3) THEN ACC2 := ACC1; END IF; IF ACC2 /= ACC1 THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS " & "-1"); END IF; IF (ACC1 IN ACC_RANGE) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP TEST - 1"); END IF; END PROC; BEGIN TEST ("CD2B11A", "CHECK THAT IF A COLLECTION SIZE SPECIFICATION " & "CAN BE GIVEN FOR AN ACCESS TYPE, THEN " & "OPERATIONS ON VALUES OF THE ACCESS TYPE ARE " & "NOT AFFECTED"); CHECK_PARAM1 := NEW MAINTYPE'(25,35,45); CHECK_PARAM2 := NEW MAINTYPE'(25,35,45); PROC (CHECK_PARAM1,CHECK_PARAM2); IF ACC_TYPE'STORAGE_SIZE < BASIC_SIZE THEN FAILED ("INCORRECT VALUE FOR ACCESS TYPE STORAGE_SIZE"); END IF; CHECK_TYPE1 := NEW MAINTYPE'(25,35,45); CHECK_TYPE2 := NEW MAINTYPE'(25,35,45); CHECK_TYPE3 := NEW MAINTYPE'(1 => 1,2 => 2,3 => 3); CHECK_ARRAY (1) := NEW MAINTYPE'(25,35,45); CHECK_ARRAY (2) := NEW MAINTYPE'(25,35,45); CHECK_RECORD1.COMP := NEW MAINTYPE'(25,35,45); CHECK_RECORD2.COMP := NEW MAINTYPE'(25,35,45); IF (CHECK_TYPE1.ALL /= CHECK_TYPE2.ALL) THEN FAILED ("INCORRECT VALUES FOR DESIGNATED OBJECTS - 2"); END IF; IF EQUAL (3,3) THEN CHECK_TYPE2 := CHECK_TYPE1; END IF; IF CHECK_TYPE2 /= CHECK_TYPE1 THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 2"); END IF; IF (CHECK_TYPE1 IN ACC_RANGE) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP TEST - 2"); END IF; IF (CHECK_ARRAY (1).ALL /= CHECK_ARRAY (2).ALL) THEN FAILED ("INCORRECT VALUES FOR DESIGNATED OBJECTS - 3"); END IF; IF EQUAL (3,3) THEN CHECK_ARRAY (2) := CHECK_ARRAY (1); END IF; IF CHECK_ARRAY (2) /= CHECK_ARRAY (1) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 3"); END IF; IF (CHECK_ARRAY (1) IN ACC_RANGE) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP TEST - 3"); END IF; IF (CHECK_RECORD1.COMP.ALL /= CHECK_RECORD2.COMP.ALL) THEN FAILED ("INCORRECT VALUES FOR DESIGNATED OBJECTS - 4"); END IF; IF EQUAL (3,3) THEN CHECK_RECORD2 := CHECK_RECORD1; END IF; IF CHECK_RECORD2 /= CHECK_RECORD1 THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 4"); END IF; IF (CHECK_RECORD1.COMP IN ACC_RANGE) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP TEST - 4"); END IF; IF CHECK_TYPE3'FIRST /= IDENT_INT (1) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE3'FIRST"); END IF; IF CHECK_TYPE3'LAST /= IDENT_INT (3) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE3'LAST"); END IF; DECLARE TYPE ACC_CHAR IS ACCESS CHARACTER; FOR ACC_CHAR'STORAGE_SIZE USE 128; LIMIT : INTEGER := (ACC_CHAR'STORAGE_SIZE * SYSTEM.STORAGE_UNIT)/CHARACTER'SIZE; ACC_ARRAY : ARRAY (1 .. LIMIT + 1) OF ACC_CHAR; PLACE : INTEGER; PROCEDURE FREE IS NEW UNCHECKED_DEALLOCATION (CHARACTER, ACC_CHAR); BEGIN FOR I IN ACC_ARRAY'RANGE LOOP ACC_ARRAY (IDENT_INT (I)) := NEW CHARACTER' (IDENT_CHAR ((CHARACTER'VAL (I MOD 128)))); PLACE := I; END LOOP; FAILED ("NO EXCEPTION RAISED WHEN COLLECTION SIZE EXCEEDED"); EXCEPTION WHEN STORAGE_ERROR => BEGIN FOR I IN 1 .. PLACE LOOP IF I MOD 2 = 0 THEN FREE (ACC_ARRAY (IDENT_INT (I))); END IF; END LOOP; FOR I IN 1 .. PLACE LOOP IF I MOD 2 = 1 AND THEN IDENT_CHAR (ACC_ARRAY (I).ALL) /= CHARACTER'VAL (I MOD IDENT_INT (128)) THEN FAILED ("INCORRECT VALUE IN ARRAY"); END IF; END LOOP; END; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED"); END; RESULT; END CD2B11A;
32.134884
79
0.577508
419f1f0ff90e739726e657327b54435f5f317bad
11,093
ads
Ada
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-rtc.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2018-05-16T03:56:39.000Z
2019-07-31T13:53:56.000Z
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-rtc.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
arch/ARM/NXP/svd/lpc55s6x/nxp_svd-rtc.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2016-2019 NXP -- All rights reserved.SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from LPC55S6x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NXP_SVD.RTC is pragma Preelaborate; --------------- -- Registers -- --------------- -- Software reset control type CTRL_SWRESET_Field is ( -- Not in reset. The RTC is not held in reset. This bit must be cleared -- prior to configuring or initiating any operation of the RTC. Not_In_Reset, -- In reset. The RTC is held in reset. All register bits within the RTC -- will be forced to their reset value except the OFD bit. This bit must -- be cleared before writing to any register in the RTC - including -- writes to set any of the other bits within this register. Do not -- attempt to write to any bits of this register at the same time that -- the reset bit is being cleared. In_Reset) with Size => 1; for CTRL_SWRESET_Field use (Not_In_Reset => 0, In_Reset => 1); -- RTC 1 Hz timer alarm flag status. type CTRL_ALARM1HZ_Field is ( -- No match. No match has occurred on the 1 Hz RTC timer. Writing a 0 -- has no effect. No_Match, -- Match. A match condition has occurred on the 1 Hz RTC timer. This -- flag generates an RTC alarm interrupt request RTC_ALARM which can -- also wake up the part from any low power mode. Writing a 1 clears -- this bit. Match) with Size => 1; for CTRL_ALARM1HZ_Field use (No_Match => 0, Match => 1); -- RTC 1 kHz timer wake-up flag status. type CTRL_WAKE1KHZ_Field is ( -- Run. The RTC 1 kHz timer is running. Writing a 0 has no effect. Run, -- Time-out. The 1 kHz high-resolution/wake-up timer has timed out. This -- flag generates an RTC wake-up interrupt request RTC-WAKE which can -- also wake up the part from any low power mode. Writing a 1 clears -- this bit. Timeout) with Size => 1; for CTRL_WAKE1KHZ_Field use (Run => 0, Timeout => 1); -- RTC 1 Hz timer alarm enable for Deep power-down. type CTRL_ALARMDPD_EN_Field is ( -- Disable. A match on the 1 Hz RTC timer will not bring the part out of -- Deep power-down mode. Disable, -- Enable. A match on the 1 Hz RTC timer bring the part out of Deep -- power-down mode. Enable) with Size => 1; for CTRL_ALARMDPD_EN_Field use (Disable => 0, Enable => 1); -- RTC 1 kHz timer wake-up enable for Deep power-down. type CTRL_WAKEDPD_EN_Field is ( -- Disable. A match on the 1 kHz RTC timer will not bring the part out -- of Deep power-down mode. Disable, -- Enable. A match on the 1 kHz RTC timer bring the part out of Deep -- power-down mode. Enable) with Size => 1; for CTRL_WAKEDPD_EN_Field use (Disable => 0, Enable => 1); -- RTC 1 kHz clock enable. This bit can be set to 0 to conserve power if -- the 1 kHz timer is not used. This bit has no effect when the RTC is -- disabled (bit 7 of this register is 0). type CTRL_RTC1KHZ_EN_Field is ( -- Disable. A match on the 1 kHz RTC timer will not bring the part out -- of Deep power-down mode. Disable, -- Enable. The 1 kHz RTC timer is enabled. Enable) with Size => 1; for CTRL_RTC1KHZ_EN_Field use (Disable => 0, Enable => 1); -- RTC enable. type CTRL_RTC_EN_Field is ( -- Disable. The RTC 1 Hz and 1 kHz clocks are shut down and the RTC -- operation is disabled. This bit should be 0 when writing to load a -- value in the RTC counter register. Disable, -- Enable. The 1 Hz RTC clock is running and RTC operation is enabled. -- This bit must be set to initiate operation of the RTC. The first -- clock to the RTC counter occurs 1 s after this bit is set. To also -- enable the high-resolution, 1 kHz clock, set bit 6 in this register. Enable) with Size => 1; for CTRL_RTC_EN_Field use (Disable => 0, Enable => 1); -- RTC oscillator power-down control. type CTRL_RTC_OSC_PD_Field is ( -- See RTC_OSC_BYPASS Power_Up, -- RTC oscillator is powered-down. Powered_Down) with Size => 1; for CTRL_RTC_OSC_PD_Field use (Power_Up => 0, Powered_Down => 1); -- RTC oscillator bypass control. type CTRL_RTC_OSC_BYPASS_Field is ( -- The RTC Oscillator operates normally as a crystal oscillator with the -- crystal connected between the RTC_XTALIN and RTC_XTALOUT pins. Used, -- The RTC Oscillator is in bypass mode. In this mode a clock can be -- directly input into the RTC_XTALIN pin. Bypass) with Size => 1; for CTRL_RTC_OSC_BYPASS_Field use (Used => 0, Bypass => 1); -- RTC Sub-second counter control. type CTRL_RTC_SUBSEC_ENA_Field is ( -- The sub-second counter (if implemented) is disabled. This bit is -- cleared by a system-level POR or BOD reset as well as a by the -- RTC_ENA bit (bit 7 in this register). On modules not equipped with a -- sub-second counter, this bit will always read-back as a '0'. Power_Up, -- The 32 KHz sub-second counter is enabled (if implemented). Counting -- commences on the start of the first one-second interval after this -- bit is set. Note: This bit can only be set after the RTC_ENA bit (bit -- 7) is set by a previous write operation. Note: The RTC sub-second -- counter must be re-enabled whenever the chip exits deep power-down -- mode. Powered_Down) with Size => 1; for CTRL_RTC_SUBSEC_ENA_Field use (Power_Up => 0, Powered_Down => 1); -- RTC control register type CTRL_Register is record -- Software reset control SWRESET : CTRL_SWRESET_Field := NXP_SVD.RTC.In_Reset; -- unspecified Reserved_1_1 : HAL.Bit := 16#0#; -- RTC 1 Hz timer alarm flag status. ALARM1HZ : CTRL_ALARM1HZ_Field := NXP_SVD.RTC.No_Match; -- RTC 1 kHz timer wake-up flag status. WAKE1KHZ : CTRL_WAKE1KHZ_Field := NXP_SVD.RTC.Run; -- RTC 1 Hz timer alarm enable for Deep power-down. ALARMDPD_EN : CTRL_ALARMDPD_EN_Field := NXP_SVD.RTC.Disable; -- RTC 1 kHz timer wake-up enable for Deep power-down. WAKEDPD_EN : CTRL_WAKEDPD_EN_Field := NXP_SVD.RTC.Disable; -- RTC 1 kHz clock enable. This bit can be set to 0 to conserve power if -- the 1 kHz timer is not used. This bit has no effect when the RTC is -- disabled (bit 7 of this register is 0). RTC1KHZ_EN : CTRL_RTC1KHZ_EN_Field := NXP_SVD.RTC.Disable; -- RTC enable. RTC_EN : CTRL_RTC_EN_Field := NXP_SVD.RTC.Disable; -- RTC oscillator power-down control. RTC_OSC_PD : CTRL_RTC_OSC_PD_Field := NXP_SVD.RTC.Power_Up; -- RTC oscillator bypass control. RTC_OSC_BYPASS : CTRL_RTC_OSC_BYPASS_Field := NXP_SVD.RTC.Used; -- RTC Sub-second counter control. RTC_SUBSEC_ENA : CTRL_RTC_SUBSEC_ENA_Field := NXP_SVD.RTC.Power_Up; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CTRL_Register use record SWRESET at 0 range 0 .. 0; Reserved_1_1 at 0 range 1 .. 1; ALARM1HZ at 0 range 2 .. 2; WAKE1KHZ at 0 range 3 .. 3; ALARMDPD_EN at 0 range 4 .. 4; WAKEDPD_EN at 0 range 5 .. 5; RTC1KHZ_EN at 0 range 6 .. 6; RTC_EN at 0 range 7 .. 7; RTC_OSC_PD at 0 range 8 .. 8; RTC_OSC_BYPASS at 0 range 9 .. 9; RTC_SUBSEC_ENA at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype WAKE_VAL_Field is HAL.UInt16; -- High-resolution/wake-up timer control register type WAKE_Register is record -- A read reflects the current value of the high-resolution/wake-up -- timer. A write pre-loads a start count value into the wake-up timer -- and initializes a count-down sequence. Do not write to this register -- while counting is in progress. VAL : WAKE_VAL_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WAKE_Register use record VAL at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype SUBSEC_SUBSEC_Field is HAL.UInt15; -- Sub-second counter register type SUBSEC_Register is record -- Read-only. A read reflects the current value of the 32KHz sub-second -- counter. This counter is cleared whenever the SUBSEC_ENA bit in the -- RTC_CONTROL register is low. Up-counting at a 32KHz rate commences at -- the start of the next one-second interval after the SUBSEC_ENA bit is -- set. This counter must be re-enabled after exiting deep power-down -- mode or after the main RTC module is disabled and re-enabled. On -- modules not equipped with a sub-second counter, this register will -- read-back as all zeroes. SUBSEC : SUBSEC_SUBSEC_Field; -- unspecified Reserved_15_31 : HAL.UInt17; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SUBSEC_Register use record SUBSEC at 0 range 0 .. 14; Reserved_15_31 at 0 range 15 .. 31; end record; -- General Purpose register -- General Purpose register type GPREG_Registers is array (0 .. 7) of HAL.UInt32 with Volatile; ----------------- -- Peripherals -- ----------------- -- Real-Time Clock (RTC) type RTC_Peripheral is record -- RTC control register CTRL : aliased CTRL_Register; -- RTC match register MATCH : aliased HAL.UInt32; -- RTC counter register COUNT : aliased HAL.UInt32; -- High-resolution/wake-up timer control register WAKE : aliased WAKE_Register; -- Sub-second counter register SUBSEC : aliased SUBSEC_Register; -- General Purpose register GPREG : aliased GPREG_Registers; end record with Volatile; for RTC_Peripheral use record CTRL at 16#0# range 0 .. 31; MATCH at 16#4# range 0 .. 31; COUNT at 16#8# range 0 .. 31; WAKE at 16#C# range 0 .. 31; SUBSEC at 16#10# range 0 .. 31; GPREG at 16#40# range 0 .. 255; end record; -- Real-Time Clock (RTC) RTC_Periph : aliased RTC_Peripheral with Import, Address => System'To_Address (16#4002C000#); end NXP_SVD.RTC;
36.016234
79
0.631389
3dc2db98de865383243cccfa1adbaf87144865e1
18,990
ads
Ada
dependencies/agar/ada-gui/agar-gui-widget.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
5
2016-04-18T23:12:51.000Z
2022-03-06T05:12:07.000Z
dependencies/agar/ada-gui/agar-gui-widget.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
2
2015-10-09T19:13:25.000Z
2018-12-25T17:16:54.000Z
dependencies/agar/ada-gui/agar-gui-widget.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
15
2015-02-23T16:35:28.000Z
2022-03-25T13:40:33.000Z
with agar.core.object; with agar.core.slist; with agar.core.threads; with agar.core.types; with agar.gui.colors; with agar.gui.rect; with agar.gui.surface; with interfaces.c.strings; package agar.gui.widget is package cs renames interfaces.c.strings; -- -- forward declarations -- type widget_t; type widget_access_t is access all widget_t; pragma convention (c, widget_access_t); type binding_t; type binding_access_t is access all binding_t; pragma convention (c, binding_access_t); -- this is necessary because of a circular dependency issue -- (widget -> menu -> widget) type fake_popup_menu_access_t is access all agar.core.types.void_ptr_t; pragma convention (c, fake_popup_menu_access_t); package binding_slist is new agar.core.slist (entry_type => binding_access_t); package menu_slist is new agar.core.slist (entry_type => fake_popup_menu_access_t); -- -- constants -- binding_name_max : constant c.unsigned := 16; -- -- types -- type size_req_t is record w : c.int; h : c.int; end record; type size_req_access_t is access all size_req_t; pragma convention (c, size_req_t); pragma convention (c, size_req_access_t); type size_alloc_t is record w : c.int; h : c.int; x : c.int; y : c.int; end record; type size_alloc_access_t is access all size_alloc_t; pragma convention (c, size_alloc_t); pragma convention (c, size_alloc_access_t); type class_t is record inherit : agar.core.object.class_t; draw : access procedure (vp : agar.core.types.void_ptr_t); size_request : access procedure (vp : agar.core.types.void_ptr_t; req : size_req_access_t); size_allocate : access function (vp : agar.core.types.void_ptr_t; alloc : size_alloc_access_t) return c.int; end record; type class_access_t is access all class_t; pragma convention (c, class_t); pragma convention (c, class_access_t); type binding_type_t is ( WIDGET_NONE, WIDGET_BOOL, WIDGET_UINT, WIDGET_INT, WIDGET_UINT8, WIDGET_SINT8, WIDGET_UINT16, WIDGET_SINT16, WIDGET_UINT32, WIDGET_SINT32, WIDGET_UINT64, WIDGET_SINT64, WIDGET_FLOAT, WIDGET_DOUBLE, WIDGET_LONG_DOUBLE, WIDGET_STRING, WIDGET_POINTER, WIDGET_PROP, WIDGET_FLAG, WIDGET_FLAG8, WIDGET_FLAG16, WIDGET_FLAG32 ); for binding_type_t use ( WIDGET_NONE => 0, WIDGET_BOOL => 1, WIDGET_UINT => 2, WIDGET_INT => 3, WIDGET_UINT8 => 4, WIDGET_SINT8 => 5, WIDGET_UINT16 => 6, WIDGET_SINT16 => 7, WIDGET_UINT32 => 8, WIDGET_SINT32 => 9, WIDGET_UINT64 => 10, WIDGET_SINT64 => 11, WIDGET_FLOAT => 12, WIDGET_DOUBLE => 13, WIDGET_LONG_DOUBLE => 14, WIDGET_STRING => 15, WIDGET_POINTER => 16, WIDGET_PROP => 17, WIDGET_FLAG => 18, WIDGET_FLAG8 => 19, WIDGET_FLAG16 => 20, WIDGET_FLAG32 => 21 ); for binding_type_t'size use c.unsigned'size; pragma convention (c, binding_type_t); type size_spec_t is ( WIDGET_BAD_SPEC, WIDGET_PIXELS, WIDGET_PERCENT, WIDGET_STRINGLEN, WIDGET_FILL ); for size_spec_t use ( WIDGET_BAD_SPEC => 0, WIDGET_PIXELS => 1, WIDGET_PERCENT => 2, WIDGET_STRINGLEN => 3, WIDGET_FILL => 4 ); for size_spec_t'size use c.unsigned'size; pragma convention (c, size_spec_t); type flag_descr_t is record bitmask : c.unsigned; descr : cs.chars_ptr; writeable : c.int; end record; type flag_descr_access_t is access all flag_descr_t; pragma convention (c, flag_descr_t); pragma convention (c, flag_descr_access_t); type binding_name_t is array (1 .. binding_name_max) of aliased c.char; pragma convention (c, binding_name_t); type binding_data_prop_t is array (1 .. agar.core.object.prop_key_max) of aliased c.char; pragma convention (c, binding_data_prop_t); type binding_data_union_selector_t is (prop, size, mask); type binding_data_union_t (selector : binding_data_union_selector_t := prop) is record case selector is when prop => prop : binding_data_prop_t; when size => size : c.size_t; when mask => mask : agar.core.types.uint32_t; end case; end record; pragma convention (c, binding_data_union_t); pragma unchecked_union (binding_data_union_t); type binding_t is record name : binding_name_t; binding_type : c.int; mutex : agar.core.threads.mutex_t; p1 : agar.core.types.void_ptr_t; data : binding_data_union_t; bindings : binding_slist.entry_t; end record; pragma convention (c, binding_t); type color_t is array (1 .. 4) of aliased agar.core.types.uint8_t; pragma convention (c, color_t); type surface_id_t is new c.int; pragma convention (c, surface_id_t); subtype flags_t is c.unsigned; -- widget type type widget_private_t is limited private; type widget_t is record object : aliased agar.core.object.object_t; flags : c.unsigned; x : c.int; y : c.int; w : c.int; h : c.int; privdata : widget_private_t; end record; pragma convention (c, widget_t); -- -- API -- procedure expand (widget : widget_access_t); pragma import (c, expand, "agar_widget_expand"); procedure expand_horizontal (widget : widget_access_t); pragma import (c, expand_horizontal, "agar_widget_expand_horizontal"); procedure expand_vertical (widget : widget_access_t); pragma import (c, expand_vertical, "agar_widget_expand_vertical"); procedure size_request (widget : widget_access_t; request : size_req_t); pragma import (c, size_request, "AG_WidgetSizeReq"); function size_allocate (widget : widget_access_t; alloc : size_alloc_t) return boolean; pragma inline (size_allocate); -- input state procedure enable (widget : widget_access_t); pragma import (c, enable, "agar_widget_enable"); procedure disable (widget : widget_access_t); pragma import (c, disable, "agar_widget_disable"); function enabled (widget : widget_access_t) return boolean; pragma inline (enabled); function disabled (widget : widget_access_t) return boolean; pragma inline (disabled); -- focus function focused (widget : widget_access_t) return boolean; pragma inline (focused); procedure focus (widget : widget_access_t); pragma import (c, focus, "AG_WidgetFocus"); procedure unfocus (widget : widget_access_t); pragma import (c, unfocus, "AG_WidgetUnfocus"); -- missing: find_focused moved to agar.gui.window -- blitting function map_surface (widget : widget_access_t; surface : agar.gui.surface.surface_access_t) return surface_id_t; pragma import (c, map_surface, "AG_WidgetMapSurface"); function map_surface_no_copy (widget : widget_access_t; surface : agar.gui.surface.surface_access_t) return surface_id_t; pragma import (c, map_surface_no_copy, "AG_WidgetMapSurfaceNODUP"); procedure replace_surface (widget : widget_access_t; surface_id : surface_id_t; surface : agar.gui.surface.surface_access_t); pragma import (c, replace_surface, "AG_WidgetReplaceSurface"); procedure replace_surface_no_copy (widget : widget_access_t; surface_id : surface_id_t; surface : agar.gui.surface.surface_access_t); pragma import (c, replace_surface_no_copy, "AG_WidgetReplaceSurfaceNODUP"); procedure unmap_surface (widget : widget_access_t; surface_id : surface_id_t); pragma import (c, unmap_surface, "agar_widget_unmap_surface"); procedure update_surface (widget : widget_access_t; surface_id : surface_id_t); pragma import (c, update_surface, "agar_widget_update_surface"); procedure blit (widget : widget_access_t; surface : agar.gui.surface.surface_access_t; x : natural; y : natural); pragma inline (blit); procedure blit_from (dest_widget : widget_access_t; src_widget : widget_access_t; surface_id : surface_id_t; rect : agar.gui.rect.rect_access_t; x : integer; y : integer); pragma inline (blit_from); procedure blit_surface (widget : widget_access_t; surface_id : surface_id_t; x : integer; y : integer); pragma inline (blit_surface); -- rendering procedure push_clip_rect (widget : widget_access_t; rect : agar.gui.rect.rect_t); pragma import (c, push_clip_rect, "AG_PushClipRect"); procedure pop_clip_rect (widget : widget_access_t); pragma import (c, pop_clip_rect, "AG_PopClipRect"); -- missing: push_cursor - documented but apparently not implemented -- missing: pop_cursor procedure put_pixel (widget : widget_access_t; x : natural; y : natural; color : agar.core.types.color_t); pragma inline (put_pixel); procedure put_pixel32 (widget : widget_access_t; x : natural; y : natural; color : agar.core.types.uint32_t); pragma inline (put_pixel32); procedure put_pixel_rgb (widget : widget_access_t; x : natural; y : natural; r : agar.core.types.uint8_t; g : agar.core.types.uint8_t; b : agar.core.types.uint8_t); pragma inline (put_pixel_rgb); procedure blend_pixel_rgba (widget : widget_access_t; x : natural; y : natural; color : color_t; func : agar.gui.colors.blend_func_t); pragma inline (blend_pixel_rgba); procedure blend_pixel_32 (widget : widget_access_t; x : natural; y : natural; color : agar.core.types.uint32_t; func : agar.gui.colors.blend_func_t); pragma inline (blend_pixel_32); -- misc function find_point (class_mask : string; x : natural; y : natural) return widget_access_t; pragma inline (find_point); function find_rect (class_mask : string; x : natural; y : natural; w : positive; h : positive) return widget_access_t; pragma inline (find_rect); -- coordinates function absolute_coords_inside (widget : widget_access_t; x : natural; y : natural) return boolean; pragma inline (absolute_coords_inside); function relative_coords_inside (widget : widget_access_t; x : natural; y : natural) return boolean; pragma inline (relative_coords_inside); -- position and size setting procedure set_position (widget : widget_access_t; x : natural; y : natural); pragma inline (set_position); procedure modify_position (widget : widget_access_t; x : integer := 0; y : integer := 0); pragma inline (modify_position); procedure set_size (widget : widget_access_t; width : positive; height : positive); pragma inline (set_size); procedure modify_size (widget : widget_access_t; width : integer := 0; height : integer := 0); pragma inline (modify_size); -- 'casting' function object (widget : widget_access_t) return agar.core.object.object_access_t; pragma inline (object); -- bindings package bindings is procedure bind_pointer (widget : widget_access_t; binding : string; variable : agar.core.types.void_ptr_t); pragma inline (bind_pointer); procedure bind_property (widget : widget_access_t; binding : string; object : agar.core.object.object_access_t; name : string); pragma inline (bind_property); procedure bind_boolean (widget : widget_access_t; binding : string; variable : agar.core.types.boolean_access_t); pragma inline (bind_boolean); procedure bind_integer (widget : widget_access_t; binding : string; variable : agar.core.types.integer_access_t); pragma inline (bind_integer); procedure bind_unsigned (widget : widget_access_t; binding : string; variable : agar.core.types.unsigned_access_t); pragma inline (bind_unsigned); procedure bind_float (widget : widget_access_t; binding : string; variable : agar.core.types.float_access_t); pragma inline (bind_float); procedure bind_double (widget : widget_access_t; binding : string; variable : agar.core.types.double_access_t); pragma inline (bind_double); procedure bind_uint8 (widget : widget_access_t; binding : string; variable : agar.core.types.uint8_ptr_t); pragma inline (bind_uint8); procedure bind_int8 (widget : widget_access_t; binding : string; variable : agar.core.types.int8_ptr_t); pragma inline (bind_int8); procedure bind_flag8 (widget : widget_access_t; binding : string; variable : agar.core.types.uint8_ptr_t; mask : agar.core.types.uint8_t); pragma inline (bind_flag8); procedure bind_uint16 (widget : widget_access_t; binding : string; variable : agar.core.types.uint16_ptr_t); pragma inline (bind_uint16); procedure bind_int16 (widget : widget_access_t; binding : string; variable : agar.core.types.int16_ptr_t); pragma inline (bind_int16); procedure bind_flag16 (widget : widget_access_t; binding : string; variable : agar.core.types.uint16_ptr_t; mask : agar.core.types.uint16_t); pragma inline (bind_flag16); procedure bind_uint32 (widget : widget_access_t; binding : string; variable : agar.core.types.uint32_ptr_t); pragma inline (bind_uint32); procedure bind_int32 (widget : widget_access_t; binding : string; variable : agar.core.types.int32_ptr_t); pragma inline (bind_int32); procedure bind_flag32 (widget : widget_access_t; binding : string; variable : agar.core.types.uint32_ptr_t; mask : agar.core.types.uint32_t); pragma inline (bind_flag32); -- get function get_pointer (widget : widget_access_t; binding : string) return agar.core.types.void_ptr_t; pragma inline (get_pointer); function get_boolean (widget : widget_access_t; binding : string) return agar.core.types.boolean_t; pragma inline (get_boolean); function get_integer (widget : widget_access_t; binding : string) return agar.core.types.integer_t; pragma inline (get_integer); function get_unsigned (widget : widget_access_t; binding : string) return agar.core.types.unsigned_t; pragma inline (get_unsigned); function get_float (widget : widget_access_t; binding : string) return agar.core.types.float_t; pragma inline (get_float); function get_double (widget : widget_access_t; binding : string) return agar.core.types.double_t; pragma inline (get_double); function get_uint8 (widget : widget_access_t; binding : string) return agar.core.types.uint8_t; pragma inline (get_uint8); function get_int8 (widget : widget_access_t; binding : string) return agar.core.types.int8_t; pragma inline (get_int8); function get_uint16 (widget : widget_access_t; binding : string) return agar.core.types.uint16_t; pragma inline (get_uint16); function get_int16 (widget : widget_access_t; binding : string) return agar.core.types.int16_t; pragma inline (get_int16); function get_uint32 (widget : widget_access_t; binding : string) return agar.core.types.uint32_t; pragma inline (get_uint32); function get_int32 (widget : widget_access_t; binding : string) return agar.core.types.int32_t; pragma inline (get_int32); -- set procedure set_pointer (widget : widget_access_t; binding : string; variable : agar.core.types.void_ptr_t); pragma inline (set_pointer); procedure set_boolean (widget : widget_access_t; binding : string; variable : agar.core.types.boolean_t); pragma inline (set_boolean); procedure set_integer (widget : widget_access_t; binding : string; variable : agar.core.types.integer_t); pragma inline (set_integer); procedure set_unsigned (widget : widget_access_t; binding : string; variable : agar.core.types.unsigned_t); pragma inline (set_unsigned); procedure set_float (widget : widget_access_t; binding : string; variable : agar.core.types.float_t); pragma inline (set_float); procedure set_double (widget : widget_access_t; binding : string; variable : agar.core.types.double_t); pragma inline (set_double); procedure set_uint8 (widget : widget_access_t; binding : string; variable : agar.core.types.uint8_t); pragma inline (set_uint8); procedure set_int8 (widget : widget_access_t; binding : string; variable : agar.core.types.int8_t); pragma inline (set_int8); procedure set_uint16 (widget : widget_access_t; binding : string; variable : agar.core.types.uint16_t); pragma inline (set_uint16); procedure set_int16 (widget : widget_access_t; binding : string; variable : agar.core.types.int16_t); pragma inline (set_int16); procedure set_uint32 (widget : widget_access_t; binding : string; variable : agar.core.types.uint32_t); pragma inline (set_uint32); procedure set_int32 (widget : widget_access_t; binding : string; variable : agar.core.types.int32_t); pragma inline (set_int32); end bindings; private -- widget type type widget_private_t is record r_view : agar.gui.rect.rect2_t; r_sens : agar.gui.rect.rect2_t; style : agar.core.types.void_ptr_t; -- XXX: style_access_t surfaces : access agar.gui.surface.surface_access_t; surface_flags : access c.unsigned; nsurfaces : c.unsigned; -- openGL textures : access c.unsigned; texcoords : access c.c_float; texture_gc : access c.unsigned; ntextures_gc : c.unsigned; bindings_lock : agar.core.threads.mutex_t; bindings : binding_slist.head_t; menus : menu_slist.head_t; end record; pragma convention (c, widget_private_t); end agar.gui.widget;
27.521739
91
0.655398
1c02d27aed17ef3bfdd132285adf15d8f2fbafab
339
ads
Ada
source/required/s-explli.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/required/s-explli.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/required/s-explli.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- implementation unit required by compiler with System.Exponentiations; package System.Exp_LLI is pragma Pure; -- required for "**" with checking by compiler (s-explli.ads) function Exp_Long_Long_Integer is new Exponentiations.Generic_Exp_Integer (Long_Long_Integer); end System.Exp_LLI;
28.25
66
0.772861
2e56cd147d4e04e700077858386b65b04080aa63
5,228
ads
Ada
source/amf/uml/amf-uml-accept_call_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-accept_call_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-accept_call_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Accept_Call_Actions.Collections is pragma Preelaborate; package UML_Accept_Call_Action_Collections is new AMF.Generic_Collections (UML_Accept_Call_Action, UML_Accept_Call_Action_Access); type Set_Of_UML_Accept_Call_Action is new UML_Accept_Call_Action_Collections.Set with null record; Empty_Set_Of_UML_Accept_Call_Action : constant Set_Of_UML_Accept_Call_Action; type Ordered_Set_Of_UML_Accept_Call_Action is new UML_Accept_Call_Action_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Accept_Call_Action : constant Ordered_Set_Of_UML_Accept_Call_Action; type Bag_Of_UML_Accept_Call_Action is new UML_Accept_Call_Action_Collections.Bag with null record; Empty_Bag_Of_UML_Accept_Call_Action : constant Bag_Of_UML_Accept_Call_Action; type Sequence_Of_UML_Accept_Call_Action is new UML_Accept_Call_Action_Collections.Sequence with null record; Empty_Sequence_Of_UML_Accept_Call_Action : constant Sequence_Of_UML_Accept_Call_Action; private Empty_Set_Of_UML_Accept_Call_Action : constant Set_Of_UML_Accept_Call_Action := (UML_Accept_Call_Action_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Accept_Call_Action : constant Ordered_Set_Of_UML_Accept_Call_Action := (UML_Accept_Call_Action_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Accept_Call_Action : constant Bag_Of_UML_Accept_Call_Action := (UML_Accept_Call_Action_Collections.Bag with null record); Empty_Sequence_Of_UML_Accept_Call_Action : constant Sequence_Of_UML_Accept_Call_Action := (UML_Accept_Call_Action_Collections.Sequence with null record); end AMF.UML.Accept_Call_Actions.Collections;
56.826087
96
0.537299
2e6c9083a9fa6775136be8778d24a36515181f1f
4,442
ads
Ada
awa/plugins/awa-blogs/src/awa-blogs-modules.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-blogs/src/awa-blogs-modules.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-blogs/src/awa-blogs-modules.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- awa-blogs-module -- Blog and post management module -- Copyright (C) 2011, 2012, 2013, 2014, 2015 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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 ASF.Applications; with ADO; with AWA.Modules; with AWA.Blogs.Models; with AWA.Counters.Definition; with Security.Permissions; -- == Integration == -- The <tt>Blog_Module</tt> manages the creation, update, removal of blog posts in an application. -- It provides operations that are used by the blog beans or other services to create and update -- posts. An instance of the <tt>Blog_Module</tt> must be declared and registered in the -- AWA application. The module instance can be defined as follows: -- -- type Application is new AWA.Applications.Application with record -- Blog_Module : aliased AWA.Blogs.Modules.Blog_Module; -- end record; -- -- And registered in the `Initialize_Modules` procedure by using: -- -- Register (App => App.Self.all'Access, -- Name => AWA.Blogs.Modules.NAME, -- URI => "blogs", -- Module => App.Blog_Module'Access); -- package AWA.Blogs.Modules is NAME : constant String := "blogs"; -- Define the permissions. package ACL_Create_Blog is new Security.Permissions.Definition ("blog-create"); package ACL_Delete_Blog is new Security.Permissions.Definition ("blog-delete"); package ACL_Create_Post is new Security.Permissions.Definition ("blog-create-post"); package ACL_Delete_Post is new Security.Permissions.Definition ("blog-delete-post"); package ACL_Update_Post is new Security.Permissions.Definition ("blog-update-post"); -- Define the read post counter. package Read_Counter is new AWA.Counters.Definition (Models.POST_TABLE, "read_count"); Not_Found : exception; type Blog_Module is new AWA.Modules.Module with private; type Blog_Module_Access is access all Blog_Module'Class; -- Initialize the blog module. overriding procedure Initialize (Plugin : in out Blog_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config); -- Get the blog module instance associated with the current application. function Get_Blog_Module return Blog_Module_Access; -- Create a new blog for the user workspace. procedure Create_Blog (Model : in Blog_Module; Title : in String; Result : out ADO.Identifier); -- Create a new post associated with the given blog identifier. procedure Create_Post (Model : in Blog_Module; Blog_Id : in ADO.Identifier; Title : in String; URI : in String; Text : in String; Comment : in Boolean; Status : in AWA.Blogs.Models.Post_Status_Type; Result : out ADO.Identifier); -- Update the post title and text associated with the blog post identified by <b>Post</b>. procedure Update_Post (Model : in Blog_Module; Post_Id : in ADO.Identifier; Title : in String; URI : in String; Text : in String; Comment : in Boolean; Status : in AWA.Blogs.Models.Post_Status_Type); -- Delete the post identified by the given identifier. procedure Delete_Post (Model : in Blog_Module; Post_Id : in ADO.Identifier); private type Blog_Module is new AWA.Modules.Module with null record; end AWA.Blogs.Modules;
41.90566
99
0.621792
3dec199a263bdcaebd2296040a0f4856c7435e7a
33,291
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/9drpc.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/9drpc.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/9drpc.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . R P C -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-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. -- -- -- ------------------------------------------------------------------------------ -- Version for ??? with Unchecked_Deallocation; with Ada.Streams; with System.RPC.Net_Trace; with System.RPC.Garlic; with System.RPC.Streams; pragma Elaborate (System.RPC.Garlic); package body System.RPC is -- ??? general note: the debugging calls are very heavy, especially -- those that create exception handlers in every procedure. Do we -- really still need all this stuff? use type Ada.Streams.Stream_Element_Count; use type Ada.Streams.Stream_Element_Offset; use type Garlic.Protocol_Access; use type Garlic.Lock_Method; Max_Of_Message_Id : constant := 127; subtype Message_Id_Type is Integer range -Max_Of_Message_Id .. Max_Of_Message_Id; -- A message id is either a request id or reply id. A message id is -- provided with a message to a receiving stub which uses the opposite -- as a reply id. A message id helps to retrieve to which task is -- addressed a reply. When the environment task receives a message, the -- message id is extracted : a positive message id stands for a call, a -- negative message id stands for a reply. A null message id stands for -- an asynchronous request. subtype Request_Id_Type is Message_Id_Type range 1 .. Max_Of_Message_Id; -- When a message id is positive, it is a request type Message_Length_Per_Request is array (Request_Id_Type) of Ada.Streams.Stream_Element_Count; Header_Size : Ada.Streams.Stream_Element_Count := Streams.Get_Integer_Initial_Size + Streams.Get_SEC_Initial_Size; -- Initial size needed for frequently used header streams Stream_Error : exception; -- Occurs when a read procedure is executed on an empty stream -- or when a write procedure is executed on a full stream Partition_RPC_Receiver : RPC_Receiver; -- Cache the RPC_Receiver passed by Establish_RPC_Receiver type Anonymous_Task_Node; type Anonymous_Task_Node_Access is access Anonymous_Task_Node; -- Types we need to construct a singly linked list of anonymous tasks -- This pool is maintained to avoid a task creation each time a RPC -- occurs - to be cont'd task type Anonymous_Task_Type (Self : Anonymous_Task_Node_Access) is entry Start (Message_Id : Message_Id_Type; Partition : Partition_ID; Params_Size : Ada.Streams.Stream_Element_Count; Result_Size : Ada.Streams.Stream_Element_Count; Protocol : Garlic.Protocol_Access); -- This entry provides an anonymous task a remote call to perform. -- This task calls for a Request id is provided to construct the -- reply id by using -Request. Partition is used to send the reply -- message. Params_Size is the size of the calling stub Params stream. -- Then Protocol (used by the environment task previously) allows -- extraction of the message following the header (The header is -- extracted by the environment task) -- Note: grammar in above is obscure??? needs cleanup end Anonymous_Task_Type; type Anonymous_Task_Access is access Anonymous_Task_Type; type Anonymous_Task_List is record Head : Anonymous_Task_Node_Access; Tail : Anonymous_Task_Node_Access; end record; type Anonymous_Task_Node is record Element : Anonymous_Task_Access; Next : Anonymous_Task_Node_Access; end record; -- Types we need to construct a singly linked list of anonymous tasks. -- This pool is maintained to avoid a task creation each time a RPC occurs. protected Garbage_Collector is procedure Allocate (Item : out Anonymous_Task_Node_Access); -- Anonymous task pool management : if there is an anonymous task -- left, use it. Otherwise, allocate a new one procedure Deallocate (Item : in out Anonymous_Task_Node_Access); -- Anonymous task pool management : queue this task in the pool -- of inactive anonymous tasks. private Anonymous_List : Anonymous_Task_Node_Access; -- The list root of inactive anonymous tasks end Garbage_Collector; task Dispatcher is entry New_Request (Request : out Request_Id_Type); -- To get a new request entry Wait_On (Request_Id_Type) (Length : out Ada.Streams.Stream_Element_Count); -- To block the calling stub when it waits for a reply -- When it is resumed, we provide the size of the reply entry Wake_Up (Request : Request_Id_Type; Length : Ada.Streams.Stream_Element_Count); -- To wake up the calling stub when the environment task has -- received a reply for this request end Dispatcher; task Environnement is entry Start; -- Receive no message until Partition_Receiver is set -- Establish_RPC_Receiver decides when the environment task -- is allowed to start end Environnement; protected Partition_Receiver is entry Is_Set; -- Blocks if the Partition_RPC_Receiver has not been set procedure Set; -- Done by Establish_RPC_Receiver when Partition_RPC_Receiver -- is known private Was_Set : Boolean := False; -- True when Partition_RPC_Receiver has been set end Partition_Receiver; -- Anonymous tasks have to wait for the Partition_RPC_Receiver -- to be established type Debug_Level is (D_Elaborate, -- About the elaboration of this package D_Communication, -- About calls to Send and Receive D_Debug, -- Verbose D_Exception); -- Exception handler -- Debugging levels package Debugging is new System.RPC.Net_Trace (Debug_Level, "RPC : "); -- Debugging package procedure D (Flag : Debug_Level; Info : String) renames Debugging.Debug; -- Shortcut ------------------------ -- Partition_Receiver -- ------------------------ protected body Partition_Receiver is ------------------------------- -- Partition_Receiver.Is_Set -- ------------------------------- entry Is_Set when Was_Set is begin null; end Is_Set; ---------------------------- -- Partition_Receiver.Set -- ---------------------------- procedure Set is begin Was_Set := True; end Set; end Partition_Receiver; --------------- -- Head_Node -- --------------- procedure Head_Node (Index : out Packet_Node_Access; Stream : Params_Stream_Type) is begin Index := Stream.Extra.Head; exception when others => D (D_Exception, "exception in Head_Node"); raise; end Head_Node; --------------- -- Tail_Node -- --------------- procedure Tail_Node (Index : out Packet_Node_Access; Stream : Params_Stream_Type) is begin Index := Stream.Extra.Tail; exception when others => D (D_Exception, "exception in Tail_Node"); raise; end Tail_Node; --------------- -- Null_Node -- --------------- function Null_Node (Index : Packet_Node_Access) return Boolean is begin return Index = null; exception when others => D (D_Exception, "exception in Null_Node"); raise; end Null_Node; ---------------------- -- Delete_Head_Node -- ---------------------- procedure Delete_Head_Node (Stream : in out Params_Stream_Type) is procedure Free is new Unchecked_Deallocation (Packet_Node, Packet_Node_Access); Next_Node : Packet_Node_Access := Stream.Extra.Head.Next; begin -- Delete head node and free memory usage Free (Stream.Extra.Head); Stream.Extra.Head := Next_Node; -- If the extra storage is empty, update tail as well if Stream.Extra.Head = null then Stream.Extra.Tail := null; end if; exception when others => D (D_Exception, "exception in Delete_Head_Node"); raise; end Delete_Head_Node; --------------- -- Next_Node -- --------------- procedure Next_Node (Node : in out Packet_Node_Access) is begin -- Node is set to the next node -- If not possible, Stream_Error is raised if Node = null then raise Stream_Error; else Node := Node.Next; end if; exception when others => D (D_Exception, "exception in Next_Node"); raise; end Next_Node; --------------------- -- Append_New_Node -- --------------------- procedure Append_New_Node (Stream : in out Params_Stream_Type) is Index : Packet_Node_Access; begin -- Set Index to the end of the linked list Tail_Node (Index, Stream); if Null_Node (Index) then -- The list is empty : set head as well Stream.Extra.Head := new Packet_Node; Stream.Extra.Tail := Stream.Extra.Head; else -- The list is not empty : link new node with tail Stream.Extra.Tail.Next := new Packet_Node; Stream.Extra.Tail := Stream.Extra.Tail.Next; end if; exception when others => D (D_Exception, "exception in Append_New_Node"); raise; end Append_New_Node; ---------- -- Read -- ---------- procedure Read (Stream : in out Params_Stream_Type; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) renames System.RPC.Streams.Read; ----------- -- Write -- ----------- procedure Write (Stream : in out Params_Stream_Type; Item : Ada.Streams.Stream_Element_Array) renames System.RPC.Streams.Write; ----------------------- -- Garbage_Collector -- ----------------------- protected body Garbage_Collector is -------------------------------- -- Garbage_Collector.Allocate -- -------------------------------- procedure Allocate (Item : out Anonymous_Task_Node_Access) is New_Anonymous_Task_Node : Anonymous_Task_Node_Access; Anonymous_Task : Anonymous_Task_Access; begin -- If the list is empty, allocate a new anonymous task -- Otherwise, reuse the first queued anonymous task if Anonymous_List = null then -- Create a new anonymous task -- Provide this new task with its id to allow it -- to enqueue itself into the free anonymous task list -- with the function Deallocate New_Anonymous_Task_Node := new Anonymous_Task_Node; Anonymous_Task := new Anonymous_Task_Type (New_Anonymous_Task_Node); New_Anonymous_Task_Node.all := (Anonymous_Task, null); else -- Extract one task from the list -- Set the Next field to null to avoid possible bugs New_Anonymous_Task_Node := Anonymous_List; Anonymous_List := Anonymous_List.Next; New_Anonymous_Task_Node.Next := null; end if; -- Item is an out parameter Item := New_Anonymous_Task_Node; exception when others => D (D_Exception, "exception in Allocate (Anonymous Task)"); raise; end Allocate; ---------------------------------- -- Garbage_Collector.Deallocate -- ---------------------------------- procedure Deallocate (Item : in out Anonymous_Task_Node_Access) is begin -- Enqueue the task in the free list Item.Next := Anonymous_List; Anonymous_List := Item; exception when others => D (D_Exception, "exception in Deallocate (Anonymous Task)"); raise; end Deallocate; end Garbage_Collector; ------------ -- Do_RPC -- ------------ procedure Do_RPC (Partition : Partition_ID; Params : access Params_Stream_Type; Result : access Params_Stream_Type) is Protocol : Protocol_Access; Request : Request_Id_Type; Header : aliased Params_Stream_Type (Header_Size); R_Length : Ada.Streams.Stream_Element_Count; begin -- Parameters order : -- Opcode (provided and used by garlic) -- (1) Size (provided by s-rpc and used by garlic) -- (size of (2)+(3)+(4)+(5)) -- (2) Request (provided by calling stub (resp receiving stub) and -- used by anonymous task (resp Do_RPC)) -- *** ZERO IF APC *** -- (3) Res.len. (provided by calling stubs and used by anonymous task) -- *** ZERO IF APC *** -- (4) Receiver (provided by calling stubs and used by anonymous task) -- (5) Params (provided by calling stubs and used by anonymous task) -- The call is a remote call or a local call. A local call occurs -- when the pragma All_Calls_Remote has been specified. Do_RPC is -- called and the execution has to be performed in the PCS if Partition /= Garlic.Get_My_Partition_ID then -- Get a request id to be resumed when the reply arrives Dispatcher.New_Request (Request); -- Build header = request (2) + result.initial_size (3) D (D_Debug, "Do_RPC - Build header"); Streams.Allocate (Header); Streams.Integer_Write_Attribute -- (2) (Header'Access, Request); System.RPC.Streams.SEC_Write_Attribute -- (3) (Header'Access, Result.Initial_Size); -- Get a protocol method to communicate with the remote partition -- and give the message size D (D_Communication, "Do_RPC - Lookup for protocol to talk to partition" & Partition_ID'Image (Partition)); Garlic.Initiate_Send (Partition, Streams.Get_Stream_Size (Header'Access) + Streams.Get_Stream_Size (Params), -- (1) Protocol, Garlic.Remote_Call); -- Send the header by using the protocol method D (D_Communication, "Do_RPC - Send Header to partition" & Partition_ID'Image (Partition)); Garlic.Send (Protocol.all, Partition, Header'Access); -- (2) + (3) -- The header is deallocated Streams.Deallocate (Header); -- Send Params from Do_RPC D (D_Communication, "Do_RPC - Send Params to partition" & Partition_ID'Image (Partition)); Garlic.Send (Protocol.all, Partition, Params); -- (4) + (5) -- Let Garlic know we have nothing else to send Garlic.Complete_Send (Protocol.all, Partition); D (D_Debug, "Do_RPC - Suspend"); -- Wait for a reply and get the reply message length Dispatcher.Wait_On (Request) (R_Length); D (D_Debug, "Do_RPC - Resume"); declare New_Result : aliased Params_Stream_Type (R_Length); begin -- Adjust the Result stream size right now to be able to load -- the stream in one receive call. Create a temporary result -- that will be substituted to Do_RPC one Streams.Allocate (New_Result); -- Receive the reply message from receiving stub D (D_Communication, "Do_RPC - Receive Result from partition" & Partition_ID'Image (Partition)); Garlic.Receive (Protocol.all, Partition, New_Result'Access); -- Let Garlic know we have nothing else to receive Garlic.Complete_Receive (Protocol.all, Partition); -- Update calling stub Result stream D (D_Debug, "Do_RPC - Reconstruct Result"); Streams.Deallocate (Result.all); Result.Initial := New_Result.Initial; Streams.Dump ("|||", Result.all); end; else -- Do RPC locally and first wait for Partition_RPC_Receiver to be -- set Partition_Receiver.Is_Set; D (D_Debug, "Do_RPC - Locally"); Partition_RPC_Receiver.all (Params, Result); end if; exception when others => D (D_Exception, "exception in Do_RPC"); raise; end Do_RPC; ------------ -- Do_APC -- ------------ procedure Do_APC (Partition : Partition_ID; Params : access Params_Stream_Type) is Message_Id : Message_Id_Type := 0; Protocol : Protocol_Access; Header : aliased Params_Stream_Type (Header_Size); begin -- For more information, see above -- Request = 0 as we are not waiting for a reply message -- Result length = 0 as we don't expect a result at all if Partition /= Garlic.Get_My_Partition_ID then -- Build header = request (2) + result.initial_size (3) -- As we have an APC, the request id is null to indicate -- to the receiving stub that we do not expect a reply -- This comes from 0 = -0 D (D_Debug, "Do_APC - Build Header"); Streams.Allocate (Header); Streams.Integer_Write_Attribute (Header'Access, Integer (Message_Id)); Streams.SEC_Write_Attribute (Header'Access, 0); -- Get a protocol method to communicate with the remote partition -- and give the message size D (D_Communication, "Do_APC - Lookup for protocol to talk to partition" & Partition_ID'Image (Partition)); Garlic.Initiate_Send (Partition, Streams.Get_Stream_Size (Header'Access) + Streams.Get_Stream_Size (Params), Protocol, Garlic.Remote_Call); -- Send the header by using the protocol method D (D_Communication, "Do_APC - Send Header to partition" & Partition_ID'Image (Partition)); Garlic.Send (Protocol.all, Partition, Header'Access); -- The header is deallocated Streams.Deallocate (Header); -- Send Params from Do_APC D (D_Communication, "Do_APC - Send Params to partition" & Partition_ID'Image (Partition)); Garlic.Send (Protocol.all, Partition, Params); -- Let Garlic know we have nothing else to send Garlic.Complete_Send (Protocol.all, Partition); else declare Result : aliased Params_Stream_Type (0); begin -- Result is here a dummy parameter -- No reason to deallocate as it is not allocated at all Partition_Receiver.Is_Set; D (D_Debug, "Do_APC - Locally"); Partition_RPC_Receiver.all (Params, Result'Access); end; end if; exception when others => D (D_Exception, "exception in Do_APC"); raise; end Do_APC; ---------------------------- -- Establish_RPC_Receiver -- ---------------------------- procedure Establish_RPC_Receiver (Partition : Partition_ID; Receiver : RPC_Receiver) is begin -- Set Partition_RPC_Receiver and allow RPC mechanism Partition_RPC_Receiver := Receiver; Partition_Receiver.Set; D (D_Elaborate, "Partition_Receiver is set"); exception when others => D (D_Exception, "exception in Establish_RPC_Receiver"); raise; end Establish_RPC_Receiver; ---------------- -- Dispatcher -- ---------------- task body Dispatcher is Last_Request : Request_Id_Type := Request_Id_Type'First; Current_Rqst : Request_Id_Type := Request_Id_Type'First; Current_Size : Ada.Streams.Stream_Element_Count; begin loop -- Three services: -- New_Request to get an entry in Dispatcher table -- Wait_On for Do_RPC calls -- Wake_Up called by environment task when a Do_RPC receives -- the result of its remote call select accept New_Request (Request : out Request_Id_Type) do Request := Last_Request; -- << TODO >> -- ??? Availability check if Last_Request = Request_Id_Type'Last then Last_Request := Request_Id_Type'First; else Last_Request := Last_Request + 1; end if; end New_Request; or accept Wake_Up (Request : Request_Id_Type; Length : Ada.Streams.Stream_Element_Count) do -- The environment reads the header and has been notified -- of the reply id and the size of the result message Current_Rqst := Request; Current_Size := Length; end Wake_Up; -- << TODO >> -- ??? Must be select with delay for aborted tasks select accept Wait_On (Current_Rqst) (Length : out Ada.Streams.Stream_Element_Count) do Length := Current_Size; end Wait_On; or -- To free the Dispatcher when a task is aborted delay 1.0; end select; or terminate; end select; end loop; exception when others => D (D_Exception, "exception in Dispatcher body"); raise; end Dispatcher; ------------------------- -- Anonymous_Task_Type -- ------------------------- task body Anonymous_Task_Type is Whoami : Anonymous_Task_Node_Access := Self; C_Message_Id : Message_Id_Type; -- Current Message Id C_Partition : Partition_ID; -- Current Partition Params_S : Ada.Streams.Stream_Element_Count; -- Params message size Result_S : Ada.Streams.Stream_Element_Count; -- Result message size C_Protocol : Protocol_Access; -- Current Protocol begin loop -- Get a new RPC to execute select accept Start (Message_Id : Message_Id_Type; Partition : Partition_ID; Params_Size : Ada.Streams.Stream_Element_Count; Result_Size : Ada.Streams.Stream_Element_Count; Protocol : Protocol_Access) do C_Message_Id := Message_Id; C_Partition := Partition; Params_S := Params_Size; Result_S := Result_Size; C_Protocol := Protocol; end Start; or terminate; end select; declare Params : aliased Params_Stream_Type (Params_S); Result : aliased Params_Stream_Type (Result_S); Header : aliased Params_Stream_Type (Header_Size); begin -- We reconstruct all the client context : Params and Result -- with the SAME size, then we receive Params from calling stub D (D_Communication, "Anonymous Task - Receive Params from partition" & Partition_ID'Image (C_Partition)); Garlic.Receive (C_Protocol.all, C_Partition, Params'Access); -- Let Garlic know we don't receive anymore Garlic.Complete_Receive (C_Protocol.all, C_Partition); -- Check that Partition_RPC_Receiver has been set Partition_Receiver.Is_Set; -- Do it locally D (D_Debug, "Anonymous Task - Perform Partition_RPC_Receiver for request" & Message_Id_Type'Image (C_Message_Id)); Partition_RPC_Receiver (Params'Access, Result'Access); -- If this was a RPC we send the result back -- Otherwise, do nothing else than deallocation if C_Message_Id /= 0 then -- Build Header = -C_Message_Id + Result Size -- Provide the request id to the env task of the calling -- stub partition We get the real result stream size : the -- calling stub (in Do_RPC) updates its size to this one D (D_Debug, "Anonymous Task - Build Header"); Streams.Allocate (Header); Streams.Integer_Write_Attribute (Header'Access, Integer (-C_Message_Id)); Streams.SEC_Write_Attribute (Header'Access, Streams.Get_Stream_Size (Result'Access)); -- Get a protocol method to communicate with the remote -- partition and give the message size D (D_Communication, "Anonymous Task - Lookup for protocol talk to partition" & Partition_ID'Image (C_Partition)); Garlic.Initiate_Send (C_Partition, Streams.Get_Stream_Size (Header'Access) + Streams.Get_Stream_Size (Result'Access), C_Protocol, Garlic.Remote_Call); -- Send the header by using the protocol method D (D_Communication, "Anonymous Task - Send Header to partition" & Partition_ID'Image (C_Partition)); Garlic.Send (C_Protocol.all, C_Partition, Header'Access); -- Send Result toDo_RPC D (D_Communication, "Anonymous Task - Send Result to partition" & Partition_ID'Image (C_Partition)); Garlic.Send (C_Protocol.all, C_Partition, Result'Access); -- Let Garlic know we don't send anymore Garlic.Complete_Send (C_Protocol.all, C_Partition); Streams.Deallocate (Header); end if; Streams.Deallocate (Params); Streams.Deallocate (Result); end; -- Enqueue into the anonymous task free list : become inactive Garbage_Collector.Deallocate (Whoami); end loop; exception when others => D (D_Exception, "exception in Anonymous_Task_Type body"); raise; end Anonymous_Task_Type; ----------------- -- Environment -- ----------------- task body Environnement is Partition : Partition_ID; Message_Size : Ada.Streams.Stream_Element_Count; Result_Size : Ada.Streams.Stream_Element_Count; Message_Id : Message_Id_Type; Header : aliased Params_Stream_Type (Header_Size); Protocol : Protocol_Access; Anonymous : Anonymous_Task_Node_Access; begin -- Wait the Partition_RPC_Receiver to be set accept Start; D (D_Elaborate, "Environment task elaborated"); loop -- We receive first a fixed size message : the header -- Header = Message Id + Message Size Streams.Allocate (Header); -- Garlic provides the size of the received message and the -- protocol to use to communicate with the calling partition Garlic.Initiate_Receive (Partition, Message_Size, Protocol, Garlic.Remote_Call); D (D_Communication, "Environment task - Receive protocol to talk to active partition" & Partition_ID'Image (Partition)); -- Extract the header to route the message either to -- an anonymous task (Message Id > 0 <=> Request Id) -- or to a waiting task (Message Id < 0 <=> Reply Id) D (D_Communication, "Environment task - Receive Header from partition" & Partition_ID'Image (Partition)); Garlic.Receive (Protocol.all, Partition, Header'Access); -- Evaluate the remaining size of the message Message_Size := Message_Size - Streams.Get_Stream_Size (Header'Access); -- Extract from header : message id and message size Streams.Integer_Read_Attribute (Header'Access, Message_Id); Streams.SEC_Read_Attribute (Header'Access, Result_Size); if Streams.Get_Stream_Size (Header'Access) /= 0 then -- If there are stream elements left in the header ??? D (D_Exception, "Header is not empty"); raise Program_Error; end if; if Message_Id < 0 then -- The message was sent by a receiving stub : wake up the -- calling task - We have a reply there D (D_Debug, "Environment Task - Receive Reply from partition" & Partition_ID'Image (Partition)); Dispatcher.Wake_Up (-Message_Id, Result_Size); else -- The message was send by a calling stub : get an anonymous -- task to perform the job D (D_Debug, "Environment Task - Receive Request from partition" & Partition_ID'Image (Partition)); Garbage_Collector.Allocate (Anonymous); -- We subtracted the size of the header from the size of the -- global message in order to provide immediately Params size Anonymous.Element.Start (Message_Id, Partition, Message_Size, Result_Size, Protocol); end if; -- Deallocate header : unnecessary - WARNING Streams.Deallocate (Header); end loop; exception when others => D (D_Exception, "exception in Environment"); raise; end Environnement; begin -- Set debugging information Debugging.Set_Environment_Variable ("RPC"); Debugging.Set_Debugging_Name ("D", D_Debug); Debugging.Set_Debugging_Name ("E", D_Exception); Debugging.Set_Debugging_Name ("C", D_Communication); Debugging.Set_Debugging_Name ("Z", D_Elaborate); D (D_Elaborate, "To be elaborated"); -- When this body is elaborated we should ensure that RCI name server -- has been already elaborated : this means that Establish_RPC_Receiver -- has already been called and that Partition_RPC_Receiver is set Environnement.Start; D (D_Elaborate, "ELABORATED"); end System.RPC;
31.645437
79
0.564597
2efce5b7002bfe12d6e66ff106da42704bfdb4a6
5,870
adb
Ada
source/amf/mofext/amf-internals-mof_elements.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/mofext/amf-internals-mof_elements.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/mofext/amf-internals-mof_elements.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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.Extents; with AMF.Internals.Helpers; with AMF.Internals.Tables.MOFEXT_Element_Table; with AMF.Internals.Tables.MOFEXT_Reflection; package body AMF.Internals.MOF_Elements is ------------ -- Extent -- ------------ overriding function Extent (Self : not null access constant MOF_Element_Proxy) return AMF.Extents.Extent_Access is begin return AMF.Internals.Extents.Proxy (AMF.Internals.Tables.MOFEXT_Element_Table.Table (Self.Element).Extent); end Extent; --------- -- Get -- --------- overriding function Get (Self : not null access constant MOF_Element_Proxy; Property : not null AMF.CMOF.Properties.CMOF_Property_Access) return League.Holders.Holder is begin return AMF.Internals.Tables.MOFEXT_Reflection.Get (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (Property))); end Get; -------------------- -- Get_Meta_Class -- -------------------- overriding function Get_Meta_Class (Self : not null access constant MOF_Element_Proxy) return AMF.CMOF.Classes.CMOF_Class_Access is begin return AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.MOFEXT_Reflection.Get_Meta_Class (Self.Element))); end Get_Meta_Class; -- ------------------- -- -- Must_Be_Owned -- -- ------------------- -- -- overriding function Must_Be_Owned -- (Self : not null access constant UML_Element_Proxy) return Boolean -- is -- pragma Unreferenced (Self); -- -- -- [UML241] 7.3.14 Element (from Kernel) -- -- -- -- The query mustBeOwned() indicates whether elements of this type must -- -- have an owner. Subclasses of Element that do not require an owner -- -- must override this operation. -- -- -- -- Element::mustBeOwned() : Boolean; -- -- mustBeOwned = true -- -- begin -- return True; -- end Must_Be_Owned; --------- -- Set -- --------- overriding procedure Set (Self : not null access MOF_Element_Proxy; Property : not null AMF.CMOF.Properties.CMOF_Property_Access; Value : League.Holders.Holder) is begin AMF.Internals.Tables.MOFEXT_Reflection.Set (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (Property)), Value); end Set; end AMF.Internals.MOF_Elements;
43.80597
83
0.489949
1a2278d03b56b59019e41d37a64da9054aefb52c
17,262
adb
Ada
test/quick_wav_data_check/src.prep/quick_wav_data_checks-NUM_TYPE_checks.adb
Ada-Audio/wavefiles
8e1162c5b9dc604a835f60be6a78e8f9d3c85052
[ "MIT" ]
10
2016-02-29T09:35:56.000Z
2020-05-16T02:55:20.000Z
test/quick_wav_data_check/src.prep/quick_wav_data_checks-NUM_TYPE_checks.adb
gusthoff/wavefiles
8e1162c5b9dc604a835f60be6a78e8f9d3c85052
[ "MIT" ]
null
null
null
test/quick_wav_data_check/src.prep/quick_wav_data_checks-NUM_TYPE_checks.adb
gusthoff/wavefiles
8e1162c5b9dc604a835f60be6a78e8f9d3c85052
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- THIS IS AN AUTOMATICALLY GENERATED FILE! DO NOT EDIT! -- -- -- -- WAVEFILES -- -- -- -- Quick Wave Data I/O Check -- -- -- -- The MIT License (MIT) -- -- -- -- Copyright (c) 2020 Gustavo A. Hoffmann -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining -- -- a copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, sublicense, and / or sell copies of the Software, and to -- -- permit persons to whom the Software is furnished to do so, subject to -- -- the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be -- -- included in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -- -- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -- -- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -- -- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -- -- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- ------------------------------------------------------------------------------ with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Audio.Wavefiles; use Audio.Wavefiles; with Audio.Wavefiles.Report; use Audio.Wavefiles.Report; with Audio.Wavefiles.Data_Types; use Audio.Wavefiles.Data_Types; with Audio.Wavefiles.Data_Types.Text_IO; use Audio.Wavefiles.Data_Types.Text_IO; #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then with Audio.Wavefiles.Generic_Float_PCM_IO; #else with Audio.Wavefiles.Generic_Fixed_PCM_IO; #end if; with Audio.RIFF.Wav.Formats; use Audio.RIFF.Wav.Formats; with Audio.RIFF.Wav.Formats.Report; #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then package body Quick_Wav_Data_Checks.Float_Checks is #else package body Quick_Wav_Data_Checks.Fixed_Checks is #end if; Verbose : constant Boolean := False; type Integer_64 is range -2 ** 63 .. 2 ** 63 - 1 with Size => 64; package Fixed_64_PCM_As_Integer_Text_IO is new Ada.Text_IO.Integer_IO (Integer_64); #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then subtype PCM_Sample is Wav_Float_128; subtype PCM_Buffer is Wav_Buffer_Float_128; subtype Channel_Range is Wav_Buffer_Range; package PCM_Sample_Text_IO renames Wav_Float_128_Text_IO; package PCM_IO is new Audio.Wavefiles.Generic_Float_PCM_IO (PCM_Sample => PCM_Sample, Channel_Range => Channel_Range, PCM_MC_Sample => PCM_Buffer); use PCM_IO; PCM_Ref : constant PCM_Buffer (1 .. 11) := (1 => 2#1.0#e-0, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => (2#1.0#e-0 + 2#1.0#e-23), 6 => (-2#1.0#e-0 - 2#1.0#e-23), 7 => (2#1.0#e-0 + 2#1.0#e-52), 8 => (-2#1.0#e-0 - 2#1.0#e-52), 9 => (2#1.0#e-0 + 2#1.0#e-56), 10 => (-2#1.0#e-0 - 2#1.0#e-56), others => 0.0); -- 32-bit Float: 23-bit mantissa -- 64-bit Float: 52-bit mantissa -- 128-bit Float: 112-bit mantissa PCM_Ref_32 : constant PCM_Buffer (1 .. 11) := (1 => 2#1.0#e-0, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => (2#1.0#e-0 + 2#1.0#e-23), 6 => (-2#1.0#e-0 - 2#1.0#e-23), 7 => (2#1.0#e-0), 8 => (-2#1.0#e-0), 9 => (2#1.0#e-0), 10 => (-2#1.0#e-0), others => 0.0); PCM_Ref_64 : constant PCM_Buffer (1 .. 11) := (1 => 2#1.0#e-0, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => (2#1.0#e-0 + 2#1.0#e-23), 6 => (-2#1.0#e-0 - 2#1.0#e-23), 7 => (2#1.0#e-0 + 2#1.0#e-52), 8 => (-2#1.0#e-0 - 2#1.0#e-52), 9 => (2#1.0#e-0), 10 => (-2#1.0#e-0), others => 0.0); #else subtype PCM_Sample is Wav_Fixed_64; subtype PCM_Buffer is Wav_Buffer_Fixed_64; subtype Channel_Range is Wav_Buffer_Range; package PCM_Sample_Text_IO renames Wav_Fixed_64_Text_IO; package PCM_IO is new Audio.Wavefiles.Generic_Fixed_PCM_IO (PCM_Sample => PCM_Sample, Channel_Range => Channel_Range, PCM_MC_Sample => PCM_Buffer); use PCM_IO; PCM_Ref : constant PCM_Buffer (1 .. 15) := (1 => 16#0.FFFF_FFFF_FFFF_FFFE#, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => 2#1.0#e-15, 6 => -2#1.0#e-15, 7 => 2#1.0#e-23, 8 => -2#1.0#e-23, 9 => 2#1.0#e-31, 10 => -2#1.0#e-31, 11 => 2#1.0#e-63, 12 => -2#1.0#e-63, others => 0.0); PCM_Ref_16 : constant PCM_Buffer (1 .. 15) := (1 => 16#0.FFFE_0000_0000_0000#, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => 2#1.0#e-15, 6 => -2#1.0#e-15, others => 0.0); PCM_Ref_24 : constant PCM_Buffer (1 .. 15) := (1 => 16#0.FFFF_FE00_0000_0000#, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => 2#1.0#e-15, 6 => -2#1.0#e-15, 7 => 2#1.0#e-23, 8 => -2#1.0#e-23, others => 0.0); PCM_Ref_32 : constant PCM_Buffer (1 .. 15) := (1 => 16#0.FFFF_FFFE_0000_0000#, 2 => -2#1.0#e-0, 3 => 2#1.0#e-1, 4 => -2#1.0#e-1, 5 => 2#1.0#e-15, 6 => -2#1.0#e-15, 7 => 2#1.0#e-23, 8 => -2#1.0#e-23, 9 => 2#1.0#e-31, 10 => -2#1.0#e-31, others => 0.0); #end if; type Bits_Per_Sample_List is array (Positive range <>) of Wav_Bit_Depth; #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then Test_Bits_Per_Sample : constant Bits_Per_Sample_List := (Bit_Depth_32, Bit_Depth_64); #else Test_Bits_Per_Sample : constant Bits_Per_Sample_List := (Bit_Depth_16, Bit_Depth_24, Bit_Depth_32); #end if; procedure Display_PCM_Vals (PCM_Vals : PCM_Buffer; Header : String); procedure Write_PCM_Vals (WF : in out Wavefile; PCM_Vals : PCM_Buffer); function PCM_Data_Is_OK (PCM_Ref, PCM_DUT : PCM_Buffer) return Boolean; function PCM_Data_Is_OK (Test_Bits : Wav_Bit_Depth; PCM_DUT : PCM_Buffer) return Boolean; function Wav_IO_OK_For_Audio_Resolution (Test_Bits : Wav_Bit_Depth; Wav_Test_File_Name : String) return Boolean; procedure Display_Info (WF : Wavefile; Header : String); procedure Write_Wavefile (Wav_File_Name : String; Test_Bits : Wav_Bit_Depth); procedure Read_Wavefile (Wav_File_Name : String; PCM_DUT : out PCM_Buffer); function Image (B : Wav_Bit_Depth) return String renames Audio.RIFF.Wav.Formats.Report.Image; ---------------------- -- Display_PCM_Vals -- ---------------------- procedure Display_PCM_Vals (PCM_Vals : PCM_Buffer; Header : String) is #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then Display_Integer_Value : constant Boolean := False; #else Display_Integer_Value : constant Boolean := True; #end if; begin Put_Line (Header); for Sample_Count in PCM_Vals'Range loop declare #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then PCM_Integer : array (1 .. 2) of Integer_64 with Address => PCM_Vals (Sample_Count)'Address, Size => 128; #else PCM_Integer : Integer_64 with Address => PCM_Vals (Sample_Count)'Address, Size => 64; #end if; begin Put (" Val: "); PCM_Sample_Text_IO.Put (Item => PCM_Vals (Sample_Count), Fore => 5, Aft => 60, Exp => 5); if Display_Integer_Value then Put (" - "); #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then for I in PCM_Integer'Range loop Fixed_64_PCM_As_Integer_Text_IO.Put (PCM_Integer (I), Base => 2, Width => 68); end loop; #else Fixed_64_PCM_As_Integer_Text_IO.Put (PCM_Integer, Base => 2, Width => 68); #end if; end if; New_Line; end; end loop; end Display_PCM_Vals; -------------------- -- Write_PCM_Vals -- -------------------- procedure Write_PCM_Vals (WF : in out Wavefile; PCM_Vals : PCM_Buffer) is PCM_Buf : PCM_Buffer (1 .. Number_Of_Channels (WF)); begin for Sample_Count in PCM_Vals'Range loop for J in PCM_Buf'Range loop PCM_Buf (J) := PCM_Vals (Sample_Count); end loop; Put (WF, PCM_Buf); end loop; end Write_PCM_Vals; ------------------ -- Display_Info -- ------------------ procedure Display_Info (WF : Wavefile; Header : String) is Separator : constant String := "==========================================================="; begin Put_Line (Separator); Put_Line (Header); Display_Info (WF); Put_Line (Separator); end Display_Info; -------------------- -- Write_Wavefile -- -------------------- procedure Write_Wavefile (Wav_File_Name : String; Test_Bits : Wav_Bit_Depth) is WF_Out : Wavefile; Wave_Format : Wave_Format_Extensible; begin Wave_Format := Init (Bit_Depth => Test_Bits, Sample_Rate => Sample_Rate_44100, Number_Of_Channels => 2, #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then Use_Float => True); #else Use_Float => False); #end if; WF_Out.Set_Format_Of_Wavefile (Wave_Format); WF_Out.Create (Out_File, Wav_File_Name); Write_PCM_Vals (WF_Out, PCM_Ref); WF_Out.Close; end Write_Wavefile; ------------------- -- Read_Wavefile -- ------------------- procedure Read_Wavefile (Wav_File_Name : String; PCM_DUT : out PCM_Buffer) is WF_In : Wavefile; -- Wave_Format : Wave_Format_Extensible; EOF : Boolean; Samples : Integer := 0; begin WF_In.Open (In_File, Wav_File_Name); -- Wave_Format := WF_In.Format_Of_Wavefile; if Verbose then Display_Info (WF_In, "Input File:"); end if; Samples := 0; PCM_DUT := (others => 0.0); loop Samples := Samples + 1; -- Put ("[" & Integer'Image (Samples) & "]"); declare PCM_Buf : constant PCM_Buffer := Get (WF_In); begin PCM_DUT (Samples) := PCM_Buf (PCM_Buf'First); end; EOF := WF_In.End_Of_File; exit when EOF; end loop; if Verbose then Display_PCM_Vals (PCM_Ref, "Constant PCM values for testing:"); Display_PCM_Vals (PCM_DUT, "Read PCM values:"); end if; WF_In.Close; end Read_Wavefile; -------------------- -- PCM_Data_Is_OK -- -------------------- function PCM_Data_Is_OK (PCM_Ref, PCM_DUT : PCM_Buffer) return Boolean is Success : Boolean := True; begin for I in PCM_DUT'Range loop if PCM_DUT (I) /= PCM_Ref (I) then Put_Line ("- Error for check at index" & Integer'Image (I)); Success := False; end if; end loop; return Success; end PCM_Data_Is_OK; -------------------- -- PCM_Data_Is_OK -- -------------------- function PCM_Data_Is_OK (Test_Bits : Wav_Bit_Depth; PCM_DUT : PCM_Buffer) return Boolean is begin case Test_Bits is #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then when Bit_Depth_32 => return PCM_Data_Is_OK (PCM_Ref_32, PCM_DUT); when Bit_Depth_64 => return PCM_Data_Is_OK (PCM_Ref_64, PCM_DUT); #else when Bit_Depth_16 => return PCM_Data_Is_OK (PCM_Ref_16, PCM_DUT); when Bit_Depth_24 => return PCM_Data_Is_OK (PCM_Ref_24, PCM_DUT); when Bit_Depth_32 => return PCM_Data_Is_OK (PCM_Ref_32, PCM_DUT); #end if; when others => Put_Line ("Unknown test for " & Image (Test_Bits) & " bits"); return False; end case; end PCM_Data_Is_OK; ------------------------------------ -- Wav_IO_OK_For_Audio_Resolution -- ------------------------------------ function Wav_IO_OK_For_Audio_Resolution (Test_Bits : Wav_Bit_Depth; Wav_Test_File_Name : String) return Boolean is Test_Bits_String : constant String := Trim (Image (Test_Bits), Ada.Strings.Both); Wav_File_Name : constant String := Wav_Test_File_Name & "_" & Test_Bits_String & ".wav"; Test_Message : constant String #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then := "Float " & Image (Test_Bits); #else := "Fixed " & Image (Test_Bits); #end if; PCM_DUT : PCM_Buffer (PCM_Ref'Range); Success : Boolean := True; begin Write_Wavefile (Wav_File_Name, Test_Bits); Read_Wavefile (Wav_File_Name, PCM_DUT); if PCM_Data_Is_OK (Test_Bits, PCM_DUT) then Put_Line ("PASS : " & Test_Message); else Put_Line ("FAIL : " & Test_Message); Success := False; end if; return Success; end Wav_IO_OK_For_Audio_Resolution; --------------- -- Wav_IO_OK -- --------------- function Wav_IO_OK (Wav_Filename_Prefix : String) return Boolean is Wav_Test_File_Name : constant String #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then := Wav_Filename_Prefix & "check_extremes_float"; #else := Wav_Filename_Prefix & "check_extremes_fixed"; #end if; Success : Boolean := True; begin for Test_Bits of Test_Bits_Per_Sample loop if not Wav_IO_OK_For_Audio_Resolution (Test_Bits, Wav_Test_File_Name) then Success := False; end if; end loop; return Success; end Wav_IO_OK; #if NUM_TYPE'Defined and then (NUM_TYPE = "FLOAT") then end Quick_Wav_Data_Checks.Float_Checks; #else end Quick_Wav_Data_Checks.Fixed_Checks; #end if;
34.318091
78
0.473526
3df3832fa21a839fe949dfd48bd72f893e333c92
526
ads
Ada
source/nodes/program-nodes-discriminant_association_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-discriminant_association_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-discriminant_association_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Nodes.Generic_Vectors; with Program.Elements.Discriminant_Associations; package Program.Nodes.Discriminant_Association_Vectors is new Program.Nodes.Generic_Vectors (Program.Elements.Discriminant_Associations .Discriminant_Association_Vector); pragma Preelaborate (Program.Nodes.Discriminant_Association_Vectors);
35.066667
69
0.718631
2e4eff88f1476c03eee7f55d66e096313f81a62c
4,799
ads
Ada
source/amf/dd/amf-dg-markers-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/dd/amf-dg-markers-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/dd/amf-dg-markers-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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.DG.Markers.Collections is pragma Preelaborate; package DG_Marker_Collections is new AMF.Generic_Collections (DG_Marker, DG_Marker_Access); type Set_Of_DG_Marker is new DG_Marker_Collections.Set with null record; Empty_Set_Of_DG_Marker : constant Set_Of_DG_Marker; type Ordered_Set_Of_DG_Marker is new DG_Marker_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_DG_Marker : constant Ordered_Set_Of_DG_Marker; type Bag_Of_DG_Marker is new DG_Marker_Collections.Bag with null record; Empty_Bag_Of_DG_Marker : constant Bag_Of_DG_Marker; type Sequence_Of_DG_Marker is new DG_Marker_Collections.Sequence with null record; Empty_Sequence_Of_DG_Marker : constant Sequence_Of_DG_Marker; private Empty_Set_Of_DG_Marker : constant Set_Of_DG_Marker := (DG_Marker_Collections.Set with null record); Empty_Ordered_Set_Of_DG_Marker : constant Ordered_Set_Of_DG_Marker := (DG_Marker_Collections.Ordered_Set with null record); Empty_Bag_Of_DG_Marker : constant Bag_Of_DG_Marker := (DG_Marker_Collections.Bag with null record); Empty_Sequence_Of_DG_Marker : constant Sequence_Of_DG_Marker := (DG_Marker_Collections.Sequence with null record); end AMF.DG.Markers.Collections;
52.163043
78
0.495103
c79017b59c113a496c356a04160f48f67eefaa4c
27,969
adb
Ada
ADL/drivers/stm32g474/stm32-dma.adb
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
ADL/drivers/stm32g474/stm32-dma.adb
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
ADL/drivers/stm32g474/stm32-dma.adb
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_dma.c -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief DMA HAL module driver. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ with Ada.Unchecked_Conversion; with System.Storage_Elements; with STM32_SVD.DMA; use STM32_SVD.DMA; package body STM32.DMA is type DMA_Stream_Record is record -- configuration register CR : CCR_Register; -- number of data register NDTR : CNDTR_Register; -- peripheral address register PAR : UInt32; -- memory address register MAR : UInt32; end record with Volatile; for DMA_Stream_Record use record CR at 0 range 0 .. 31; NDTR at 4 range 0 .. 31; PAR at 8 range 0 .. 31; MAR at 12 range 0 .. 31; end record; type DMA_Stream is access all DMA_Stream_Record; function Get_Stream (Port : DMA_Controller; Num : DMA_Stream_Selector) return DMA_Stream with Inline; procedure Set_Interrupt_Enabler (This_Stream : DMA_Stream; Source : DMA_Interrupt; Value : Boolean); -- An internal routine, used to enable and disable the specified interrupt ---------------- -- Get_Stream -- ---------------- function Get_Stream (Port : DMA_Controller; Num : DMA_Stream_Selector) return DMA_Stream is Addr : System.Address; function To_Stream is new Ada.Unchecked_Conversion (System.Address, DMA_Stream); begin case Num is when Stream_1 => Addr := Port.CCR1'Address; when Stream_2 => Addr := Port.CCR2'Address; when Stream_3 => Addr := Port.CCR3'Address; when Stream_4 => Addr := Port.CCR4'Address; when Stream_5 => Addr := Port.CCR5'Address; when Stream_6 => Addr := Port.CCR6'Address; when Stream_7 => Addr := Port.CCR7'Address; when Stream_8 => Addr := Port.CCR8'Address; end case; return To_Stream (Addr); end Get_Stream; ------------ -- Enable -- ------------ procedure Enable (This : DMA_Controller; Stream : DMA_Stream_Selector) is begin Get_Stream (This, Stream).CR.EN := True; end Enable; ------------- -- Enabled -- ------------- function Enabled (This : DMA_Controller; Stream : DMA_Stream_Selector) return Boolean is begin return Get_Stream (This, Stream).CR.EN; end Enabled; ------------- -- Disable -- ------------- procedure Disable (This : DMA_Controller; Stream : DMA_Stream_Selector) is begin Get_Stream (This, Stream).CR.EN := False; -- the STMicro Reference Manual RM0090, Doc Id 018909 Rev 6, pg 319, -- step 1 says we must await the bit actually clearing, to confirm no -- ongoing operation remains active. loop exit when not Enabled (This, Stream); end loop; end Disable; ----------- -- Reset -- ----------- procedure Reset (This : in out DMA_Controller; Stream : DMA_Stream_Selector) is This_Stream : DMA_Stream renames Get_Stream (This, Stream); begin Disable (This, Stream); This_Stream.CR := (others => <>); This_Stream.NDTR.NDT := 0; This_Stream.PAR := 0; This_Stream.MAR := 0; Clear_All_Status (This, Stream); end Reset; ------------------------- -- Configure_Data_Flow -- ------------------------- procedure Configure_Data_Flow (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : Address; Destination : Address; Data_Count : UInt16) is This_Stream : DMA_Stream renames Get_Stream (This, Stream); function W is new Ada.Unchecked_Conversion (Address, UInt32); begin -- the following assignment has NO EFFECT if flow is controlled by -- peripheral. The hardware resets it to 16#FFFF#, see RM0090 10.3.15. This_Stream.NDTR.NDT := Data_Count; if This_Stream.CR.DIR = True then -- Memory_To_Peripheral This_Stream.MAR := W (Source); This_Stream.PAR := W (Destination); else This_Stream.PAR := W (Source); This_Stream.MAR := W (Destination); end if; end Configure_Data_Flow; -------------------- -- Start_Transfer -- -------------------- procedure Start_Transfer (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : Address; Destination : Address; Data_Count : UInt16) is begin Disable (This, Stream); -- per the RM, eg section 10.5.6 for the NDTR Configure_Data_Flow (This, Stream, Source => Source, Destination => Destination, Data_Count => Data_Count); Enable (This, Stream); end Start_Transfer; --------------------------- -- Set_Interrupt_Enabler -- --------------------------- procedure Set_Interrupt_Enabler (This_Stream : DMA_Stream; Source : DMA_Interrupt; Value : Boolean) is begin case Source is when Transfer_Error_Interrupt => This_Stream.CR.TEIE := Value; when Half_Transfer_Complete_Interrupt => This_Stream.CR.HTIE := Value; when Transfer_Complete_Interrupt => This_Stream.CR.TCIE := Value; when Global_Interrupt => This_Stream.CR.TEIE := Value; This_Stream.CR.HTIE := Value; This_Stream.CR.TCIE := Value; end case; end Set_Interrupt_Enabler; ---------------------- -- Enable_Interrupt -- ---------------------- procedure Enable_Interrupt (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : DMA_Interrupt) is begin Set_Interrupt_Enabler (Get_Stream (This, Stream), Source, True); end Enable_Interrupt; ----------------------- -- Interrupt_Enabled -- ----------------------- function Interrupt_Enabled (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : DMA_Interrupt) return Boolean is Result : Boolean; This_Stream : DMA_Stream renames Get_Stream (This, Stream); -- this is a bit heavy, considering it will be called from interrupt -- handlers. -- TODO: consider a much lower level implementation, based on bit-masks. begin case Source is when Transfer_Error_Interrupt => Result := This_Stream.CR.TEIE; when Half_Transfer_Complete_Interrupt => Result := This_Stream.CR.HTIE; when Transfer_Complete_Interrupt => Result := This_Stream.CR.TCIE; when Global_Interrupt => Result := This_Stream.CR.TEIE and This_Stream.CR.HTIE and This_Stream.CR.TCIE; end case; return Result; end Interrupt_Enabled; ----------------------- -- Disable_Interrupt -- ----------------------- procedure Disable_Interrupt (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : DMA_Interrupt) is begin Set_Interrupt_Enabler (Get_Stream (This, Stream), Source, False); end Disable_Interrupt; ------------------------------------ -- Start_Transfer_with_Interrupts -- ------------------------------------ procedure Start_Transfer_with_Interrupts (This : DMA_Controller; Stream : DMA_Stream_Selector; Source : Address; Destination : Address; Data_Count : UInt16; Enabled_Interrupts : Interrupt_Selections := (others => True)) is begin Disable (This, Stream); -- per the RM, eg section 10.5.6 for the NDTR Configure_Data_Flow (This, Stream, Source => Source, Destination => Destination, Data_Count => Data_Count); for Selected_Interrupt in Enabled_Interrupts'Range loop if Enabled_Interrupts (Selected_Interrupt) then Enable_Interrupt (This, Stream, Selected_Interrupt); end if; end loop; Enable (This, Stream); end Start_Transfer_with_Interrupts; -------------------- -- Abort_Transfer -- -------------------- procedure Abort_Transfer (This : DMA_Controller; Stream : DMA_Stream_Selector; Result : out DMA_Error_Code) is Max_Abort_Time : constant Time_Span := Seconds (1); Timeout : Time; This_Stream : DMA_Stream renames Get_Stream (This, Stream); begin Disable (This, Stream); Timeout := Clock + Max_Abort_Time; loop exit when not This_Stream.CR.EN; if Clock > Timeout then Result := DMA_Timeout_Error; return; end if; end loop; Result := DMA_No_Error; end Abort_Transfer; ------------------------- -- Poll_For_Completion -- ------------------------- procedure Poll_For_Completion (This : in out DMA_Controller; Stream : DMA_Stream_Selector; Expected_Level : DMA_Transfer_Level; Timeout : Time_Span; Result : out DMA_Error_Code) is Deadline : constant Time := Clock + Timeout; begin Result := DMA_No_Error; -- initially anyway Polling : loop if Expected_Level = Full_Transfer then exit Polling when Status (This, Stream, Transfer_Complete_Indicated); else exit Polling when Status (This, Stream, Half_Transfer_Complete_Indicated); end if; if Status (This, Stream, Transfer_Error_Indicated) then Clear_Status (This, Stream, Transfer_Error_Indicated); Result := DMA_Device_Error; return; end if; if Clock > Deadline then Result := DMA_Timeout_Error; return; end if; end loop Polling; Clear_Status (This, Stream, Half_Transfer_Complete_Indicated); if Expected_Level = Full_Transfer then Clear_Status (This, Stream, Transfer_Complete_Indicated); else Clear_Status (This, Stream, Half_Transfer_Complete_Indicated); end if; end Poll_For_Completion; ------------ -- Status -- ------------ function Status (This : DMA_Controller; Stream : DMA_Stream_Selector; Flag : DMA_Status_Flag) return Boolean is begin case Stream is when Stream_1 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF1; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF1; when Transfer_Complete_Indicated => return This.ISR.TCIF1; when Global_Event_Indicated => return This.ISR.GIF1; end case; when Stream_2 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF2; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF2; when Transfer_Complete_Indicated => return This.ISR.TCIF2; when Global_Event_Indicated => return This.ISR.GIF2; end case; when Stream_3 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF3; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF3; when Transfer_Complete_Indicated => return This.ISR.TCIF3; when Global_Event_Indicated => return This.ISR.GIF3; end case; when Stream_4 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF4; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF4; when Transfer_Complete_Indicated => return This.ISR.TCIF4; when Global_Event_Indicated => return This.ISR.GIF4; end case; when Stream_5 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF5; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF5; when Transfer_Complete_Indicated => return This.ISR.TCIF5; when Global_Event_Indicated => return This.ISR.GIF5; end case; when Stream_6 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF6; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF6; when Transfer_Complete_Indicated => return This.ISR.TCIF6; when Global_Event_Indicated => return This.ISR.GIF6; end case; when Stream_7 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF7; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF7; when Transfer_Complete_Indicated => return This.ISR.TCIF7; when Global_Event_Indicated => return This.ISR.GIF7; end case; when Stream_8 => case Flag is when Transfer_Error_Indicated => return This.ISR.TEIF8; when Half_Transfer_Complete_Indicated => return This.ISR.HTIF8; when Transfer_Complete_Indicated => return This.ISR.TCIF8; when Global_Event_Indicated => return This.ISR.GIF8; end case; end case; end Status; ------------------ -- Clear_Status -- ------------------ procedure Clear_Status (This : in out DMA_Controller; Stream : DMA_Stream_Selector; Flag : DMA_Status_Flag) is begin case Stream is when Stream_1 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF1 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF1 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF1 := True; when Global_Event_Indicated => This.IFCR.CGIF1 := True; end case; when Stream_2 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF2 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF2 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF2 := True; when Global_Event_Indicated => This.IFCR.CGIF2 := True; end case; when Stream_3 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF3 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF3 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF3 := True; when Global_Event_Indicated => This.IFCR.CGIF3 := True; end case; when Stream_4 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF4 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF4 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF4 := True; when Global_Event_Indicated => This.IFCR.CGIF4 := True; end case; when Stream_5 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF5 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF5 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF5 := True; when Global_Event_Indicated => This.IFCR.CGIF5 := True; end case; when Stream_6 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF6 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF6 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF6 := True; when Global_Event_Indicated => This.IFCR.CGIF6 := True; end case; when Stream_7 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF7 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF7 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF7 := True; when Global_Event_Indicated => This.IFCR.CGIF7 := True; end case; when Stream_8 => case Flag is when Transfer_Error_Indicated => This.IFCR.CTEIF8 := True; when Half_Transfer_Complete_Indicated => This.IFCR.CHTIF8 := True; when Transfer_Complete_Indicated => This.IFCR.CTCIF8 := True; when Global_Event_Indicated => This.IFCR.CGIF8 := True; end case; end case; end Clear_Status; ---------------------- -- Clear_All_Status -- ---------------------- procedure Clear_All_Status (This : in out DMA_Controller; Stream : DMA_Stream_Selector) is begin case Stream is when Stream_1 => This.IFCR.CGIF1 := True; when Stream_2 => This.IFCR.CGIF2 := True; when Stream_3 => This.IFCR.CGIF3 := True; when Stream_4 => This.IFCR.CGIF4 := True; when Stream_5 => This.IFCR.CGIF5 := True; when Stream_6 => This.IFCR.CGIF6 := True; when Stream_7 => This.IFCR.CGIF7 := True; when Stream_8 => This.IFCR.CGIF8 := True; end case; end Clear_All_Status; ---------------------- -- Set_Items_Number -- ---------------------- procedure Set_Items_Number (This : DMA_Controller; Stream : DMA_Stream_Selector; Data_Count : UInt16) is This_Stream : DMA_Stream renames Get_Stream (This, Stream); begin This_Stream.NDTR.NDT := Data_Count; end Set_Items_Number; ----------------------- -- Items_Transferred -- ----------------------- function Items_Transferred (This : DMA_Controller; Stream : DMA_Stream_Selector) return UInt16 is ndt : constant UInt16 := Current_Items_Number (This, Stream); items : UInt16; begin if Operating_Mode (This, Stream) = Peripheral_Flow_Control_Mode then items := 16#ffff# - ndt; else items := ndt; end if; return items; end Items_Transferred; -------------------------- -- Current_Items_Number -- -------------------------- function Current_Items_Number (This : DMA_Controller; Stream : DMA_Stream_Selector) return UInt16 is This_Stream : DMA_Stream renames Get_Stream (This, Stream); begin return This_Stream.NDTR.NDT; end Current_Items_Number; ------------------- -- Circular_Mode -- ------------------- function Circular_Mode (This : DMA_Controller; Stream : DMA_Stream_Selector) return Boolean is begin return Get_Stream (This, Stream).CR.CIRC; end Circular_Mode; ------------------------ -- Transfer_Direction -- ------------------------ function Transfer_Direction (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Data_Transfer_Direction is begin if Get_Stream (This, Stream).CR.MEM2MEM then return Memory_To_Memory; elsif Get_Stream (This, Stream).CR.DIR then return Memory_To_Peripheral; end if; return Peripheral_To_Memory; end Transfer_Direction; --------------------------- -- Peripheral_Data_Width -- --------------------------- function Peripheral_Data_Width (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Data_Transfer_Widths is begin return DMA_Data_Transfer_Widths'Val (Get_Stream (This, Stream).CR.PSIZE); end Peripheral_Data_Width; ----------------------- -- Memory_Data_Width -- ----------------------- function Memory_Data_Width (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Data_Transfer_Widths is begin return DMA_Data_Transfer_Widths'Val (Get_Stream (This, Stream).CR.MSIZE); end Memory_Data_Width; ---------------------- -- Selected_Channel -- ---------------------- function Selected_Channel (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Channel_Selector is begin if Get_Stream (This, Stream).CR.EN = True then return DMA_Channel_Selector'Val (DMA_Stream_Selector'Pos (Stream)); end if; return Channel_0; end Selected_Channel; -------------------- -- Operating_Mode -- -------------------- function Operating_Mode (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Mode is begin if Get_Stream (This, Stream).CR.PINC then return Peripheral_Flow_Control_Mode; elsif Get_Stream (This, Stream).CR.CIRC then return Circular_Mode; end if; return Normal_Mode; end Operating_Mode; -------------- -- Priority -- -------------- function Priority (This : DMA_Controller; Stream : DMA_Stream_Selector) return DMA_Priority_Level is begin return DMA_Priority_Level'Val (Get_Stream (This, Stream).CR.PL); end Priority; --------------- -- Configure -- --------------- procedure Configure (This : DMA_Controller; Stream : DMA_Stream_Selector; Config : DMA_Stream_Configuration) is -- see HAL_DMA_Init in STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h This_Stream : DMA_Stream renames Get_Stream (This, Stream); begin -- the STMicro Reference Manual RM0090, Doc Id 018909 Rev 6, pg 319 says -- we must disable the stream before configuring it Disable (This, Stream); This_Stream.CR.EN := True; case Config.Direction is when Peripheral_To_Memory | Peripheral_To_Peripheral => This_Stream.CR.DIR := False; when Memory_To_Peripheral => This_Stream.CR.DIR := True; when Memory_To_Memory => This_Stream.CR.MEM2MEM := True; end case; This_Stream.CR.PINC := Config.Increment_Peripheral_Address; This_Stream.CR.MINC := Config.Increment_Memory_Address; This_Stream.CR.PSIZE := DMA_Data_Transfer_Widths'Enum_Rep (Config.Peripheral_Data_Format); This_Stream.CR.MSIZE := DMA_Data_Transfer_Widths'Enum_Rep (Config.Memory_Data_Format); This_Stream.CR.PL := DMA_Priority_Level'Enum_Rep (Config.Priority); case Config.Operation_Mode is when Normal_Mode => This_Stream.CR.PINC := False; -- DMA is the flow controller This_Stream.CR.CIRC := False; -- Disable circular mode when Peripheral_Flow_Control_Mode => This_Stream.CR.PINC := True; -- Peripheral is the flow ctrl. This_Stream.CR.CIRC := False; -- Disable circular mode when Circular_Mode => This_Stream.CR.PINC := False; -- DMA is the flow controller This_Stream.CR.CIRC := True; -- Enable circular mode end case; end Configure; ------------- -- Aligned -- ------------- function Aligned (This : Address; Width : DMA_Data_Transfer_Widths) return Boolean is use System.Storage_Elements; begin case Width is when Words => return To_Integer (This) mod 4 = 0; when HalfWords => return To_Integer (This) mod 2 = 0; when Bytes => return True; end case; end Aligned; end STM32.DMA;
31.819113
79
0.535808
2e9f35c8cd2eba2292d2b2c17245f09741dc07c9
1,148
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/ada.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/ada.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/ada.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ package Ada is pragma Pure; end Ada;
57.4
78
0.256098
c740a416535dbfecf67fa95aff48f2f958bf7394
113,048
adb
Ada
HLS/lab3/dct.prj/solution4/.autopilot/db/read_data.sched.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
1
2021-03-03T16:53:52.000Z
2021-03-03T16:53:52.000Z
HLS/lab3/dct.prj/solution4/.autopilot/db/read_data.sched.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
null
null
null
HLS/lab3/dct.prj/solution4/.autopilot/db/read_data.sched.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
null
null
null
<?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>read_data</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>input_r</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>input</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</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>buf_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>buf_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>buf_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>buf_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>buf_4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[4]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>buf_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[5]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>buf_6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[6]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>buf_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[7]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</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>48</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>dct.c</first> <second>read_data</second> </first> <second>59</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>77</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>12</id> <name>indvar_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>81</item> <item>82</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>13</id> <name>r</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>84</item> <item>85</item> <item>86</item> <item>87</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>14</id> <name>c</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>88</item> <item>89</item> <item>90</item> <item>91</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>15</id> <name>exitcond_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>92</item> <item>94</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>16</id> <name>indvar_flatten_next</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>95</item> <item>97</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>19</id> <name>r_1</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>105</item> <item>106</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>22</id> <name>exitcond</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>61</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>107</item> <item>109</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>23</id> <name>c_mid2</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>110</item> <item>111</item> <item>112</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_mid2_v_v</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_mid2</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>121</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_7_mid2</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>122</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>28</id> <name>c_cast2</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_9</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>125</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_s</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>126</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name>input_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>127</item> <item>129</item> <item>130</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>35</id> <name>input_load</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>131</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>36</id> <name>tmp_2</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>37</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>138</item> <item>139</item> <item>141</item> <item>142</item> <item>144</item> <item>145</item> <item>147</item> <item>148</item> <item>150</item> <item>151</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>39</id> <name>buf_6_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>191</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>40</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>194</item> <item>195</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>41</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>196</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>43</id> <name>buf_5_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>185</item> <item>186</item> <item>187</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>44</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>188</item> <item>189</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>45</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>190</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>47</id> <name>buf_4_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>179</item> <item>180</item> <item>181</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>48</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>182</item> <item>183</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>49</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>184</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>51</id> <name>buf_3_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>52</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>176</item> <item>177</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>53</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>178</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>55</id> <name>buf_2_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>167</item> <item>168</item> <item>169</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>56</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>170</item> <item>171</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>57</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>172</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>59</id> <name>buf_1_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>60</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>164</item> <item>165</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>61</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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>166</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>63</id> <name>buf_0_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>155</item> <item>156</item> <item>157</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>64</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>159</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>65</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>67</id> <name>buf_7_addr</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>197</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>68</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>200</item> <item>201</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>69</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>62</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> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>72</id> <name>c_1</name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>101</item> <item>103</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>73</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>104</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName>dct.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>read_data</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_58"> <Value> <Obj> <type>2</type> <id>78</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>83</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_60"> <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>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>96</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>102</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>108</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_64"> <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>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>128</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="_66"> <Value> <Obj> <type>2</type> <id>137</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>140</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>143</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>146</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>152</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_72"> <Obj> <type>3</type> <id>11</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>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_73"> <Obj> <type>3</type> <id>18</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> </node_objs> </item> <item class_id_reference="18" object_id="_74"> <Obj> <type>3</type> <id>38</id> <name>.reset</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>14</count> <item_version>0</item_version> <item>19</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_75"> <Obj> <type>3</type> <id>42</id> <name>branch6</name> <fileName></fileName> <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>39</item> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_76"> <Obj> <type>3</type> <id>46</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>3</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_77"> <Obj> <type>3</type> <id>50</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>3</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> </node_objs> </item> <item class_id_reference="18" object_id="_78"> <Obj> <type>3</type> <id>54</id> <name>branch3</name> <fileName></fileName> <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>51</item> <item>52</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_79"> <Obj> <type>3</type> <id>58</id> <name>branch2</name> <fileName></fileName> <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>55</item> <item>56</item> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_80"> <Obj> <type>3</type> <id>62</id> <name>branch1</name> <fileName></fileName> <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>59</item> <item>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_81"> <Obj> <type>3</type> <id>66</id> <name>branch0</name> <fileName></fileName> <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>63</item> <item>64</item> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_82"> <Obj> <type>3</type> <id>70</id> <name>branch7</name> <fileName></fileName> <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>67</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>74</id> <name>ifBlock</name> <fileName></fileName> <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>72</item> <item>73</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>76</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>75</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>130</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_85"> <id>77</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>79</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>80</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>81</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>82</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>84</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>85</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>86</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>87</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>88</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>89</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>90</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>91</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>92</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>95</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>97</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>98</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>99</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>100</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>101</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>103</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>104</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>105</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>106</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>107</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>109</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>110</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>111</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>112</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>113</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>114</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>115</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>116</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>119</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>122</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>123</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>124</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>125</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>126</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>127</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>129</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>130</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>131</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>132</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>133</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>134</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>135</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>136</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>138</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>139</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>141</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>142</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>144</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>145</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>148</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>151</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>153</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>154</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>155</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>156</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>157</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>158</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>159</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>160</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>161</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>162</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>163</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>164</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>165</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>166</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>167</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>168</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>169</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>170</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>171</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>172</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>173</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>174</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>175</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>176</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>177</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>178</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>179</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>180</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>181</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>182</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>183</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>184</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>185</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>186</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>187</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>188</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>189</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>190</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>191</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>192</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>193</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>194</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>195</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>196</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>197</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>198</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>199</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>200</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>201</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>202</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>234</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>235</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>236</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>237</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>238</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>239</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>240</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>241</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>242</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>243</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>244</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>245</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>246</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>247</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>248</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>249</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>250</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>251</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>252</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>253</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>18</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_215"> <mId>1</mId> <mTag>read_data</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>67</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_216"> <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>11</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="_217"> <mId>3</mId> <mTag>RD_Loop_Row_RD_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>18</item> <item>38</item> <item>42</item> <item>46</item> <item>50</item> <item>54</item> <item>58</item> <item>62</item> <item>66</item> <item>70</item> <item>74</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>65</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_218"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>76</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>10</first> <second class_id="28" tracking_level="0" version="0"> <first>0</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>14</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>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>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>1</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>1</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>1</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>1</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>1</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>1</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>0</second> </second> </item> <item> <first>61</first> <second> <first>1</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>1</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>1</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>11</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>46</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>62</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>74</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>76</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_219"> <region_name>RD_Loop_Row_RD_Loop_Col</region_name> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>18</item> <item>38</item> <item>42</item> <item>46</item> <item>50</item> <item>54</item> <item>58</item> <item>62</item> <item>66</item> <item>70</item> <item>74</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="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
26.047926
90
0.58683
58840d0946fee2935c907a5377bdd14f6ab57943
9,386
adb
Ada
Lab1-2/worksheet_05.adb
gabemgem/LITEC
42679504cbd28425b3f33c09f50492bb60f827bb
[ "Unlicense" ]
null
null
null
Lab1-2/worksheet_05.adb
gabemgem/LITEC
42679504cbd28425b3f33c09f50492bb60f827bb
[ "Unlicense" ]
null
null
null
Lab1-2/worksheet_05.adb
gabemgem/LITEC
42679504cbd28425b3f33c09f50492bb60f827bb
[ "Unlicense" ]
null
null
null
M:worksheet_05 F:G$SYSCLK_Init$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$UART0_Init$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$Sys_Init$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$putchar$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$getchar$0$0({2}DF,SC:U),C,0,0,0,0,0 F:G$getchar_nw$0$0({2}DF,SC:U),C,0,0,0,0,0 F:G$main$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$Port_Init$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$Interrupt_Init$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$Timer_Init$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$T0_ISR$0$0({2}DF,SV:S),Z,0,0,1,1,0 F:G$Counter_off$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$Counter_on$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lworksheet_05.getchar$c$1$10({1}SC:U),R,0,0,[] S:Lworksheet_05.getchar_nw$c$1$12({1}SC:U),R,0,0,[] S:G$Counts$0$0({2}SI:U),E,0,0 S:G$P0$0$0({1}SC:U),I,0,0 S:G$SP$0$0({1}SC:U),I,0,0 S:G$DPL$0$0({1}SC:U),I,0,0 S:G$DPH$0$0({1}SC:U),I,0,0 S:G$P4$0$0({1}SC:U),I,0,0 S:G$P5$0$0({1}SC:U),I,0,0 S:G$P6$0$0({1}SC:U),I,0,0 S:G$PCON$0$0({1}SC:U),I,0,0 S:G$TCON$0$0({1}SC:U),I,0,0 S:G$TMOD$0$0({1}SC:U),I,0,0 S:G$TL0$0$0({1}SC:U),I,0,0 S:G$TL1$0$0({1}SC:U),I,0,0 S:G$TH0$0$0({1}SC:U),I,0,0 S:G$TH1$0$0({1}SC:U),I,0,0 S:G$CKCON$0$0({1}SC:U),I,0,0 S:G$PSCTL$0$0({1}SC:U),I,0,0 S:G$P1$0$0({1}SC:U),I,0,0 S:G$TMR3CN$0$0({1}SC:U),I,0,0 S:G$TMR3RLL$0$0({1}SC:U),I,0,0 S:G$TMR3RLH$0$0({1}SC:U),I,0,0 S:G$TMR3L$0$0({1}SC:U),I,0,0 S:G$TMR3H$0$0({1}SC:U),I,0,0 S:G$P7$0$0({1}SC:U),I,0,0 S:G$SCON$0$0({1}SC:U),I,0,0 S:G$SCON0$0$0({1}SC:U),I,0,0 S:G$SBUF$0$0({1}SC:U),I,0,0 S:G$SBUF0$0$0({1}SC:U),I,0,0 S:G$SPI0CFG$0$0({1}SC:U),I,0,0 S:G$SPI0DAT$0$0({1}SC:U),I,0,0 S:G$ADC1$0$0({1}SC:U),I,0,0 S:G$SPI0CKR$0$0({1}SC:U),I,0,0 S:G$CPT0CN$0$0({1}SC:U),I,0,0 S:G$CPT1CN$0$0({1}SC:U),I,0,0 S:G$P2$0$0({1}SC:U),I,0,0 S:G$EMI0TC$0$0({1}SC:U),I,0,0 S:G$EMI0CF$0$0({1}SC:U),I,0,0 S:G$PRT0CF$0$0({1}SC:U),I,0,0 S:G$P0MDOUT$0$0({1}SC:U),I,0,0 S:G$PRT1CF$0$0({1}SC:U),I,0,0 S:G$P1MDOUT$0$0({1}SC:U),I,0,0 S:G$PRT2CF$0$0({1}SC:U),I,0,0 S:G$P2MDOUT$0$0({1}SC:U),I,0,0 S:G$PRT3CF$0$0({1}SC:U),I,0,0 S:G$P3MDOUT$0$0({1}SC:U),I,0,0 S:G$IE$0$0({1}SC:U),I,0,0 S:G$SADDR0$0$0({1}SC:U),I,0,0 S:G$ADC1CN$0$0({1}SC:U),I,0,0 S:G$ADC1CF$0$0({1}SC:U),I,0,0 S:G$AMX1SL$0$0({1}SC:U),I,0,0 S:G$P3IF$0$0({1}SC:U),I,0,0 S:G$SADEN1$0$0({1}SC:U),I,0,0 S:G$EMI0CN$0$0({1}SC:U),I,0,0 S:G$_XPAGE$0$0({1}SC:U),I,0,0 S:G$P3$0$0({1}SC:U),I,0,0 S:G$OSCXCN$0$0({1}SC:U),I,0,0 S:G$OSCICN$0$0({1}SC:U),I,0,0 S:G$P74OUT$0$0({1}SC:U),I,0,0 S:G$FLSCL$0$0({1}SC:U),I,0,0 S:G$FLACL$0$0({1}SC:U),I,0,0 S:G$IP$0$0({1}SC:U),I,0,0 S:G$SADEN0$0$0({1}SC:U),I,0,0 S:G$AMX0CF$0$0({1}SC:U),I,0,0 S:G$AMX0SL$0$0({1}SC:U),I,0,0 S:G$ADC0CF$0$0({1}SC:U),I,0,0 S:G$P1MDIN$0$0({1}SC:U),I,0,0 S:G$ADC0L$0$0({1}SC:U),I,0,0 S:G$ADC0H$0$0({1}SC:U),I,0,0 S:G$SMB0CN$0$0({1}SC:U),I,0,0 S:G$SMB0STA$0$0({1}SC:U),I,0,0 S:G$SMB0DAT$0$0({1}SC:U),I,0,0 S:G$SMB0ADR$0$0({1}SC:U),I,0,0 S:G$ADC0GTL$0$0({1}SC:U),I,0,0 S:G$ADC0GTH$0$0({1}SC:U),I,0,0 S:G$ADC0LTL$0$0({1}SC:U),I,0,0 S:G$ADC0LTH$0$0({1}SC:U),I,0,0 S:G$T2CON$0$0({1}SC:U),I,0,0 S:G$T4CON$0$0({1}SC:U),I,0,0 S:G$RCAP2L$0$0({1}SC:U),I,0,0 S:G$RCAP2H$0$0({1}SC:U),I,0,0 S:G$TL2$0$0({1}SC:U),I,0,0 S:G$TH2$0$0({1}SC:U),I,0,0 S:G$SMB0CR$0$0({1}SC:U),I,0,0 S:G$PSW$0$0({1}SC:U),I,0,0 S:G$REF0CN$0$0({1}SC:U),I,0,0 S:G$DAC0L$0$0({1}SC:U),I,0,0 S:G$DAC0H$0$0({1}SC:U),I,0,0 S:G$DAC0CN$0$0({1}SC:U),I,0,0 S:G$DAC1L$0$0({1}SC:U),I,0,0 S:G$DAC1H$0$0({1}SC:U),I,0,0 S:G$DAC1CN$0$0({1}SC:U),I,0,0 S:G$PCA0CN$0$0({1}SC:U),I,0,0 S:G$PCA0MD$0$0({1}SC:U),I,0,0 S:G$PCA0CPM0$0$0({1}SC:U),I,0,0 S:G$PCA0CPM1$0$0({1}SC:U),I,0,0 S:G$PCA0CPM2$0$0({1}SC:U),I,0,0 S:G$PCA0CPM3$0$0({1}SC:U),I,0,0 S:G$PCA0CPM4$0$0({1}SC:U),I,0,0 S:G$ACC$0$0({1}SC:U),I,0,0 S:G$XBR0$0$0({1}SC:U),I,0,0 S:G$XBR1$0$0({1}SC:U),I,0,0 S:G$XBR2$0$0({1}SC:U),I,0,0 S:G$RCAP4L$0$0({1}SC:U),I,0,0 S:G$RCAP4H$0$0({1}SC:U),I,0,0 S:G$EIE1$0$0({1}SC:U),I,0,0 S:G$EIE2$0$0({1}SC:U),I,0,0 S:G$ADC0CN$0$0({1}SC:U),I,0,0 S:G$PCA0L$0$0({1}SC:U),I,0,0 S:G$PCA0CPL0$0$0({1}SC:U),I,0,0 S:G$PCA0CPL1$0$0({1}SC:U),I,0,0 S:G$PCA0CPL2$0$0({1}SC:U),I,0,0 S:G$PCA0CPL3$0$0({1}SC:U),I,0,0 S:G$PCA0CPL4$0$0({1}SC:U),I,0,0 S:G$RSTSRC$0$0({1}SC:U),I,0,0 S:G$B$0$0({1}SC:U),I,0,0 S:G$SCON1$0$0({1}SC:U),I,0,0 S:G$SBUF1$0$0({1}SC:U),I,0,0 S:G$SADDR1$0$0({1}SC:U),I,0,0 S:G$TL4$0$0({1}SC:U),I,0,0 S:G$TH4$0$0({1}SC:U),I,0,0 S:G$EIP1$0$0({1}SC:U),I,0,0 S:G$EIP2$0$0({1}SC:U),I,0,0 S:G$SPI0CN$0$0({1}SC:U),I,0,0 S:G$PCA0H$0$0({1}SC:U),I,0,0 S:G$PCA0CPH0$0$0({1}SC:U),I,0,0 S:G$PCA0CPH1$0$0({1}SC:U),I,0,0 S:G$PCA0CPH2$0$0({1}SC:U),I,0,0 S:G$PCA0CPH3$0$0({1}SC:U),I,0,0 S:G$PCA0CPH4$0$0({1}SC:U),I,0,0 S:G$WDTCN$0$0({1}SC:U),I,0,0 S:G$TMR0$0$0({2}SI:U),I,0,0 S:G$TMR1$0$0({2}SI:U),I,0,0 S:G$TMR2$0$0({2}SI:U),I,0,0 S:G$RCAP2$0$0({2}SI:U),I,0,0 S:G$TMR3$0$0({2}SI:U),I,0,0 S:G$TMR3RL$0$0({2}SI:U),I,0,0 S:G$TMR4$0$0({2}SI:U),I,0,0 S:G$RCAP4$0$0({2}SI:U),I,0,0 S:G$ADC0$0$0({2}SI:U),I,0,0 S:G$ADC0GT$0$0({2}SI:U),I,0,0 S:G$ADC0LT$0$0({2}SI:U),I,0,0 S:G$DAC0$0$0({2}SI:U),I,0,0 S:G$DAC1$0$0({2}SI:U),I,0,0 S:G$PCA0$0$0({2}SI:U),I,0,0 S:G$PCA0CP0$0$0({2}SI:U),I,0,0 S:G$PCA0CP1$0$0({2}SI:U),I,0,0 S:G$PCA0CP2$0$0({2}SI:U),I,0,0 S:G$PCA0CP3$0$0({2}SI:U),I,0,0 S:G$PCA0CP4$0$0({2}SI:U),I,0,0 S:G$P0_0$0$0({1}SX:U),J,0,0 S:G$P0_1$0$0({1}SX:U),J,0,0 S:G$P0_2$0$0({1}SX:U),J,0,0 S:G$P0_3$0$0({1}SX:U),J,0,0 S:G$P0_4$0$0({1}SX:U),J,0,0 S:G$P0_5$0$0({1}SX:U),J,0,0 S:G$P0_6$0$0({1}SX:U),J,0,0 S:G$P0_7$0$0({1}SX:U),J,0,0 S:G$IT0$0$0({1}SX:U),J,0,0 S:G$IE0$0$0({1}SX:U),J,0,0 S:G$IT1$0$0({1}SX:U),J,0,0 S:G$IE1$0$0({1}SX:U),J,0,0 S:G$TR0$0$0({1}SX:U),J,0,0 S:G$TF0$0$0({1}SX:U),J,0,0 S:G$TR1$0$0({1}SX:U),J,0,0 S:G$TF1$0$0({1}SX:U),J,0,0 S:G$P1_0$0$0({1}SX:U),J,0,0 S:G$P1_1$0$0({1}SX:U),J,0,0 S:G$P1_2$0$0({1}SX:U),J,0,0 S:G$P1_3$0$0({1}SX:U),J,0,0 S:G$P1_4$0$0({1}SX:U),J,0,0 S:G$P1_5$0$0({1}SX:U),J,0,0 S:G$P1_6$0$0({1}SX:U),J,0,0 S:G$P1_7$0$0({1}SX:U),J,0,0 S:G$RI$0$0({1}SX:U),J,0,0 S:G$RI0$0$0({1}SX:U),J,0,0 S:G$TI$0$0({1}SX:U),J,0,0 S:G$TI0$0$0({1}SX:U),J,0,0 S:G$RB8$0$0({1}SX:U),J,0,0 S:G$RB80$0$0({1}SX:U),J,0,0 S:G$TB8$0$0({1}SX:U),J,0,0 S:G$TB80$0$0({1}SX:U),J,0,0 S:G$REN$0$0({1}SX:U),J,0,0 S:G$REN0$0$0({1}SX:U),J,0,0 S:G$SM2$0$0({1}SX:U),J,0,0 S:G$SM20$0$0({1}SX:U),J,0,0 S:G$MCE0$0$0({1}SX:U),J,0,0 S:G$SM1$0$0({1}SX:U),J,0,0 S:G$SM10$0$0({1}SX:U),J,0,0 S:G$SM0$0$0({1}SX:U),J,0,0 S:G$SM00$0$0({1}SX:U),J,0,0 S:G$S0MODE$0$0({1}SX:U),J,0,0 S:G$P2_0$0$0({1}SX:U),J,0,0 S:G$P2_1$0$0({1}SX:U),J,0,0 S:G$P2_2$0$0({1}SX:U),J,0,0 S:G$P2_3$0$0({1}SX:U),J,0,0 S:G$P2_4$0$0({1}SX:U),J,0,0 S:G$P2_5$0$0({1}SX:U),J,0,0 S:G$P2_6$0$0({1}SX:U),J,0,0 S:G$P2_7$0$0({1}SX:U),J,0,0 S:G$EX0$0$0({1}SX:U),J,0,0 S:G$ET0$0$0({1}SX:U),J,0,0 S:G$EX1$0$0({1}SX:U),J,0,0 S:G$ET1$0$0({1}SX:U),J,0,0 S:G$ES0$0$0({1}SX:U),J,0,0 S:G$ES$0$0({1}SX:U),J,0,0 S:G$ET2$0$0({1}SX:U),J,0,0 S:G$EA$0$0({1}SX:U),J,0,0 S:G$P3_0$0$0({1}SX:U),J,0,0 S:G$P3_1$0$0({1}SX:U),J,0,0 S:G$P3_2$0$0({1}SX:U),J,0,0 S:G$P3_3$0$0({1}SX:U),J,0,0 S:G$P3_4$0$0({1}SX:U),J,0,0 S:G$P3_5$0$0({1}SX:U),J,0,0 S:G$P3_6$0$0({1}SX:U),J,0,0 S:G$P3_7$0$0({1}SX:U),J,0,0 S:G$PX0$0$0({1}SX:U),J,0,0 S:G$PT0$0$0({1}SX:U),J,0,0 S:G$PX1$0$0({1}SX:U),J,0,0 S:G$PT1$0$0({1}SX:U),J,0,0 S:G$PS0$0$0({1}SX:U),J,0,0 S:G$PS$0$0({1}SX:U),J,0,0 S:G$PT2$0$0({1}SX:U),J,0,0 S:G$SMBTOE$0$0({1}SX:U),J,0,0 S:G$SMBFTE$0$0({1}SX:U),J,0,0 S:G$AA$0$0({1}SX:U),J,0,0 S:G$SI$0$0({1}SX:U),J,0,0 S:G$STO$0$0({1}SX:U),J,0,0 S:G$STA$0$0({1}SX:U),J,0,0 S:G$ENSMB$0$0({1}SX:U),J,0,0 S:G$BUSY$0$0({1}SX:U),J,0,0 S:G$CPRL2$0$0({1}SX:U),J,0,0 S:G$CT2$0$0({1}SX:U),J,0,0 S:G$TR2$0$0({1}SX:U),J,0,0 S:G$EXEN2$0$0({1}SX:U),J,0,0 S:G$TCLK$0$0({1}SX:U),J,0,0 S:G$RCLK$0$0({1}SX:U),J,0,0 S:G$EXF2$0$0({1}SX:U),J,0,0 S:G$TF2$0$0({1}SX:U),J,0,0 S:G$P$0$0({1}SX:U),J,0,0 S:G$F1$0$0({1}SX:U),J,0,0 S:G$OV$0$0({1}SX:U),J,0,0 S:G$RS0$0$0({1}SX:U),J,0,0 S:G$RS1$0$0({1}SX:U),J,0,0 S:G$F0$0$0({1}SX:U),J,0,0 S:G$AC$0$0({1}SX:U),J,0,0 S:G$CY$0$0({1}SX:U),J,0,0 S:G$CCF0$0$0({1}SX:U),J,0,0 S:G$CCF1$0$0({1}SX:U),J,0,0 S:G$CCF2$0$0({1}SX:U),J,0,0 S:G$CCF3$0$0({1}SX:U),J,0,0 S:G$CCF4$0$0({1}SX:U),J,0,0 S:G$CR$0$0({1}SX:U),J,0,0 S:G$CF$0$0({1}SX:U),J,0,0 S:G$ADLJST$0$0({1}SX:U),J,0,0 S:G$AD0LJST$0$0({1}SX:U),J,0,0 S:G$ADWINT$0$0({1}SX:U),J,0,0 S:G$AD0WINT$0$0({1}SX:U),J,0,0 S:G$ADSTM0$0$0({1}SX:U),J,0,0 S:G$AD0CM0$0$0({1}SX:U),J,0,0 S:G$ADSTM1$0$0({1}SX:U),J,0,0 S:G$AD0CM1$0$0({1}SX:U),J,0,0 S:G$ADBUSY$0$0({1}SX:U),J,0,0 S:G$AD0BUSY$0$0({1}SX:U),J,0,0 S:G$ADCINT$0$0({1}SX:U),J,0,0 S:G$AD0INT$0$0({1}SX:U),J,0,0 S:G$ADCTM$0$0({1}SX:U),J,0,0 S:G$AD0TM$0$0({1}SX:U),J,0,0 S:G$ADCEN$0$0({1}SX:U),J,0,0 S:G$AD0EN$0$0({1}SX:U),J,0,0 S:G$SPIEN$0$0({1}SX:U),J,0,0 S:G$MSTEN$0$0({1}SX:U),J,0,0 S:G$SLVSEL$0$0({1}SX:U),J,0,0 S:G$TXBSY$0$0({1}SX:U),J,0,0 S:G$RXOVRN$0$0({1}SX:U),J,0,0 S:G$MODF$0$0({1}SX:U),J,0,0 S:G$WCOL$0$0({1}SX:U),J,0,0 S:G$SPIF$0$0({1}SX:U),J,0,0 S:G$Biled1$0$0({1}SX:U),J,0,0 S:G$Biled2$0$0({1}SX:U),J,0,0 S:G$SW$0$0({1}SX:U),J,0,0 S:G$SYSCLK_Init$0$0({2}DF,SV:S),C,0,0 S:G$UART0_Init$0$0({2}DF,SV:S),C,0,0 S:G$Sys_Init$0$0({2}DF,SV:S),C,0,0 S:G$getchar_nw$0$0({2}DF,SC:U),C,0,0 S:G$_print_format$0$0({2}DF,SI:S),C,0,0 S:G$printf_small$0$0({2}DF,SV:S),C,0,0 S:G$printf$0$0({2}DF,SI:S),C,0,0 S:G$vprintf$0$0({2}DF,SI:S),C,0,0 S:G$sprintf$0$0({2}DF,SI:S),C,0,0 S:G$vsprintf$0$0({2}DF,SI:S),C,0,0 S:G$puts$0$0({2}DF,SI:S),C,0,0 S:G$getchar$0$0({2}DF,SC:U),C,0,0 S:G$putchar$0$0({2}DF,SV:S),C,0,0 S:G$printf_fast$0$0({2}DF,SV:S),C,0,0 S:G$printf_fast_f$0$0({2}DF,SV:S),C,0,0 S:G$printf_tiny$0$0({2}DF,SV:S),C,0,0 S:G$main$0$0({2}DF,SV:S),C,0,0 S:Fworksheet_05$__str_0$0$0({8}DA8d,SC:S),D,0,0 S:Fworksheet_05$__str_1$0$0({43}DA43d,SC:S),D,0,0
29.702532
51
0.556467
1ad82236997e55beece8c33608e5b2594eccf0a5
831
adb
Ada
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright 2017-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Inspect (Obj: access Top_T'Class) is begin null; end Inspect; end Pck;
37.772727
73
0.729242
223c714210c6ad6c3c79c6543ab82c95c5c1239c
154,850
adb
Ada
prj_239749/my_prj_prj/solution1/.autopilot/db/my_prj.sched.adb
adropulic/hls_bdt_project
4dc70bdc9278c2cd54d46cb39edb25a81d7adb69
[ "Apache-2.0" ]
null
null
null
prj_239749/my_prj_prj/solution1/.autopilot/db/my_prj.sched.adb
adropulic/hls_bdt_project
4dc70bdc9278c2cd54d46cb39edb25a81d7adb69
[ "Apache-2.0" ]
null
null
null
prj_239749/my_prj_prj/solution1/.autopilot/db/my_prj.sched.adb
adropulic/hls_bdt_project
4dc70bdc9278c2cd54d46cb39edb25a81d7adb69
[ "Apache-2.0" ]
null
null
null
<?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>my_prj</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>x_0_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>x[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>x_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>x_2_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[2].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>x_3_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[3].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>x_4_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[4].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</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>score_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>score[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>score_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>score[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</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>tree_scores_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tree_scores.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>4</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>25</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>19</id> <name>x_0_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second class_id="11" tracking_level="0" version="0"> <count>2</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>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>46</item> <item>47</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>20</id> <name>x_1_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>48</item> <item>49</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>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>21</id> <name>x_2_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>50</item> <item>51</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>22</id> <name>x_3_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>52</item> <item>53</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>x_4_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>54</item> <item>55</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>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>57</item> <item>59</item> <item>61</item> <item>63</item> <item>65</item> <item>66</item> <item>67</item> <item>69</item> <item>71</item> <item>73</item> <item>75</item> <item>77</item> <item>79</item> <item>81</item> <item>83</item> <item>84</item> <item>85</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>98</item> <item>100</item> <item>102</item> <item>104</item> <item>106</item> <item>108</item> <item>110</item> <item>112</item> <item>113</item> <item>114</item> <item>116</item> <item>118</item> <item>120</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>127</item> <item>128</item> <item>129</item> <item>131</item> <item>132</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</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>25</id> <name>tree_scores_V_addr</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>141</item> <item>143</item> <item>144</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>tree_scores_V_addr_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>145</item> <item>146</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_72_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>152</item> <item>153</item> <item>154</item> <item>156</item> <item>158</item> <item>160</item> <item>162</item> <item>164</item> <item>166</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>28</id> <name>tree_scores_V_addr_1</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>215</item> <item>216</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>29</id> <name>tree_scores_V_addr_1_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>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>0.59</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_73_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>231</item> <item>233</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>241</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>268</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>31</id> <name>tree_scores_V_addr_2</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>285</item> <item>286</item> <item>288</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>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>32</id> <name>tree_scores_V_addr_2_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>289</item> <item>290</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_74_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>291</item> <item>292</item> <item>293</item> <item>294</item> <item>295</item> <item>296</item> <item>297</item> <item>299</item> <item>301</item> <item>303</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>310</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>326</item> <item>328</item> <item>329</item> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>34</id> <name>add_ln703</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>356</item> <item>357</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>35</id> <name>add_ln703_1</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>358</item> <item>359</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>36</id> <name>add_ln703_2</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>360</item> <item>361</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.68</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>37</id> <name>tree_scores_V_addr_3</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>362</item> <item>363</item> <item>365</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>38</id> <name>tree_scores_V_addr_3_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>366</item> <item>367</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>39</id> <name>sext_ln1118</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>368</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>40</id> <name>mul_ln1118</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>369</item> <item>371</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.53</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>41</id> <name>trunc_ln</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>373</item> <item>374</item> <item>376</item> <item>378</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>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>42</id> <name>score_0_V_write_ln9</name> <fileName>firmware/my_prj.cpp</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>9</lineNumber> <contextFuncName>my_prj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</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>380</item> <item>381</item> <item>382</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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>43</id> <name>_ln10</name> <fileName>firmware/my_prj.cpp</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>my_prj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>10</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>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>65</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_34"> <Value> <Obj> <type>2</type> <id>56</id> <name>decision_function</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:decision_function&gt;</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>58</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>62</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>64</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>1</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>68</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>68198</content> </item> <item class_id_reference="16" object_id="_40"> <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>17</bitwidth> </Value> <const_type>0</const_type> <content>10870</content> </item> <item class_id_reference="16" object_id="_41"> <Value> <Obj> <type>2</type> <id>72</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>113900</content> </item> <item class_id_reference="16" object_id="_42"> <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>18</bitwidth> </Value> <const_type>0</const_type> <content>74137</content> </item> <item class_id_reference="16" object_id="_43"> <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>18</bitwidth> </Value> <const_type>0</const_type> <content>84873</content> </item> <item class_id_reference="16" object_id="_44"> <Value> <Obj> <type>2</type> <id>78</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>66094</content> </item> <item class_id_reference="16" object_id="_45"> <Value> <Obj> <type>2</type> <id>80</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="_46"> <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>11</bitwidth> </Value> <const_type>0</const_type> <content>713</content> </item> <item class_id_reference="16" object_id="_47"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1334</content> </item> <item class_id_reference="16" object_id="_48"> <Value> <Obj> <type>2</type> <id>97</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>99</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>101</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>11</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>103</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_52"> <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>5</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>107</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>109</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>7</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>111</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>9</content> </item> <item class_id_reference="16" object_id="_56"> <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>5</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_57"> <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>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>119</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>121</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>126</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>130</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>2</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>133</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>10</content> </item> <item class_id_reference="16" object_id="_63"> <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>0</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>151</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>155</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>97689</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>157</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>68253</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>258382</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>161</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>99132</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>163</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>73201</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>165</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>260096</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>167</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>479</content> </item> <item class_id_reference="16" object_id="_72"> <Value> <Obj> <type>2</type> <id>172</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1568</content> </item> <item class_id_reference="16" object_id="_73"> <Value> <Obj> <type>2</type> <id>185</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>3</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>195</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_75"> <Value> <Obj> <type>2</type> <id>207</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_76"> <Value> <Obj> <type>2</type> <id>217</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="_77"> <Value> <Obj> <type>2</type> <id>225</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>30</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>230</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>79124</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>232</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>142354</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>234</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>240</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>392</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>242</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1655</content> </item> <item class_id_reference="16" object_id="_83"> <Value> <Obj> <type>2</type> <id>267</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_84"> <Value> <Obj> <type>2</type> <id>269</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_85"> <Value> <Obj> <type>2</type> <id>287</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>298</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>5443</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>300</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>126350</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>302</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>260810</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>304</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>256035</content> </item> <item class_id_reference="16" object_id="_90"> <Value> <Obj> <type>2</type> <id>309</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>318</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>311</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1729</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>325</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>327</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>5</content> </item> <item class_id_reference="16" object_id="_94"> <Value> <Obj> <type>2</type> <id>339</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>364</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_96"> <Value> <Obj> <type>2</type> <id>370</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>28</bitwidth> </Value> <const_type>0</const_type> <content>550</content> </item> <item class_id_reference="16" object_id="_97"> <Value> <Obj> <type>2</type> <id>375</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="_98"> <Value> <Obj> <type>2</type> <id>377</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>27</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_99"> <Obj> <type>3</type> <id>44</id> <name>my_prj</name> <fileName></fileName> <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>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>263</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_100"> <id>47</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="_101"> <id>49</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>51</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>53</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>55</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>57</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>59</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>63</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>65</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>66</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>67</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>69</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>71</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>75</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>79</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>81</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>83</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>84</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>85</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>88</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>89</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>90</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>91</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>92</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>93</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>94</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>95</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>96</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>98</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>100</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>104</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>108</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>110</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>113</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>114</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>116</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>122</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>123</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>124</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>125</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>127</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>128</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>129</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>132</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>134</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>135</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>136</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>137</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>138</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="_159"> <id>139</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>140</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>141</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>144</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>145</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>146</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="_166"> <id>147</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>148</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>149</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>150</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>152</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>153</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>154</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>156</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>158</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>162</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>164</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>168</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>169</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>170</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>171</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>173</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>174</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>175</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>176</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>177</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>178</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>179</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>180</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>181</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>182</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>183</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>184</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>187</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>188</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>189</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>190</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>191</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>192</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>193</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>194</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>196</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>197</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>198</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>199</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>200</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>201</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>202</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>203</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>204</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>205</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>206</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>208</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>209</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>210</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>211</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>212</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="_220"> <id>213</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>214</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>215</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>216</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>218</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>219</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>220</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>221</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>222</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>223</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>224</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>226</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>227</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>228</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>229</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>231</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>233</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>235</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>236</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>237</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>238</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>239</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>241</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>243</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>244</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>245</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>246</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>247</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>248</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>249</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>250</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>251</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>252</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>253</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>254</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>255</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>256</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>257</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>258</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>259</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>260</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>261</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>262</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>263</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>264</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>265</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>266</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>268</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>270</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>271</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>272</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>273</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>274</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>275</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>276</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>277</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>278</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>279</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>280</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>281</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>282</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>283</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>284</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>285</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>286</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>288</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>289</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>290</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>291</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>292</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>293</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>294</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>295</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>296</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>297</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>299</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>301</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>303</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>305</id> <edge_type>1</edge_type> <source_obj>304</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>306</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>307</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>308</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>310</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>312</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>313</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>314</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>315</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>316</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>317</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>318</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>319</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>320</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>321</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>322</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>323</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>324</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>326</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>328</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>329</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>330</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>331</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>332</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>333</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>334</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>335</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>336</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>337</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>338</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>341</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>342</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>343</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>344</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>345</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>346</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>347</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>348</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>349</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>350</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>351</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>352</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>353</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>354</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>355</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>356</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>357</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>358</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>359</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>360</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="_349"> <id>361</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="_350"> <id>362</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>363</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>365</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>366</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>367</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="_355"> <id>368</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>369</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="_357"> <id>371</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>374</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>376</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>378</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>381</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>382</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_363"> <mId>1</mId> <mTag>my_prj</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>44</item> </basic_blocks> <mII>2</mII> <mDepth>7</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>6</mMinLatency> <mMaxLatency>6</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>25</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>19</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>4</second> </second> </item> <item> <first>25</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>4</second> </second> </item> <item> <first>28</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>31</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>34</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>6</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>44</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>6</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_364"> <region_name>my_prj</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>44</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>7</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
27.966408
135
0.611792
1d727e3172d679f93b1dddc92b605822b7154830
18,964
adb
Ada
source/asis/asis-gela-unit_utils.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/asis-gela-unit_utils.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/asis-gela-unit_utils.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $: with Asis.Gela.Units; use Asis.Gela.Units; with Asis.Gela.Lists; with Asis.Gela.Library; with Asis.Gela.Contexts; with Asis.Gela.Normalizer; with Asis.Gela.Element_Utils; package body Asis.Gela.Unit_Utils is --------------- -- Add_Child -- --------------- procedure Add_Child (The_Unit : Compilation_Unit; The_Child : Compilation_Unit) is Parent : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Child : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Child.all); begin Add_To_Corresponding_Children (Parent, The_Child); Set_Corresponding_Parent_Declaration (Child, The_Unit); end Add_Child; ---------------- -- Add_Pragma -- ---------------- procedure Add_Pragma (The_Unit : Asis.Element; The_Pragma : Asis.Element; To_Clause : Boolean := False) is use Lists.Primary_Clause_Lists; Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Clauses : List := List (Context_Clause_Elements_List (Unit)); begin Normalizer.Normalize_Pragma (The_Pragma, Asis.Compilation_Unit (The_Unit)); if To_Clause then if Clauses = null then Clauses := new List_Node; Set_Context_Clause_Elements (Unit, Asis.Element (Clauses)); end if; Add (Clauses.all, The_Pragma); else Add_To_Compilation_Pragmas (Unit, The_Pragma); end if; end Add_Pragma; ----------------- -- Add_Subunit -- ----------------- procedure Add_Subunit (The_Unit : Compilation_Unit; The_Subunit : Compilation_Unit) is Parent : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Subunit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Subunit.all); begin Add_To_Subunits (Parent, The_Subunit); Set_Corresponding_Subunit_Parent_Body (Subunit, The_Unit); end Add_Subunit; ----------------- -- Compilation -- ----------------- function Compilation (The_Unit : Compilation_Unit) return Compilations.Compilation is Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); begin return Compilation (Unit); end Compilation; ------------------------------ -- Is_Compilation_Unit_Body -- ------------------------------ function Is_Compilation_Unit_Body (The_Unit : Asis.Compilation_Unit) return Boolean is Kind : constant Unit_Kinds := Unit_Kind (The_Unit.all); begin return Kind in A_Procedure_Body .. A_Protected_Body_Subunit; end Is_Compilation_Unit_Body; ----------------------------- -- Is_Configuration_Pragma -- ----------------------------- function Is_Configuration_Pragma (Kind : Pragma_Kinds) return Boolean is List : constant array (Positive range <>) of Pragma_Kinds := (An_Assertion_Policy_Pragma, A_Detect_Blocking_Pragma, A_Discard_Names_Pragma, A_Locking_Policy_Pragma, A_Normalize_Scalars_Pragma, A_Partition_Elaboration_Policy_Pragma, A_Priority_Specific_Dispatching_Pragma, A_Profile_Pragma, A_Queuing_Policy_Pragma, A_Restrictions_Pragma, A_Reviewable_Pragma, A_Suppress_Pragma, A_Task_Dispatching_Policy_Pragma, An_Unsuppress_Pragma); begin for I in List'Range loop if List (I) = Kind then return True; end if; end loop; return False; end Is_Configuration_Pragma; ---------------------------- -- Is_Program_Unit_Pragma -- ---------------------------- function Is_Program_Unit_Pragma (Kind : Pragma_Kinds) return Boolean is List : constant array (Positive range <>) of Pragma_Kinds := (An_All_Calls_Remote_Pragma, A_Convention_Pragma, An_Elaborate_Body_Pragma, An_Export_Pragma, An_Import_Pragma, An_Inline_Pragma, A_Preelaborate_Pragma, A_Pure_Pragma, A_Remote_Call_Interface_Pragma, A_Remote_Types_Pragma, A_Shared_Passive_Pragma, An_Unknown_Pragma); begin for I in List'Range loop if List (I) = Kind then return True; end if; end loop; return False; end Is_Program_Unit_Pragma; --------------------------- -- Make_Nonexistent_Unit -- --------------------------- function Make_Nonexistent_Unit (The_Context : Context; Full_Unit_Name : Program_Text; Unit_Kind : Unit_Kinds) return Compilation_Unit is Result : constant Any_Compilation_Unit_Ptr := new Any_Compilation_Unit_Node; begin Set_Unit_Kind (Result.all, Unit_Kind); Set_Unit_Class (Result.all, Not_A_Class); Set_Unit_Origin (Result.all, Not_An_Origin); Set_Enclosing_Context (Result.all, The_Context); Set_Corresponding_Declaration (Result.all, Compilation_Unit (Result)); Set_Corresponding_Body (Result.all, Compilation_Unit (Result)); Set_Unit_Full_Name (Result.all, Full_Unit_Name); return Compilation_Unit (Result); end Make_Nonexistent_Unit; ---------------------------- -- Make_Limited_View_Unit -- ---------------------------- function Make_Limited_View_Unit (The_Context : Context; Declaration : Compilation_Unit) return Compilation_Unit is Name : constant Wide_String := Unit_Full_Name (Declaration.all); Result : constant Any_Compilation_Unit_Ptr := new Any_Compilation_Unit_Node; begin Set_Unit_Kind (Result.all, An_Unknown_Unit); Set_Unit_Class (Result.all, Unit_Class (Declaration.all)); Set_Unit_Origin (Result.all, An_Implementation_Unit); Set_Enclosing_Context (Result.all, The_Context); Set_Corresponding_Declaration (Result.all, Declaration); Set_Unit_Full_Name (Result.all, Name); Set_Unique_Name (Compilation_Unit (Result)); return Compilation_Unit (Result); end Make_Limited_View_Unit; --------------------------- -- Remove_Context_Clause -- --------------------------- procedure Remove_Context_Clause (The_Unit : Compilation_Unit; Element : Asis.Element) is use Asis.Gela.Lists; Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Items : constant Asis.Element := Context_Clause_Elements_List (Unit); List : Primary_Clause_Lists.List := Primary_Clause_Lists.List (Items); begin Primary_Clause_Lists.Remove (List.all, Element); end Remove_Context_Clause; -------------- -- Set_Body -- -------------- procedure Set_Body (The_Unit : Compilation_Unit; The_Body : Compilation_Unit) is Decl : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Impl : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Body.all); begin Set_Corresponding_Body (Decl, The_Body); Set_Corresponding_Declaration (Impl, The_Unit); end Set_Body; ----------------------------- -- Set_Can_Be_Main_Program -- ----------------------------- procedure Set_Can_Be_Main_Program (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Unit_Kind (Unit.all) = A_Procedure_Body and then Parameter_Profile (Unit_Declaration (Unit.all).all)'Length = 0 then Set_Can_Be_Main_Program (The_Unit, True); else Set_Can_Be_Main_Program (The_Unit, False); end if; end Set_Can_Be_Main_Program; --------------------- -- Set_Compilation -- --------------------- procedure Set_Compilation (The_Unit : Compilation_Unit; Compilation : Compilations.Compilation) is Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); begin Set_Compilation (Unit, Compilation); end Set_Compilation; ------------------------------------------ -- Set_Compilation_Command_Line_Options -- ------------------------------------------ procedure Set_Compilation_Command_Line_Options (Unit : Compilation_Unit) is begin null; end Set_Compilation_Command_Line_Options; -------------------------- -- Set_Is_Body_Required -- -------------------------- procedure Set_Is_Body_Required (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Unit_Kind (Unit.all) = A_Package or Unit_Kind (Unit.all) = A_Generic_Package then Set_Is_Body_Required (The_Unit, True); else Set_Is_Body_Required (The_Unit, False); end if; end Set_Is_Body_Required; --------------------- -- Set_Object_Form -- --------------------- procedure Set_Object_Form (Unit : Compilation_Unit) is begin null; end Set_Object_Form; --------------------- -- Set_Object_Name -- --------------------- procedure Set_Object_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin Set_Object_Name (The_Unit, Text_Name (Unit.all) & ".o"); end Set_Object_Name; ----------------------- -- Set_Separate_Name -- ----------------------- procedure Set_Separate_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Name : constant Asis.Program_Text := Element_Utils.Compound_Name_Image (Separate_Name (The_Unit)); begin Set_Separate_Name_Image (The_Unit, Name); end Set_Separate_Name; ------------------- -- Set_Text_Form -- ------------------- procedure Set_Text_Form (Unit : Compilation_Unit) is begin null; end Set_Text_Form; ------------------- -- Set_Text_Name -- ------------------- procedure Set_Text_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Ctx : constant Asis.Context := Enclosing_Context (Unit.all); begin Set_Text_Name (The_Unit, Current_File (Ctx.all)); end Set_Text_Name; --------------------- -- Set_Unique_Name -- --------------------- procedure Set_Unique_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Name : constant Wide_String := Unit_Full_Name (Unit.all) & "/" & Unit_Kinds'Wide_Image (Unit_Kind (Unit.all)); begin Set_Unique_Name (The_Unit, Name); end Set_Unique_Name; -------------------- -- Set_Unit_Class -- -------------------- procedure Set_Unit_Class (Unit : in Compilation_Unit; Is_Private : in Boolean) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Is_Subunit : constant Boolean := Unit_Kind (Unit.all) in A_Subunit; Is_Body : constant Boolean := Unit_Kind (Unit.all) in A_Library_Unit_Body; Is_Subprogram : constant Boolean := Unit_Kind (Unit.all) in A_Subprogram_Body; Full_Name : constant Wide_String := Unit_Full_Name (Unit.all); Has_Decl : constant Boolean := Library.Has_Declaration (Full_Name); Result : Asis.Unit_Classes; begin if Is_Subunit then Result := A_Separate_Body; elsif Is_Private then Result := A_Private_Declaration; else if Is_Body then if Is_Subprogram and not Has_Decl then Result := A_Public_Declaration_And_Body; else Result := A_Public_Body; end if; else Result := A_Public_Declaration; end if; end if; Set_Unit_Class (The_Unit, Result); end Set_Unit_Class; ------------------------ -- Set_Unit_Full_Name -- ------------------------ procedure Set_Unit_Full_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Decl : constant Asis.Element := Unit_Declaration (Unit.all); Name : constant Asis.Element := Names (Decl.all) (1); Image : constant Wide_String := Element_Utils.Compound_Name_Image (Name); Is_Subunit : constant Boolean := Unit_Kind (Unit.all) in A_Subunit; begin if Is_Subunit then Set_Unit_Full_Name (The_Unit, Separate_Name_Image (The_Unit) & "." & Image); else Set_Unit_Full_Name (The_Unit, Image); end if; end Set_Unit_Full_Name; ------------------- -- Set_Unit_Kind -- ------------------- procedure Set_Unit_Kind (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Is_Subunit : constant Boolean := Assigned (Separate_Name (The_Unit)); Decl_Kind : constant Declaration_Kinds := Declaration_Kind (Unit_Declaration (The_Unit).all); Ordinary_Kinds : constant array (Declaration_Kinds) of Unit_Kinds := (A_Function_Body_Declaration => A_Function_Body, A_Function_Declaration => A_Function, A_Function_Instantiation => A_Function_Instance, A_Generic_Function_Declaration => A_Generic_Function, A_Generic_Package_Declaration => A_Generic_Package, A_Generic_Procedure_Declaration => A_Generic_Procedure, A_Package_Body_Declaration => A_Package_Body, A_Package_Declaration => A_Package, A_Package_Instantiation => A_Package_Instance, A_Procedure_Body_Declaration => A_Procedure_Body, A_Procedure_Declaration => A_Procedure, A_Procedure_Instantiation => A_Procedure_Instance, A_Package_Renaming_Declaration => A_Package_Renaming, A_Procedure_Renaming_Declaration => A_Procedure_Renaming, A_Function_Renaming_Declaration => A_Function_Renaming, A_Generic_Package_Renaming_Declaration => A_Generic_Package_Renaming, A_Generic_Procedure_Renaming_Declaration => A_Generic_Procedure_Renaming, A_Generic_Function_Renaming_Declaration => A_Generic_Function_Renaming, others => Not_A_Unit); Subunit_Kinds : constant array (Declaration_Kinds) of Unit_Kinds := (A_Function_Body_Declaration => A_Function_Body_Subunit, A_Package_Body_Declaration => A_Package_Body_Subunit, A_Procedure_Body_Declaration => A_Procedure_Body_Subunit, A_Task_Body_Declaration => A_Task_Body_Subunit, A_Protected_Body_Declaration => A_Protected_Body_Subunit, others => Not_A_Unit); begin if Is_Subunit then Set_Unit_Kind (The_Unit, Subunit_Kinds (Decl_Kind)); else Set_Unit_Kind (The_Unit, Ordinary_Kinds (Decl_Kind)); end if; end Set_Unit_Kind; --------------------- -- Set_Unit_Origin -- --------------------- procedure Set_Unit_Origin (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Library.Is_Predefined_Unit (Text_Name (The_Unit)) then Set_Unit_Origin (The_Unit, A_Predefined_Unit); else Set_Unit_Origin (The_Unit, An_Application_Unit); end if; end Set_Unit_Origin; -------------------------- -- Set_Unit_Declaration -- -------------------------- procedure Set_Unit_Declaration (Unit : Compilation_Unit; Declaration : Asis.Element) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin Set_Unit_Declaration (The_Unit, Declaration); end Set_Unit_Declaration; end Asis.Gela.Unit_Utils; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------
32.584192
79
0.609101
2e4d816d475901dfe760394433d5766ca3375fc7
5,539
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cc/cc1221b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cc/cc1221b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cc/cc1221b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CC1221B.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- FOR A FORMAL INTEGER TYPE, CHECK THAT THE FOLLOWING BASIC -- OPERATIONS ARE IMPLICITLY DECLARED AND ARE THEREFORE AVAILABLE -- WITHIN THE GENERIC UNIT: ATTRIBUTES 'FIRST, 'LAST, 'WIDTH, -- 'ADDRESS, AND 'SIZE. -- HISTORY: -- BCB 11/12/87 CREATED ORIGINAL TEST FROM SPLIT OF CC1221A.ADA. WITH SYSTEM; USE SYSTEM; WITH REPORT; USE REPORT; PROCEDURE CC1221B IS SUBTYPE SUBINT IS INTEGER RANGE -100 .. 100; SUBTYPE NOINT IS INTEGER RANGE 1 .. -1; TYPE NEWINT IS NEW INTEGER; TYPE INT IS RANGE -300 .. 300; SUBTYPE SINT1 IS INT RANGE INT (IDENT_INT (-4)) .. INT (IDENT_INT (4)); SUBTYPE SINT2 IS INT RANGE 16#E#E1 .. 2#1111_1111#; TYPE INT2 IS RANGE 0E8 .. 1E3; BEGIN TEST ( "CC1221B", "FOR A FORMAL INTEGER TYPE, CHECK THAT THE " & "FOLLOWING BASIC OPERATIONS ARE IMPLICITLY " & "DECLARED AND ARE THEREFORE AVAILABLE " & "WITHIN THE GENERIC UNIT: ATTRIBUTES 'FIRST, " & "'LAST, 'WIDTH, 'ADDRESS, AND 'SIZE"); DECLARE -- (B) CHECKS FOR BASIC OPERATIONS OF A DISCRETE TYPE. -- PART II. GENERIC TYPE T IS RANGE <>; F, L : T; W : INTEGER; PROCEDURE P (STR : STRING); PROCEDURE P (STR : STRING) IS I : INTEGER := F'SIZE; T1 : T; A : ADDRESS := T1'ADDRESS; BEGIN IF T'FIRST /= F THEN FAILED ( "INCORRECT VALUE FOR " & STR & "'FIRST" ); END IF; IF T'LAST /= L THEN FAILED ( "INCORRECT VALUE FOR " & STR & "'LAST" ); END IF; IF T'BASE'FIRST > T'FIRST THEN FAILED ( "INCORRECT RESULTS WITH " & STR & "'BASE'FIRST" ); END IF; IF T'BASE'LAST < T'LAST THEN FAILED ( "INCORRECT RESULTS WITH " & STR & "'BASE'LAST" ); END IF; IF T'WIDTH /= W THEN FAILED ( "INCORRECT VALUE FOR " & STR & "'WIDTH" ); END IF; IF T'BASE'WIDTH < T'WIDTH THEN FAILED ( "INCORRECT RESULTS WITH " & STR & "'BASE'WIDTH" ); END IF; END P; GENERIC TYPE T IS RANGE <>; PROCEDURE Q; PROCEDURE Q IS BEGIN IF T'FIRST /= 1 THEN FAILED ( "INCORRECT VALUE FOR NOINT'FIRST" ); END IF; IF T'LAST /= -1 THEN FAILED ( "INCORRECT VALUE FOR NOINT'LAST" ); END IF; IF T'BASE'FIRST > T'FIRST THEN FAILED ( "INCORRECT RESULTS WITH " & "NOINT'BASE'FIRST" ); END IF; IF T'BASE'LAST < T'LAST THEN FAILED ( "INCORRECT RESULTS WITH " & "NOINT'BASE'LAST" ); END IF; IF T'WIDTH /= 0 THEN FAILED ( "INCORRECT VALUE FOR " & "NOINT'WIDTH" ); END IF; IF T'BASE'WIDTH < T'WIDTH THEN FAILED ( "INCORRECT RESULTS WITH " & "NOINT'BASE'WIDTH" ); END IF; END Q; PROCEDURE P1 IS NEW P (INTEGER, INTEGER'FIRST, INTEGER'LAST, INTEGER'WIDTH); PROCEDURE P2 IS NEW P (SUBINT, -100, 100, 4); PROCEDURE P3 IS NEW P (NEWINT, NEWINT'FIRST, NEWINT'LAST, NEWINT'WIDTH); PROCEDURE P4 IS NEW P (SINT1, -4, 4, 2); PROCEDURE P5 IS NEW P (SINT2, 224, 255, 4); PROCEDURE P6 IS NEW P (INT2 , 0, 1000, 5); PROCEDURE Q1 IS NEW Q (NOINT); BEGIN P1 ( "INTEGER" ); P2 ( "SUBINT" ); P3 ( "NEWINT" ); P4 ( "SINT1" ); P5 ( "SINT2" ); P6 ( "INT2" ); Q1; END; -- (B). RESULT; END CC1221B;
34.61875
79
0.494494
1aa3859842c2511358848cdc799b386ee0b5a929
2,340
adb
Ada
out/vigenere.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
22
2017-04-24T10:00:45.000Z
2021-04-01T10:11:05.000Z
out/vigenere.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
12
2017-03-26T18:34:21.000Z
2019-03-21T19:13:03.000Z
out/vigenere.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
7
2017-10-14T13:33:33.000Z
2021-03-18T15:18:50.000Z
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C; use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C; procedure vigenere is type stringptr is access all char_array; procedure PString(s : stringptr) is begin String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all)); end; procedure PChar(c : in Character) is begin Character'Write (Text_Streams.Stream (Current_Output), c); end; procedure SkipSpaces is C : Character; Eol : Boolean; begin loop Look_Ahead(C, Eol); exit when Eol or C /= ' '; Get(C); end loop; end; function position_alphabet(c : in Character) return Integer is i : Integer; begin i := Character'Pos(c); if i <= Character'Pos('Z') and then i >= Character'Pos('A') then return i - Character'Pos('A'); else if i <= Character'Pos('z') and then i >= Character'Pos('a') then return i - Character'Pos('a'); else return (-1); end if; end if; end; function of_position_alphabet(c : in Integer) return Character is begin return Character'Val(c + Character'Pos('a')); end; type a is Array (Integer range <>) of Character; type a_PTR is access a; procedure crypte(taille_cle : in Integer; cle : in a_PTR; taille : in Integer; message : in a_PTR) is new0 : Integer; lettre : Integer; addon : Integer; begin for i in integer range 0..taille - 1 loop lettre := position_alphabet(message(i)); if lettre /= (-1) then addon := position_alphabet(cle(i rem taille_cle)); new0 := (addon + lettre) rem 26; message(i) := of_position_alphabet(new0); end if; end loop; end; taille_cle : Integer; taille : Integer; out2 : Character; out0 : Character; message : a_PTR; cle : a_PTR; begin Get(taille_cle); SkipSpaces; cle := new a (0..taille_cle - 1); for index in integer range 0..taille_cle - 1 loop Get(out0); cle(index) := out0; end loop; SkipSpaces; Get(taille); SkipSpaces; message := new a (0..taille - 1); for index2 in integer range 0..taille - 1 loop Get(out2); message(index2) := out2; end loop; crypte(taille_cle, cle, taille, message); for i in integer range 0..taille - 1 loop PChar(message(i)); end loop; PString(new char_array'( To_C("" & Character'Val(10)))); end;
24.893617
101
0.667094
2e0b0caa27969403243c6bb56e773151e901ee4e
4,508
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/g-io_aux.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/g-io_aux.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/g-io_aux.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . I O _ A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1995-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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces.C_Streams; use Interfaces.C_Streams; package body GNAT.IO_Aux is Buflen : constant := 2000; -- Buffer length. Works for any non-zero value, larger values take -- more stack space, smaller values require more recursion. ----------------- -- File_Exists -- ----------------- function File_Exists (Name : String) return Boolean is Namestr : aliased String (1 .. Name'Length + 1); -- Name as given with ASCII.NUL appended begin Namestr (1 .. Name'Length) := Name; Namestr (Name'Length + 1) := ASCII.NUL; return file_exists (Namestr'Address) /= 0; end File_Exists; -------------- -- Get_Line -- -------------- -- Current_Input case function Get_Line return String is Buffer : String (1 .. Buflen); -- Buffer to read in chunks of remaining line. Will work with any -- size buffer. We choose a length so that most of the time no -- recursion will be required. Last : Natural; begin Ada.Text_IO.Get_Line (Buffer, Last); -- If the buffer is not full, then we are all done if Last < Buffer'Last then return Buffer (1 .. Last); -- Otherwise, we still have characters left on the line. Note that -- as specified by (RM A.10.7(19)) the end of line is not skipped -- in this case, even if we are right at it now. else return Buffer & GNAT.IO_Aux.Get_Line; end if; end Get_Line; -- Case of reading from a specified file. Note that we could certainly -- share code between these two versions, but these are very short -- routines, and we may as well aim for maximum speed, cutting out an -- intermediate call (calls returning string may be somewhat slow) function Get_Line (File : Ada.Text_IO.File_Type) return String is Buffer : String (1 .. Buflen); Last : Natural; begin Ada.Text_IO.Get_Line (File, Buffer, Last); if Last < Buffer'Last then return Buffer (1 .. Last); else return Buffer & Get_Line (File); end if; end Get_Line; end GNAT.IO_Aux;
42.528302
78
0.478926
50e9f756c5cc411bdc6d186d4ce0fcc27626e775
2,607
ads
Ada
tools/scitools/conf/understand/ada/ada05/s-pack05.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada05/s-pack05.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada05/s-pack05.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 0 5 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 5 package System.Pack_05 is pragma Preelaborate; 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;
49.188679
78
0.439202
c7a74ace4693f42787b89e1b5a50adec82f221fa
2,795
ads
Ada
extern/gnat_sdl/gnat_sdl2/src/std_abs_h.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
15
2020-10-07T08:56:45.000Z
2022-02-08T23:13:22.000Z
extern/gnat_sdl/gnat_sdl2/src/std_abs_h.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
20
2020-11-05T14:35:20.000Z
2022-01-13T15:59:33.000Z
extern/gnat_sdl/gnat_sdl2/src/std_abs_h.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
6
2020-10-08T15:57:06.000Z
2021-08-31T12:03:08.000Z
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Extensions; package std_abs_h is -- -*- C++ -*- C library enhancements header. -- Copyright (C) 2016-2017 Free Software Foundation, Inc. -- This file is part of the GNU ISO C++ Library. This library is free -- software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the -- Free Software Foundation; either version 3, or (at your option) -- any later version. -- This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- Under Section 7 of GPL version 3, you are granted additional -- permissions described in the GCC Runtime Library Exception, version -- 3.1, as published by the Free Software Foundation. -- You should have received a copy of the GNU General Public License and -- a copy of the GCC Runtime Library Exception along with this program; -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- <http://www.gnu.org/licenses/>. --* @file include/bits/std_abs.h -- * This is an internal header file, included by other library headers. -- * Do not attempt to use it directly. @headername{cmath, cstdlib} -- function c_abs (uu_i : long) return long; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:56 pragma Import (CPP, c_abs, "_ZSt3absl"); function c_abs_u_2 (uu_x : Long_Long_Integer) return Long_Long_Integer; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:61 pragma Import (CPP, c_abs_u_2, "_ZSt3absx"); -- _GLIBCXX_RESOLVE_LIB_DEFECTS -- 2192. Validity and return type of std::abs(0u) is unclear -- 2294. <cstdlib> should declare abs(double) function c_abs_u_3 (uu_x : double) return double; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:70 pragma Import (CPP, c_abs_u_3, "_ZSt3absd"); function c_abs_u_4 (uu_x : float) return float; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:74 pragma Import (CPP, c_abs_u_4, "_ZSt3absf"); function c_abs_u_5 (uu_x : long_double) return long_double; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:78 pragma Import (CPP, c_abs_u_5, "_ZSt3abse"); function c_abs_u_6 (uu_x : uu_int128) return uu_int128; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:84 pragma Import (CPP, c_abs_u_6, "_ZSt3absn"); function c_abs_u_7 (uu_x : Extensions.Float_128) return Extensions.Float_128; -- d:\install\gpl2018\include\c++\7.3.1\bits\std_abs.h:102 pragma Import (CPP, c_abs_u_7, "_ZSt3absg"); -- namespace end std_abs_h;
48.189655
140
0.71771
1abc03fcefc7ef2d304976992c2e3127e1b05089
3,278
adb
Ada
source/machine-pc-linux-gnu/s-stomap.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/machine-pc-linux-gnu/s-stomap.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/machine-pc-linux-gnu/s-stomap.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
with C.elf; with C.link; with C.sys.types; package body System.Storage_Map is pragma Suppress (All_Checks); use type C.signed_int; use type C.signed_long; -- 64bit ssize_t -- the type of dlpi_phdr is different between 32bit and 64bit. function To_Address (Value : access constant C.elf.Elf32_Phdr) return Address with Import, Convention => Intrinsic; function To_Address (Value : access constant C.elf.Elf64_Phdr) return Address with Import, Convention => Intrinsic; pragma Warnings (Off, To_Address); type Rec is record First_Load_Address : Address; end record; pragma Suppress_Initialization (Rec); function Callback ( Info : access C.link.struct_dl_phdr_info; Size : C.size_t; Data : C.void_ptr) return C.signed_int with Convention => C; function Callback ( Info : access C.link.struct_dl_phdr_info; Size : C.size_t; Data : C.void_ptr) return C.signed_int is pragma Unreferenced (Size); R : Rec; for R'Address use Address (Data); begin if Standard'Address_Size <= 32 then declare use type C.elf.Elf32_Half; -- dlpi_phnum use type C.elf.Elf32_Word; -- p_type and p_vaddr type Elf32_Phdr_array is array (C.sys.types.ssize_t range <>) of aliased C.elf.Elf32_Phdr with Convention => C; dlpi_phdr : Elf32_Phdr_array ( 0 .. C.sys.types.ssize_t (Info.dlpi_phnum) - 1); for dlpi_phdr'Address use To_Address (Info.dlpi_phdr); begin for I in dlpi_phdr'Range loop if dlpi_phdr (I).p_type = C.elf.PT_LOAD then R.First_Load_Address := System'To_Address ( dlpi_phdr (I).p_vaddr + C.elf.Elf32_Addr'Mod (Info.dlpi_addr)); return 1; -- finish end if; end loop; end; else declare use type C.elf.Elf64_Half; -- dlpi_phnum use type C.elf.Elf64_Word; -- p_type use type C.elf.Elf64_Addr; -- p_vaddr type Elf64_Phdr_array is array (C.sys.types.ssize_t range <>) of aliased C.elf.Elf64_Phdr with Convention => C; dlpi_phdr : Elf64_Phdr_array ( 0 .. C.sys.types.ssize_t (Info.dlpi_phnum) - 1); for dlpi_phdr'Address use To_Address (Info.dlpi_phdr); begin for I in dlpi_phdr'Range loop if dlpi_phdr (I).p_type = C.elf.PT_LOAD then R.First_Load_Address := System'To_Address ( dlpi_phdr (I).p_vaddr + C.elf.Elf64_Addr'Mod (Info.dlpi_addr)); return 1; -- finish end if; end loop; end; end if; return 0; -- continue end Callback; -- implementation function Load_Address return Address is R : aliased Rec; Dummy : C.signed_int; begin R.First_Load_Address := Null_Address; Dummy := C.link.dl_iterate_phdr ( Callback'Access, C.void_ptr (R'Address)); return R.First_Load_Address; end Load_Address; end System.Storage_Map;
33.111111
79
0.582672
225d20f2f65696e33092c42e37b481c9d985aeba
738,465
adb
Ada
submissions/M3/lab3_aes_hls/aes_hls_prj/sol2/.autopilot/db/aes16_bidir.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M3/lab3_aes_hls/aes_hls_prj/sol2/.autopilot/db/aes16_bidir.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M3/lab3_aes_hls/aes_hls_prj/sol2/.autopilot/db/aes16_bidir.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
<?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>aes16_bidir</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>12</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>key_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>key_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[1]</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="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>key_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[2]</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="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>key_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[3]</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="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>inout_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</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>inout_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</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>inout_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</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>inout_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</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>iv_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>iv_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>iv_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>iv_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</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>145</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_13"> <Value> <Obj> <type>0</type> <id>27</id> <name>ctx_RoundKey</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>19</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>19</second> </item> </second> </item> </inlineStackInfo> <originalName>ctx.RoundKey</originalName> <rtlName>ctx_RoundKey_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>175</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>28</id> <name>ctx_Iv</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>19</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>19</second> </item> </second> </item> </inlineStackInfo> <originalName>ctx.Iv</originalName> <rtlName>ctx_Iv_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>176</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>30</id> <name>key_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>178</item> <item>179</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>31</id> <name>inout_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>180</item> <item>181</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>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>32</id> <name>iv_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>182</item> <item>183</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>33</id> <name>p_key_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[0]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_0_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</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>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>34</id> <name>p_text_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[0]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_0_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</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>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name>p_iv_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[0]</originalName> <rtlName>p_iv_0_fu_426_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</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>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name>p_key_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[1]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_1_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>188</item> <item>189</item> <item>191</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>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_text_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[1]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_1_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>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>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>38</id> <name>p_iv_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[1]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>198</item> <item>199</item> <item>200</item> <item>201</item> </oprand_edges> <opcode>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>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>39</id> <name>p_key_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[2]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_2_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>205</item> <item>207</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>40</id> <name>p_text_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[2]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_2_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>208</item> <item>209</item> <item>210</item> <item>211</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>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_iv_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[2]</originalName> <rtlName>p_iv_2_reg_1028</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> <item>215</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>p_key_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[3]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_3_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>219</item> <item>221</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>43</id> <name>p_text_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[3]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_3_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>222</item> <item>223</item> <item>224</item> <item>225</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>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>44</id> <name>p_iv_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[3]</originalName> <rtlName>p_iv_3_reg_1038</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>226</item> <item>227</item> <item>228</item> <item>229</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>key_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>read</opcode> <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="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>inout_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</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>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>iv_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>234</item> <item>235</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>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_key_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[4]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_4_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>236</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>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name>p_text_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[4]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_4_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>237</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>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name>p_iv_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[4]</originalName> <rtlName>p_iv_4_fu_609_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>238</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>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>51</id> <name>p_key_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[5]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_5_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>241</item> <item>242</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_text_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[5]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_5_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>243</item> <item>244</item> <item>245</item> <item>246</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>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_iv_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[5]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>249</item> <item>250</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>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>54</id> <name>p_key_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[6]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_6_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>253</item> <item>254</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>55</id> <name>p_text_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[6]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_6_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>255</item> <item>256</item> <item>257</item> <item>258</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>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>56</id> <name>p_iv_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[6]</originalName> <rtlName>p_iv_6_reg_1118</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>261</item> <item>262</item> </oprand_edges> <opcode>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>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>57</id> <name>p_key_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[7]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_7_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>263</item> <item>264</item> <item>265</item> <item>266</item> </oprand_edges> <opcode>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>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>58</id> <name>p_text_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[7]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_7_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>267</item> <item>268</item> <item>269</item> <item>270</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>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>59</id> <name>p_iv_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[7]</originalName> <rtlName>p_iv_7_reg_1123</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>273</item> <item>274</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>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>60</id> <name>key_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>275</item> <item>276</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>61</id> <name>inout_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>277</item> <item>278</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>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>62</id> <name>iv_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>279</item> <item>280</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>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>63</id> <name>p_key_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[8]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_8_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>281</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>64</id> <name>p_text_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[8]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_8_read</rtlName> <coreName/> </Obj> <bitwidth>8</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_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>65</id> <name>p_iv_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[8]</originalName> <rtlName>p_iv_8_fu_645_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>283</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>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>66</id> <name>p_key_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[9]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_9_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>284</item> <item>285</item> <item>286</item> <item>287</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>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>67</id> <name>p_text_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[9]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_9_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>288</item> <item>289</item> <item>290</item> <item>291</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>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>68</id> <name>p_iv_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[9]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>294</item> <item>295</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>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>69</id> <name>p_key_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[10]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_10_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>296</item> <item>297</item> <item>298</item> <item>299</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>70</id> <name>p_text_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[10]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_10_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>300</item> <item>301</item> <item>302</item> <item>303</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>71</id> <name>p_iv_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[10]</originalName> <rtlName>p_iv_10_reg_1148</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>304</item> <item>305</item> <item>306</item> <item>307</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>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>72</id> <name>p_key_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[11]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_11_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>308</item> <item>309</item> <item>310</item> <item>311</item> </oprand_edges> <opcode>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>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>73</id> <name>p_text_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[11]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_11_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</item> </oprand_edges> <opcode>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>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_iv_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[11]</originalName> <rtlName>p_iv_11_reg_1153</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>316</item> <item>317</item> <item>318</item> <item>319</item> </oprand_edges> <opcode>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>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>75</id> <name>key_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>320</item> <item>321</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>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>76</id> <name>inout_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>322</item> <item>323</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>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>77</id> <name>iv_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>324</item> <item>325</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>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>78</id> <name>p_key_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[12]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_12_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>326</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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>79</id> <name>p_text_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[12]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_12_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>327</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>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>80</id> <name>p_iv_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[12]</originalName> <rtlName>p_iv_12_fu_681_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>328</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>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>81</id> <name>p_key_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[13]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_13_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>329</item> <item>330</item> <item>331</item> <item>332</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>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>82</id> <name>p_text_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[13]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_13_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>333</item> <item>334</item> <item>335</item> <item>336</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>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>83</id> <name>p_iv_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[13]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>337</item> <item>338</item> <item>339</item> <item>340</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>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>84</id> <name>p_key_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[14]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_14_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>341</item> <item>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>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="_70"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_text_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[14]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_14_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</item> <item>348</item> </oprand_edges> <opcode>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>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>86</id> <name>p_iv_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[14]</originalName> <rtlName>p_iv_14_reg_1178</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>349</item> <item>350</item> <item>351</item> <item>352</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>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>87</id> <name>p_key_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[15]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_15_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>353</item> <item>354</item> <item>355</item> <item>356</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>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_text_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[15]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_15_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>357</item> <item>358</item> <item>359</item> <item>360</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>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>89</id> <name>p_iv_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[15]</originalName> <rtlName>p_iv_15_reg_1183</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>361</item> <item>362</item> <item>363</item> <item>364</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>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>90</id> <name>_ln248</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>248</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_KeyExpansion_fu_373</rtlName> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>19</count> <item_version>0</item_version> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>597</item> </oprand_edges> <opcode>call</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>4.36</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>91</id> <name>ctx_Iv_addr</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>384</item> <item>386</item> <item>387</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>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>92</id> <name>ctx_Iv_addr_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>388</item> <item>389</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>1.76</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>93</id> <name>ctx_Iv_addr_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>390</item> <item>391</item> <item>392</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>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>94</id> <name>ctx_Iv_addr_1_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>393</item> <item>394</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>1.76</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>95</id> <name>ctx_Iv_addr_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>395</item> <item>396</item> <item>398</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="_81"> <Value> <Obj> <type>0</type> <id>96</id> <name>ctx_Iv_addr_2_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>399</item> <item>400</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>1.76</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>97</id> <name>ctx_Iv_addr_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>401</item> <item>402</item> <item>404</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>98</id> <name>ctx_Iv_addr_3_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>405</item> <item>406</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>1.76</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>99</id> <name>ctx_Iv_addr_4</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>407</item> <item>408</item> <item>410</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>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>100</id> <name>ctx_Iv_addr_4_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>411</item> <item>412</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>1.76</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>101</id> <name>ctx_Iv_addr_5</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>413</item> <item>414</item> <item>416</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>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>102</id> <name>ctx_Iv_addr_5_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>417</item> <item>418</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>1.76</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>103</id> <name>ctx_Iv_addr_6</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>419</item> <item>420</item> <item>422</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>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>104</id> <name>ctx_Iv_addr_6_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>423</item> <item>424</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>1.76</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>105</id> <name>ctx_Iv_addr_7</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>425</item> <item>426</item> <item>428</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>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>106</id> <name>ctx_Iv_addr_7_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>429</item> <item>430</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>1.76</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>107</id> <name>ctx_Iv_addr_8</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>431</item> <item>432</item> <item>434</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>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>108</id> <name>ctx_Iv_addr_8_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>435</item> <item>436</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>1.76</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>109</id> <name>ctx_Iv_addr_9</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>437</item> <item>438</item> <item>440</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>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>110</id> <name>ctx_Iv_addr_9_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>441</item> <item>442</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>1.76</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>111</id> <name>ctx_Iv_addr_10</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>443</item> <item>444</item> <item>446</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>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>112</id> <name>ctx_Iv_addr_10_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>447</item> <item>448</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>1.76</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>113</id> <name>ctx_Iv_addr_11</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>449</item> <item>450</item> <item>452</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>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>114</id> <name>ctx_Iv_addr_11_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>453</item> <item>454</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>1.76</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>115</id> <name>ctx_Iv_addr_12</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>455</item> <item>456</item> <item>458</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>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>116</id> <name>ctx_Iv_addr_12_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>459</item> <item>460</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>1.76</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>117</id> <name>ctx_Iv_addr_13</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>461</item> <item>462</item> <item>464</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>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>118</id> <name>ctx_Iv_addr_13_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>465</item> <item>466</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>1.76</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>119</id> <name>ctx_Iv_addr_14</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>467</item> <item>468</item> <item>470</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>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>120</id> <name>ctx_Iv_addr_14_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>471</item> <item>472</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>1.76</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>121</id> <name>ctx_Iv_addr_15</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>473</item> <item>474</item> <item>476</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>122</id> <name>ctx_Iv_addr_15_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>477</item> <item>478</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>1.76</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>123</id> <name>call_ret</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>39</count> <item_version>0</item_version> <item>480</item> <item>481</item> <item>482</item> <item>483</item> <item>484</item> <item>485</item> <item>486</item> <item>487</item> <item>488</item> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>494</item> <item>495</item> <item>496</item> <item>497</item> <item>498</item> <item>598</item> <item>655</item> <item>656</item> <item>657</item> <item>658</item> <item>659</item> <item>660</item> <item>661</item> <item>662</item> <item>663</item> <item>664</item> <item>665</item> <item>666</item> <item>667</item> <item>668</item> <item>669</item> <item>670</item> <item>671</item> <item>680</item> <item>2147483647</item> </oprand_edges> <opcode>call</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>124</id> <name>p_text_14_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[14]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>499</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>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>125</id> <name>p_text_13_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[13]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>500</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>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>126</id> <name>p_text_12_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[12]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>501</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>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>127</id> <name>p_text_11_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[11]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>502</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>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>128</id> <name>p_text_10_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[10]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>503</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>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>129</id> <name>p_text_9_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[9]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>504</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>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>130</id> <name>p_text_8_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[8]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>505</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>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>131</id> <name>p_text_7_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[7]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>506</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>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>132</id> <name>p_text_6_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[6]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>507</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>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>133</id> <name>p_text_5_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[5]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>508</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>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>134</id> <name>p_text_4_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[4]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>509</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>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>135</id> <name>p_text_3_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>510</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>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>136</id> <name>p_text_2_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>511</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>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>137</id> <name>p_text_1_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>512</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>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>138</id> <name>p_text_0_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>513</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>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>139</id> <name>p_text_15_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[15]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>514</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>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>140</id> <name>or_ln55_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_0_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>516</item> <item>517</item> <item>518</item> <item>519</item> <item>520</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>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>141</id> <name>inout_0_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>522</item> <item>523</item> <item>524</item> <item>679</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>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>142</id> <name>ctx_Iv_load</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>525</item> <item>639</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>143</id> <name>ctx_Iv_load_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>526</item> <item>640</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>1.76</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>144</id> <name>ctx_Iv_load_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>527</item> <item>641</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>145</id> <name>ctx_Iv_load_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>528</item> <item>642</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>146</id> <name>or_ln59_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_0_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>529</item> <item>530</item> <item>531</item> <item>532</item> <item>533</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>137</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>147</id> <name>iv_0_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>534</item> <item>535</item> <item>536</item> <item>678</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>138</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>148</id> <name>or_ln55_5_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_1_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>537</item> <item>538</item> <item>539</item> <item>540</item> <item>541</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>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>149</id> <name>inout_1_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>542</item> <item>543</item> <item>544</item> <item>677</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>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>150</id> <name>ctx_Iv_load_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>545</item> <item>643</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>151</id> <name>ctx_Iv_load_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>546</item> <item>644</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>152</id> <name>ctx_Iv_load_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>547</item> <item>645</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>153</id> <name>ctx_Iv_load_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>548</item> <item>646</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>154</id> <name>or_ln59_2_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_1_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>549</item> <item>550</item> <item>551</item> <item>552</item> <item>553</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>139</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>155</id> <name>iv_1_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>554</item> <item>555</item> <item>556</item> <item>676</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>140</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>156</id> <name>or_ln55_5_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_2_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>557</item> <item>558</item> <item>559</item> <item>560</item> <item>561</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>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>157</id> <name>inout_2_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>562</item> <item>563</item> <item>564</item> <item>675</item> </oprand_edges> <opcode>write</opcode> <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>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>158</id> <name>ctx_Iv_load_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>565</item> <item>647</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>159</id> <name>ctx_Iv_load_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>566</item> <item>648</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>160</id> <name>ctx_Iv_load_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>567</item> <item>649</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>131</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>161</id> <name>ctx_Iv_load_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>568</item> <item>650</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>162</id> <name>or_ln59_2_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_2_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>569</item> <item>570</item> <item>571</item> <item>572</item> <item>573</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>141</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>163</id> <name>iv_2_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>574</item> <item>575</item> <item>576</item> <item>674</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>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>164</id> <name>or_ln55_5_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_3_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>577</item> <item>578</item> <item>579</item> <item>580</item> <item>581</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>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>165</id> <name>inout_3_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>582</item> <item>583</item> <item>584</item> <item>673</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>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>166</id> <name>ctx_Iv_load_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>585</item> <item>651</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>167</id> <name>ctx_Iv_load_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>586</item> <item>652</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>168</id> <name>ctx_Iv_load_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>587</item> <item>653</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>169</id> <name>ctx_Iv_load_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>588</item> <item>654</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>136</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>170</id> <name>or_ln59_2_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_3_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>589</item> <item>590</item> <item>591</item> <item>592</item> <item>593</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>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>171</id> <name>iv_3_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>594</item> <item>595</item> <item>596</item> <item>672</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>144</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>172</id> <name>_ln74</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>74</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>145</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_158"> <Value> <Obj> <type>2</type> <id>174</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_159"> <Value> <Obj> <type>2</type> <id>190</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_160"> <Value> <Obj> <type>2</type> <id>192</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>15</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>204</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_162"> <Value> <Obj> <type>2</type> <id>206</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_163"> <Value> <Obj> <type>2</type> <id>218</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>24</content> </item> <item class_id_reference="16" object_id="_164"> <Value> <Obj> <type>2</type> <id>220</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="_165"> <Value> <Obj> <type>2</type> <id>365</id> <name>KeyExpansion</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:KeyExpansion&gt;</content> </item> <item class_id_reference="16" object_id="_166"> <Value> <Obj> <type>2</type> <id>385</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_167"> <Value> <Obj> <type>2</type> <id>397</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_168"> <Value> <Obj> <type>2</type> <id>403</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_169"> <Value> <Obj> <type>2</type> <id>409</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_170"> <Value> <Obj> <type>2</type> <id>415</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_171"> <Value> <Obj> <type>2</type> <id>421</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_172"> <Value> <Obj> <type>2</type> <id>427</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_173"> <Value> <Obj> <type>2</type> <id>433</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_174"> <Value> <Obj> <type>2</type> <id>439</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_175"> <Value> <Obj> <type>2</type> <id>445</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_176"> <Value> <Obj> <type>2</type> <id>451</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_177"> <Value> <Obj> <type>2</type> <id>457</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_178"> <Value> <Obj> <type>2</type> <id>463</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>13</content> </item> <item class_id_reference="16" object_id="_179"> <Value> <Obj> <type>2</type> <id>469</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>14</content> </item> <item class_id_reference="16" object_id="_180"> <Value> <Obj> <type>2</type> <id>475</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>15</content> </item> <item class_id_reference="16" object_id="_181"> <Value> <Obj> <type>2</type> <id>479</id> <name>AES_CTR_xcrypt_buffe</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:AES_CTR_xcrypt_buffe&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_182"> <Obj> <type>3</type> <id>173</id> <name>aes16_bidir</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>145</count> <item_version>0</item_version> <item>27</item> <item>28</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>376</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_183"> <id>175</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>176</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>179</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>181</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>183</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="_188"> <id>184</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="_189"> <id>185</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>186</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>189</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>191</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>193</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>195</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>196</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>197</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>199</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>200</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>201</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>203</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>205</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>207</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>209</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>210</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>211</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>213</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>214</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>215</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>217</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>219</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>221</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>223</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>224</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>225</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>227</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>228</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>229</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>231</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>233</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>235</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>236</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="_222"> <id>237</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>238</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>240</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>241</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>242</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>51</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>46</source_obj> <sink_obj>52</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>190</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>246</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>52</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>47</source_obj> <sink_obj>53</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>190</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>250</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>53</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>45</source_obj> <sink_obj>54</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>204</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>254</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>54</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>46</source_obj> <sink_obj>55</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>204</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>258</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>55</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>47</source_obj> <sink_obj>56</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>204</source_obj> <sink_obj>56</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>206</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>264</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>265</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>266</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>268</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>269</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>270</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>272</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>273</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>274</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>276</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>278</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>280</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>281</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>282</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>283</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="_257"> <id>285</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="_258"> <id>286</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>287</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>289</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="_261"> <id>290</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>291</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>293</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>294</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>295</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>297</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="_267"> <id>298</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>299</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>301</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>302</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>303</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>305</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>306</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>307</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>309</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>310</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>311</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>313</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>314</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>315</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>317</id> <edge_type>1</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="_282"> <id>318</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>319</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>321</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>323</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>325</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>326</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>327</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>328</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>330</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>331</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>332</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>334</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>335</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>336</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>338</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>339</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>340</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>342</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>343</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>344</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>346</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>347</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>348</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>350</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>351</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>352</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>354</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>355</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>356</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>358</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>359</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>360</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>362</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>363</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>364</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>366</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>367</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>368</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>369</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>370</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>371</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>372</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>373</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>374</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>375</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>376</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>377</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>378</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>379</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>380</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>381</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>382</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>383</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>384</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>386</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>387</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>388</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>389</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>390</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>391</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>392</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>393</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>394</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="_345"> <id>395</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>396</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>398</id> <edge_type>1</edge_type> <source_obj>397</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>399</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>400</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="_350"> <id>401</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>402</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>404</id> <edge_type>1</edge_type> <source_obj>403</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>405</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>406</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="_355"> <id>407</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>408</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>410</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>411</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>412</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="_360"> <id>413</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>414</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>416</id> <edge_type>1</edge_type> <source_obj>415</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>417</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>418</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>419</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>420</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>422</id> <edge_type>1</edge_type> <source_obj>421</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>423</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>424</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>425</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>426</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>428</id> <edge_type>1</edge_type> <source_obj>427</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>429</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>430</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>431</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>432</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>434</id> <edge_type>1</edge_type> <source_obj>433</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>435</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>436</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="_380"> <id>437</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>438</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>440</id> <edge_type>1</edge_type> <source_obj>439</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>441</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>442</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>443</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>444</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>446</id> <edge_type>1</edge_type> <source_obj>445</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>447</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>448</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="_390"> <id>449</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>450</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>452</id> <edge_type>1</edge_type> <source_obj>451</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>453</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>454</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>455</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>456</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>458</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>459</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>460</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>461</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>462</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>464</id> <edge_type>1</edge_type> <source_obj>463</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>465</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>466</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>467</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>468</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>470</id> <edge_type>1</edge_type> <source_obj>469</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>471</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>472</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>473</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>474</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>476</id> <edge_type>1</edge_type> <source_obj>475</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>477</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>478</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>480</id> <edge_type>1</edge_type> <source_obj>479</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>481</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>482</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>483</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>484</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>485</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>486</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>487</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>488</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>489</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>490</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>491</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>492</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>493</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>494</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>495</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>496</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>497</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>498</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>499</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>500</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>501</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>502</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>503</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>504</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>505</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>506</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>507</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>508</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>509</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>510</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>511</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>512</id> <edge_type>1</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="_448"> <id>513</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>514</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>517</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="_451"> <id>518</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>519</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="_453"> <id>520</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>523</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>524</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>525</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>526</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>527</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>528</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>530</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>531</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>532</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>533</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>535</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>536</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="_466"> <id>538</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>539</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>540</id> <edge_type>1</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="_469"> <id>541</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>543</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>544</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>545</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>546</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>547</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>548</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>550</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>551</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>552</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>553</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>555</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>556</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>558</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>559</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>560</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>561</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>563</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>564</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>565</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>566</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>567</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>568</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>570</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>571</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>572</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="_495"> <id>573</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="_496"> <id>575</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>576</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>578</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>579</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>580</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>581</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>583</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>584</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>585</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>586</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>587</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>588</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>590</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>591</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>592</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>593</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>595</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>596</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>597</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>598</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>639</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>640</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>641</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>642</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>643</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>644</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>645</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>646</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>647</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>648</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>649</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>650</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>651</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>652</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>653</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>654</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>655</id> <edge_type>4</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>656</id> <edge_type>4</edge_type> <source_obj>120</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>657</id> <edge_type>4</edge_type> <source_obj>118</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>658</id> <edge_type>4</edge_type> <source_obj>116</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>659</id> <edge_type>4</edge_type> <source_obj>114</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>660</id> <edge_type>4</edge_type> <source_obj>112</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>661</id> <edge_type>4</edge_type> <source_obj>110</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>662</id> <edge_type>4</edge_type> <source_obj>108</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>663</id> <edge_type>4</edge_type> <source_obj>106</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>664</id> <edge_type>4</edge_type> <source_obj>104</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>665</id> <edge_type>4</edge_type> <source_obj>102</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>666</id> <edge_type>4</edge_type> <source_obj>100</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>667</id> <edge_type>4</edge_type> <source_obj>98</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>668</id> <edge_type>4</edge_type> <source_obj>96</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>669</id> <edge_type>4</edge_type> <source_obj>94</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>670</id> <edge_type>4</edge_type> <source_obj>92</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>671</id> <edge_type>4</edge_type> <source_obj>90</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>672</id> <edge_type>4</edge_type> <source_obj>77</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>673</id> <edge_type>4</edge_type> <source_obj>76</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>674</id> <edge_type>4</edge_type> <source_obj>62</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>675</id> <edge_type>4</edge_type> <source_obj>61</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>676</id> <edge_type>4</edge_type> <source_obj>47</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>677</id> <edge_type>4</edge_type> <source_obj>46</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>678</id> <edge_type>4</edge_type> <source_obj>32</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>679</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>680</id> <edge_type>4</edge_type> <source_obj>90</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>2147483647</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>90</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_559"> <mId>1</mId> <mTag>aes16_bidir</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>173</item> </basic_blocks> <mII>204</mII> <mDepth>204</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>203</mMinLatency> <mMaxLatency>203</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_560"> <states class_id="25" tracking_level="0" version="0"> <count>204</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_561"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_562"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_563"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_564"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_565"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_566"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_567"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_568"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_569"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_570"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_571"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_572"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_573"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_574"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_575"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_576"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_577"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_578"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_579"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_580"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_581"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_582"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_583"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_584"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_585"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_586"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_587"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_588"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_589"> <id>90</id> <stage>88</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_590"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_591"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_592"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_593"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_594"> <id>2</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_595"> <id>90</id> <stage>87</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_596"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_597"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_598"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_599"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_600"> <id>3</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_601"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_602"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_603"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_604"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_605"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_606"> <id>90</id> <stage>86</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_607"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_608"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_609"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_610"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_611"> <id>4</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_612"> <id>90</id> <stage>85</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_613"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_614"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_615"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_616"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_617"> <id>5</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_618"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_619"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_620"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_621"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_622"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_623"> <id>90</id> <stage>84</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_624"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_625"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_626"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_627"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_628"> <id>6</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_629"> <id>90</id> <stage>83</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_630"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_631"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_632"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_633"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_634"> <id>7</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_635"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_636"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_637"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_638"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_639"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_640"> <id>90</id> <stage>82</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_641"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_644"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_645"> <id>8</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_646"> <id>90</id> <stage>81</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_647"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_651"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_652"> <id>90</id> <stage>80</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_653"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_654"> <id>90</id> <stage>79</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_655"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_656"> <id>90</id> <stage>78</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_657"> <id>12</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_658"> <id>90</id> <stage>77</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_659"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_660"> <id>90</id> <stage>76</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_661"> <id>14</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_662"> <id>90</id> <stage>75</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_663"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_664"> <id>90</id> <stage>74</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_665"> <id>16</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_666"> <id>90</id> <stage>73</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_667"> <id>17</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_668"> <id>90</id> <stage>72</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_669"> <id>18</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_670"> <id>90</id> <stage>71</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_671"> <id>19</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_672"> <id>90</id> <stage>70</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_673"> <id>20</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_674"> <id>90</id> <stage>69</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_675"> <id>21</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_676"> <id>90</id> <stage>68</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_677"> <id>22</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_678"> <id>90</id> <stage>67</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_679"> <id>23</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_680"> <id>90</id> <stage>66</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_681"> <id>24</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_682"> <id>90</id> <stage>65</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_683"> <id>25</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_684"> <id>90</id> <stage>64</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_685"> <id>26</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_686"> <id>90</id> <stage>63</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_687"> <id>27</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_688"> <id>90</id> <stage>62</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_689"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_690"> <id>90</id> <stage>61</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_691"> <id>29</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_692"> <id>90</id> <stage>60</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_693"> <id>30</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_694"> <id>90</id> <stage>59</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_695"> <id>31</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_696"> <id>90</id> <stage>58</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_697"> <id>32</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_698"> <id>90</id> <stage>57</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_699"> <id>33</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_700"> <id>90</id> <stage>56</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_701"> <id>34</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_702"> <id>90</id> <stage>55</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_703"> <id>35</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_704"> <id>90</id> <stage>54</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_705"> <id>36</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_706"> <id>90</id> <stage>53</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_707"> <id>37</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_708"> <id>90</id> <stage>52</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_709"> <id>38</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_710"> <id>90</id> <stage>51</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_711"> <id>39</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_712"> <id>90</id> <stage>50</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_713"> <id>40</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_714"> <id>90</id> <stage>49</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_715"> <id>41</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_716"> <id>90</id> <stage>48</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_717"> <id>42</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_718"> <id>90</id> <stage>47</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_719"> <id>43</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_720"> <id>90</id> <stage>46</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_721"> <id>44</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_722"> <id>90</id> <stage>45</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_723"> <id>45</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_724"> <id>90</id> <stage>44</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_725"> <id>46</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_726"> <id>90</id> <stage>43</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_727"> <id>47</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_728"> <id>90</id> <stage>42</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_729"> <id>48</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_730"> <id>90</id> <stage>41</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_731"> <id>49</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_732"> <id>90</id> <stage>40</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_733"> <id>50</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_734"> <id>90</id> <stage>39</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_735"> <id>51</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_736"> <id>90</id> <stage>38</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_737"> <id>52</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_738"> <id>90</id> <stage>37</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_739"> <id>53</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_740"> <id>90</id> <stage>36</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_741"> <id>54</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_742"> <id>90</id> <stage>35</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_743"> <id>55</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_744"> <id>90</id> <stage>34</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_745"> <id>56</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_746"> <id>90</id> <stage>33</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_747"> <id>57</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_748"> <id>90</id> <stage>32</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_749"> <id>58</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_750"> <id>90</id> <stage>31</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_751"> <id>59</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_752"> <id>90</id> <stage>30</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_753"> <id>60</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_754"> <id>90</id> <stage>29</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_755"> <id>61</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_756"> <id>90</id> <stage>28</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_757"> <id>62</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_758"> <id>90</id> <stage>27</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_759"> <id>63</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_760"> <id>90</id> <stage>26</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_761"> <id>64</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_762"> <id>90</id> <stage>25</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_763"> <id>65</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_764"> <id>90</id> <stage>24</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_765"> <id>66</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_766"> <id>90</id> <stage>23</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_767"> <id>67</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_768"> <id>90</id> <stage>22</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_769"> <id>68</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_770"> <id>90</id> <stage>21</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_771"> <id>69</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_772"> <id>90</id> <stage>20</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_773"> <id>70</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_774"> <id>90</id> <stage>19</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_775"> <id>71</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_776"> <id>90</id> <stage>18</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_777"> <id>72</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_778"> <id>90</id> <stage>17</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_779"> <id>73</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_780"> <id>90</id> <stage>16</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_781"> <id>74</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_782"> <id>90</id> <stage>15</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_783"> <id>75</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_784"> <id>90</id> <stage>14</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_785"> <id>76</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_786"> <id>90</id> <stage>13</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_787"> <id>77</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_788"> <id>90</id> <stage>12</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_789"> <id>78</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_790"> <id>90</id> <stage>11</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_791"> <id>79</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_792"> <id>90</id> <stage>10</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_793"> <id>80</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_794"> <id>90</id> <stage>9</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_795"> <id>81</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_796"> <id>90</id> <stage>8</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_797"> <id>82</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_798"> <id>90</id> <stage>7</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_799"> <id>83</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_800"> <id>90</id> <stage>6</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_801"> <id>84</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_802"> <id>90</id> <stage>5</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_803"> <id>85</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_804"> <id>90</id> <stage>4</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_805"> <id>86</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_806"> <id>90</id> <stage>3</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_807"> <id>87</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_808"> <id>90</id> <stage>2</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_809"> <id>88</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_810"> <id>90</id> <stage>1</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_811"> <id>89</id> <operations> <count>21</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_812"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_813"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_814"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_815"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_816"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_817"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_818"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_819"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_820"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_821"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_822"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_823"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_824"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_825"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_826"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_827"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_828"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_829"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_830"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_831"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_832"> <id>123</id> <stage>107</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_833"> <id>90</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_834"> <id>123</id> <stage>106</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_835"> <id>91</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_836"> <id>123</id> <stage>105</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_837"> <id>92</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_838"> <id>123</id> <stage>104</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_839"> <id>93</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_840"> <id>123</id> <stage>103</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_841"> <id>94</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_842"> <id>123</id> <stage>102</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_843"> <id>95</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_844"> <id>123</id> <stage>101</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_845"> <id>96</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_846"> <id>123</id> <stage>100</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_847"> <id>97</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_848"> <id>123</id> <stage>99</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_849"> <id>98</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_850"> <id>123</id> <stage>98</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_851"> <id>99</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_852"> <id>123</id> <stage>97</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_853"> <id>100</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_854"> <id>123</id> <stage>96</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_855"> <id>101</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_856"> <id>123</id> <stage>95</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_857"> <id>102</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_858"> <id>123</id> <stage>94</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_859"> <id>103</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_860"> <id>123</id> <stage>93</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_861"> <id>104</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_862"> <id>123</id> <stage>92</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_863"> <id>105</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_864"> <id>123</id> <stage>91</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_865"> <id>106</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_866"> <id>123</id> <stage>90</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_867"> <id>107</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_868"> <id>123</id> <stage>89</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_869"> <id>108</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_870"> <id>123</id> <stage>88</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_871"> <id>109</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_872"> <id>123</id> <stage>87</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_873"> <id>110</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_874"> <id>123</id> <stage>86</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_875"> <id>111</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_876"> <id>123</id> <stage>85</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_877"> <id>112</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_878"> <id>123</id> <stage>84</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_879"> <id>113</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_880"> <id>123</id> <stage>83</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_881"> <id>114</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_882"> <id>123</id> <stage>82</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_883"> <id>115</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_884"> <id>123</id> <stage>81</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_885"> <id>116</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_886"> <id>123</id> <stage>80</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_887"> <id>117</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_888"> <id>123</id> <stage>79</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_889"> <id>118</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_890"> <id>123</id> <stage>78</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_891"> <id>119</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_892"> <id>123</id> <stage>77</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_893"> <id>120</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_894"> <id>123</id> <stage>76</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_895"> <id>121</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_896"> <id>123</id> <stage>75</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_897"> <id>122</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_898"> <id>123</id> <stage>74</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_899"> <id>123</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_900"> <id>123</id> <stage>73</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_901"> <id>124</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_902"> <id>123</id> <stage>72</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_903"> <id>125</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_904"> <id>123</id> <stage>71</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_905"> <id>126</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_906"> <id>123</id> <stage>70</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_907"> <id>127</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_908"> <id>123</id> <stage>69</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_909"> <id>128</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_910"> <id>123</id> <stage>68</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_911"> <id>129</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_912"> <id>123</id> <stage>67</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_913"> <id>130</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_914"> <id>123</id> <stage>66</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_915"> <id>131</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_916"> <id>123</id> <stage>65</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_917"> <id>132</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_918"> <id>123</id> <stage>64</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_919"> <id>133</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_920"> <id>123</id> <stage>63</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_921"> <id>134</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_922"> <id>123</id> <stage>62</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_923"> <id>135</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_924"> <id>123</id> <stage>61</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_925"> <id>136</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_926"> <id>123</id> <stage>60</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_927"> <id>137</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_928"> <id>123</id> <stage>59</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_929"> <id>138</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_930"> <id>123</id> <stage>58</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_931"> <id>139</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_932"> <id>123</id> <stage>57</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_933"> <id>140</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_934"> <id>123</id> <stage>56</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_935"> <id>141</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_936"> <id>123</id> <stage>55</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_937"> <id>142</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_938"> <id>123</id> <stage>54</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_939"> <id>143</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_940"> <id>123</id> <stage>53</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_941"> <id>144</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_942"> <id>123</id> <stage>52</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_943"> <id>145</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_944"> <id>123</id> <stage>51</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_945"> <id>146</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_946"> <id>123</id> <stage>50</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_947"> <id>147</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_948"> <id>123</id> <stage>49</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_949"> <id>148</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_950"> <id>123</id> <stage>48</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_951"> <id>149</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_952"> <id>123</id> <stage>47</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_953"> <id>150</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_954"> <id>123</id> <stage>46</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_955"> <id>151</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_956"> <id>123</id> <stage>45</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_957"> <id>152</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_958"> <id>123</id> <stage>44</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_959"> <id>153</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_960"> <id>123</id> <stage>43</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_961"> <id>154</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_962"> <id>123</id> <stage>42</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_963"> <id>155</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_964"> <id>123</id> <stage>41</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_965"> <id>156</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_966"> <id>123</id> <stage>40</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_967"> <id>157</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_968"> <id>123</id> <stage>39</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_969"> <id>158</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_970"> <id>123</id> <stage>38</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_971"> <id>159</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_972"> <id>123</id> <stage>37</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_973"> <id>160</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_974"> <id>123</id> <stage>36</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_975"> <id>161</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_976"> <id>123</id> <stage>35</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_977"> <id>162</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_978"> <id>123</id> <stage>34</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_979"> <id>163</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_980"> <id>123</id> <stage>33</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_981"> <id>164</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_982"> <id>123</id> <stage>32</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_983"> <id>165</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_984"> <id>123</id> <stage>31</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_985"> <id>166</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_986"> <id>123</id> <stage>30</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_987"> <id>167</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_988"> <id>123</id> <stage>29</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_989"> <id>168</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_990"> <id>123</id> <stage>28</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_991"> <id>169</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_992"> <id>123</id> <stage>27</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_993"> <id>170</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_994"> <id>123</id> <stage>26</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_995"> <id>171</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_996"> <id>123</id> <stage>25</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_997"> <id>172</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_998"> <id>123</id> <stage>24</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_999"> <id>173</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1000"> <id>123</id> <stage>23</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1001"> <id>174</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1002"> <id>123</id> <stage>22</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1003"> <id>175</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1004"> <id>123</id> <stage>21</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1005"> <id>176</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1006"> <id>123</id> <stage>20</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1007"> <id>177</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1008"> <id>123</id> <stage>19</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1009"> <id>178</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1010"> <id>123</id> <stage>18</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1011"> <id>179</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1012"> <id>123</id> <stage>17</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1013"> <id>180</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1014"> <id>123</id> <stage>16</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1015"> <id>181</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1016"> <id>123</id> <stage>15</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1017"> <id>182</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1018"> <id>123</id> <stage>14</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1019"> <id>183</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1020"> <id>123</id> <stage>13</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1021"> <id>184</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1022"> <id>123</id> <stage>12</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1023"> <id>185</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1024"> <id>123</id> <stage>11</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1025"> <id>186</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1026"> <id>123</id> <stage>10</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1027"> <id>187</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1028"> <id>123</id> <stage>9</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1029"> <id>188</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1030"> <id>123</id> <stage>8</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1031"> <id>189</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1032"> <id>123</id> <stage>7</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1033"> <id>190</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1034"> <id>123</id> <stage>6</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1035"> <id>191</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1036"> <id>123</id> <stage>5</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1037"> <id>192</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1038"> <id>123</id> <stage>4</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1039"> <id>193</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1040"> <id>123</id> <stage>3</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1041"> <id>194</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1042"> <id>123</id> <stage>2</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1043"> <id>195</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1044"> <id>123</id> <stage>1</stage> <latency>107</latency> </item> <item class_id_reference="28" object_id="_1045"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1046"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1047"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1048"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1049"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1050"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1051"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1052"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1053"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1054"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1055"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1056"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1057"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1058"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1059"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1060"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1061"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1062"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1063"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1064"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1065"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1066"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1067"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1068"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1069"> <id>196</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1070"> <id>142</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1071"> <id>143</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1072"> <id>197</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1073"> <id>142</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1074"> <id>143</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1075"> <id>144</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1076"> <id>145</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1077"> <id>198</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1078"> <id>144</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1079"> <id>145</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1080"> <id>150</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1081"> <id>151</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1082"> <id>199</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1083"> <id>150</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1084"> <id>151</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1085"> <id>152</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1086"> <id>153</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1087"> <id>200</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1088"> <id>152</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1089"> <id>153</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1090"> <id>158</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1091"> <id>159</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1092"> <id>201</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1093"> <id>158</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1094"> <id>159</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1095"> <id>160</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1096"> <id>161</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1097"> <id>202</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1098"> <id>160</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1099"> <id>161</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1100"> <id>166</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1101"> <id>167</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1102"> <id>203</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1103"> <id>166</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1104"> <id>167</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1105"> <id>168</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1106"> <id>169</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1107"> <id>204</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1108"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1109"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1110"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1111"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1112"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1113"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1114"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1115"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1116"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1117"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1118"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1119"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1120"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1121"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1122"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1123"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1124"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1125"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1126"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1127"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1128"> <id>168</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1129"> <id>169</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1130"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1131"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1132"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>203</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_1133"> <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="_1134"> <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="_1135"> <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="_1136"> <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="_1137"> <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="_1138"> <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="_1139"> <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="_1140"> <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="_1141"> <inState>9</inState> <outState>10</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1142"> <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="_1143"> <inState>11</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1144"> <inState>12</inState> <outState>13</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1145"> <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="_1146"> <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="_1147"> <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="_1148"> <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="_1149"> <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="_1150"> <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="_1151"> <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="_1152"> <inState>20</inState> <outState>21</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="_1153"> <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="_1154"> <inState>22</inState> <outState>23</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="_1155"> <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="_1156"> <inState>24</inState> <outState>25</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="_1157"> <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="_1158"> <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="_1159"> <inState>27</inState> <outState>28</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="_1160"> <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="_1161"> <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="_1162"> <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="_1163"> <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="_1164"> <inState>32</inState> <outState>33</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="_1165"> <inState>33</inState> <outState>34</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="_1166"> <inState>34</inState> <outState>35</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="_1167"> <inState>35</inState> <outState>36</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="_1168"> <inState>36</inState> <outState>37</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="_1169"> <inState>37</inState> <outState>38</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="_1170"> <inState>38</inState> <outState>39</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="_1171"> <inState>39</inState> <outState>40</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="_1172"> <inState>40</inState> <outState>41</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="_1173"> <inState>41</inState> <outState>42</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="_1174"> <inState>42</inState> <outState>43</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="_1175"> <inState>43</inState> <outState>44</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="_1176"> <inState>44</inState> <outState>45</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="_1177"> <inState>45</inState> <outState>46</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="_1178"> <inState>46</inState> <outState>47</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="_1179"> <inState>47</inState> <outState>48</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="_1180"> <inState>48</inState> <outState>49</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="_1181"> <inState>49</inState> <outState>50</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="_1182"> <inState>50</inState> <outState>51</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="_1183"> <inState>51</inState> <outState>52</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="_1184"> <inState>52</inState> <outState>53</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="_1185"> <inState>53</inState> <outState>54</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="_1186"> <inState>54</inState> <outState>55</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="_1187"> <inState>55</inState> <outState>56</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="_1188"> <inState>56</inState> <outState>57</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="_1189"> <inState>57</inState> <outState>58</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="_1190"> <inState>58</inState> <outState>59</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="_1191"> <inState>59</inState> <outState>60</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="_1192"> <inState>60</inState> <outState>61</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="_1193"> <inState>61</inState> <outState>62</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="_1194"> <inState>62</inState> <outState>63</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="_1195"> <inState>63</inState> <outState>64</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="_1196"> <inState>64</inState> <outState>65</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="_1197"> <inState>65</inState> <outState>66</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="_1198"> <inState>66</inState> <outState>67</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="_1199"> <inState>67</inState> <outState>68</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="_1200"> <inState>68</inState> <outState>69</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="_1201"> <inState>69</inState> <outState>70</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="_1202"> <inState>70</inState> <outState>71</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="_1203"> <inState>71</inState> <outState>72</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="_1204"> <inState>72</inState> <outState>73</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="_1205"> <inState>73</inState> <outState>74</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="_1206"> <inState>74</inState> <outState>75</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="_1207"> <inState>75</inState> <outState>76</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="_1208"> <inState>76</inState> <outState>77</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="_1209"> <inState>77</inState> <outState>78</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="_1210"> <inState>78</inState> <outState>79</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="_1211"> <inState>79</inState> <outState>80</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="_1212"> <inState>80</inState> <outState>81</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="_1213"> <inState>81</inState> <outState>82</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="_1214"> <inState>82</inState> <outState>83</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="_1215"> <inState>83</inState> <outState>84</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="_1216"> <inState>84</inState> <outState>85</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="_1217"> <inState>85</inState> <outState>86</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="_1218"> <inState>86</inState> <outState>87</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="_1219"> <inState>87</inState> <outState>88</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="_1220"> <inState>88</inState> <outState>89</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="_1221"> <inState>89</inState> <outState>90</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="_1222"> <inState>90</inState> <outState>91</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="_1223"> <inState>91</inState> <outState>92</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="_1224"> <inState>92</inState> <outState>93</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="_1225"> <inState>93</inState> <outState>94</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="_1226"> <inState>94</inState> <outState>95</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="_1227"> <inState>95</inState> <outState>96</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="_1228"> <inState>96</inState> <outState>97</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="_1229"> <inState>97</inState> <outState>98</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="_1230"> <inState>98</inState> <outState>99</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="_1231"> <inState>99</inState> <outState>100</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="_1232"> <inState>100</inState> <outState>101</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="_1233"> <inState>101</inState> <outState>102</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="_1234"> <inState>102</inState> <outState>103</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="_1235"> <inState>103</inState> <outState>104</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="_1236"> <inState>104</inState> <outState>105</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="_1237"> <inState>105</inState> <outState>106</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="_1238"> <inState>106</inState> <outState>107</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="_1239"> <inState>107</inState> <outState>108</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="_1240"> <inState>108</inState> <outState>109</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="_1241"> <inState>109</inState> <outState>110</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="_1242"> <inState>110</inState> <outState>111</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="_1243"> <inState>111</inState> <outState>112</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="_1244"> <inState>112</inState> <outState>113</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="_1245"> <inState>113</inState> <outState>114</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="_1246"> <inState>114</inState> <outState>115</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="_1247"> <inState>115</inState> <outState>116</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="_1248"> <inState>116</inState> <outState>117</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="_1249"> <inState>117</inState> <outState>118</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="_1250"> <inState>118</inState> <outState>119</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="_1251"> <inState>119</inState> <outState>120</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="_1252"> <inState>120</inState> <outState>121</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="_1253"> <inState>121</inState> <outState>122</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="_1254"> <inState>122</inState> <outState>123</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="_1255"> <inState>123</inState> <outState>124</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="_1256"> <inState>124</inState> <outState>125</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="_1257"> <inState>125</inState> <outState>126</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="_1258"> <inState>126</inState> <outState>127</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="_1259"> <inState>127</inState> <outState>128</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="_1260"> <inState>128</inState> <outState>129</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="_1261"> <inState>129</inState> <outState>130</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="_1262"> <inState>130</inState> <outState>131</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="_1263"> <inState>131</inState> <outState>132</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="_1264"> <inState>132</inState> <outState>133</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="_1265"> <inState>133</inState> <outState>134</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="_1266"> <inState>134</inState> <outState>135</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="_1267"> <inState>135</inState> <outState>136</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="_1268"> <inState>136</inState> <outState>137</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="_1269"> <inState>137</inState> <outState>138</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="_1270"> <inState>138</inState> <outState>139</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="_1271"> <inState>139</inState> <outState>140</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="_1272"> <inState>140</inState> <outState>141</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="_1273"> <inState>141</inState> <outState>142</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="_1274"> <inState>142</inState> <outState>143</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="_1275"> <inState>143</inState> <outState>144</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="_1276"> <inState>144</inState> <outState>145</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="_1277"> <inState>145</inState> <outState>146</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="_1278"> <inState>146</inState> <outState>147</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="_1279"> <inState>147</inState> <outState>148</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="_1280"> <inState>148</inState> <outState>149</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="_1281"> <inState>149</inState> <outState>150</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="_1282"> <inState>150</inState> <outState>151</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="_1283"> <inState>151</inState> <outState>152</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="_1284"> <inState>152</inState> <outState>153</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="_1285"> <inState>153</inState> <outState>154</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="_1286"> <inState>154</inState> <outState>155</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="_1287"> <inState>155</inState> <outState>156</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="_1288"> <inState>156</inState> <outState>157</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="_1289"> <inState>157</inState> <outState>158</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="_1290"> <inState>158</inState> <outState>159</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="_1291"> <inState>159</inState> <outState>160</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="_1292"> <inState>160</inState> <outState>161</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="_1293"> <inState>161</inState> <outState>162</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="_1294"> <inState>162</inState> <outState>163</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="_1295"> <inState>163</inState> <outState>164</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="_1296"> <inState>164</inState> <outState>165</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="_1297"> <inState>165</inState> <outState>166</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="_1298"> <inState>166</inState> <outState>167</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="_1299"> <inState>167</inState> <outState>168</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="_1300"> <inState>168</inState> <outState>169</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="_1301"> <inState>169</inState> <outState>170</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="_1302"> <inState>170</inState> <outState>171</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="_1303"> <inState>171</inState> <outState>172</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="_1304"> <inState>172</inState> <outState>173</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="_1305"> <inState>173</inState> <outState>174</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="_1306"> <inState>174</inState> <outState>175</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="_1307"> <inState>175</inState> <outState>176</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="_1308"> <inState>176</inState> <outState>177</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="_1309"> <inState>177</inState> <outState>178</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="_1310"> <inState>178</inState> <outState>179</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="_1311"> <inState>179</inState> <outState>180</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="_1312"> <inState>180</inState> <outState>181</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="_1313"> <inState>181</inState> <outState>182</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="_1314"> <inState>182</inState> <outState>183</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="_1315"> <inState>183</inState> <outState>184</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="_1316"> <inState>184</inState> <outState>185</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="_1317"> <inState>185</inState> <outState>186</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="_1318"> <inState>186</inState> <outState>187</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="_1319"> <inState>187</inState> <outState>188</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="_1320"> <inState>188</inState> <outState>189</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="_1321"> <inState>189</inState> <outState>190</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="_1322"> <inState>190</inState> <outState>191</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="_1323"> <inState>191</inState> <outState>192</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="_1324"> <inState>192</inState> <outState>193</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="_1325"> <inState>193</inState> <outState>194</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="_1326"> <inState>194</inState> <outState>195</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="_1327"> <inState>195</inState> <outState>196</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="_1328"> <inState>196</inState> <outState>197</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="_1329"> <inState>197</inState> <outState>198</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="_1330"> <inState>198</inState> <outState>199</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="_1331"> <inState>199</inState> <outState>200</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="_1332"> <inState>200</inState> <outState>201</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="_1333"> <inState>201</inState> <outState>202</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="_1334"> <inState>202</inState> <outState>203</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="_1335"> <inState>203</inState> <outState>204</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_1336"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>grp_AES_CTR_xcrypt_buffe_fu_397 (AES_CTR_xcrypt_buffe)</first> <second class_id="37" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>BRAM</first> <second>8</second> </item> <item> <first>FF</first> <second>975</second> </item> <item> <first>LUT</first> <second>3669</second> </item> </second> </item> <item> <first>grp_KeyExpansion_fu_373 (KeyExpansion)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>1504</second> </item> <item> <first>LUT</first> <second>3487</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>2</count> <item_version>0</item_version> <item> <first>ctx_Iv_U</first> <second> <count>8</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>16</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> <item> <first>URAM</first> <second>0</second> </item> </second> </item> <item> <first>ctx_RoundKey_U</first> <second> <count>8</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>176</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>1408</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> <item> <first>URAM</first> <second>0</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>15</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>205</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>205</second> </item> <item> <first>LUT</first> <second>885</second> </item> </second> </item> <item> <first>ctx_Iv_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>18</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>72</second> </item> <item> <first>LUT</first> <second>89</second> </item> </second> </item> <item> <first>ctx_Iv_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>18</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>72</second> </item> <item> <first>LUT</first> <second>89</second> </item> </second> </item> <item> <first>ctx_Iv_ce0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_ce1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_d0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>10</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>80</second> </item> <item> <first>LUT</first> <second>47</second> </item> </second> </item> <item> <first>ctx_Iv_d1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>10</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>80</second> </item> <item> <first>LUT</first> <second>47</second> </item> </second> </item> <item> <first>ctx_Iv_we0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_we1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_ce0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_ce1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_we0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ctx_RoundKey_we1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>24</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>204</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>204</second> </item> </second> </item> <item> <first>ctx_Iv_load_10_reg_1338</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_11_reg_1343</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_12_reg_1348</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_13_reg_1353</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_1_reg_1293</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_2_reg_1298</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_3_reg_1303</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_4_reg_1308</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_5_reg_1313</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_6_reg_1318</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_7_reg_1323</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_8_reg_1328</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_9_reg_1333</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_reg_1288</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397_ap_start_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>p_iv_10_reg_1148</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_11_reg_1153</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_14_reg_1178</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_15_reg_1183</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_2_reg_1028</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_3_reg_1038</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_6_reg_1118</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_7_reg_1123</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>2</count> <item_version>0</item_version> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>grp_KeyExpansion_fu_373</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="39" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>grp_AES_CTR_xcrypt_buffe_fu_397 (AES_CTR_xcrypt_buffe)</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>grp_KeyExpansion_fu_373 (KeyExpansion)</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>2</count> <item_version>0</item_version> <item> <first>ctx_Iv_U</first> <second> <count>1</count> <item_version>0</item_version> <item>467</item> </second> </item> <item> <first>ctx_RoundKey_U</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="41" tracking_level="0" version="0"> <count>145</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>27</first> <second class_id="43" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>0</first> <second>87</second> </second> </item> <item> <first>91</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>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>114</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>88</first> <second>106</second> </second> </item> <item> <first>124</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>195</first> <second>1</second> </second> </item> <item> <first>143</first> <second> <first>195</first> <second>1</second> </second> </item> <item> <first>144</first> <second> <first>196</first> <second>1</second> </second> </item> <item> <first>145</first> <second> <first>196</first> <second>1</second> </second> </item> <item> <first>146</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>197</first> <second>1</second> </second> </item> <item> <first>151</first> <second> <first>197</first> <second>1</second> </second> </item> <item> <first>152</first> <second> <first>198</first> <second>1</second> </second> </item> <item> <first>153</first> <second> <first>198</first> <second>1</second> </second> </item> <item> <first>154</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>199</first> <second>1</second> </second> </item> <item> <first>159</first> <second> <first>199</first> <second>1</second> </second> </item> <item> <first>160</first> <second> <first>200</first> <second>1</second> </second> </item> <item> <first>161</first> <second> <first>200</first> <second>1</second> </second> </item> <item> <first>162</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>201</first> <second>1</second> </second> </item> <item> <first>167</first> <second> <first>201</first> <second>1</second> </second> </item> <item> <first>168</first> <second> <first>202</first> <second>1</second> </second> </item> <item> <first>169</first> <second> <first>202</first> <second>1</second> </second> </item> <item> <first>170</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>203</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>173</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>203</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="48" tracking_level="1" version="0" object_id="_1337"> <region_name>aes16_bidir</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>173</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>204</interval> <pipe_depth>204</pipe_depth> </item> </regions> <dp_fu_nodes class_id="49" tracking_level="0" version="0"> <count>113</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>192</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>220</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>242</first> <second> <count>48</count> <item_version>0</item_version> <item>92</item> <item>94</item> <item>96</item> <item>98</item> <item>100</item> <item>102</item> <item>104</item> <item>106</item> <item>108</item> <item>110</item> <item>112</item> <item>114</item> <item>116</item> <item>118</item> <item>120</item> <item>122</item> <item>142</item> <item>142</item> <item>143</item> <item>143</item> <item>144</item> <item>144</item> <item>145</item> <item>145</item> <item>150</item> <item>150</item> <item>151</item> <item>151</item> <item>152</item> <item>152</item> <item>153</item> <item>153</item> <item>158</item> <item>158</item> <item>159</item> <item>159</item> <item>160</item> <item>160</item> <item>161</item> <item>161</item> <item>166</item> <item>166</item> <item>167</item> <item>167</item> <item>168</item> <item>168</item> <item>169</item> <item>169</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>317</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>325</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>349</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>365</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>373</first> <second> <count>88</count> <item_version>0</item_version> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> </second> </item> <item> <first>397</first> <second> <count>107</count> <item_version>0</item_version> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> </second> </item> <item> <first>421</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>426</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>442</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>464</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>474</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>485</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>500</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>511</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>533</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>538</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>560</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>571</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>576</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>598</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>625</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>635</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>645</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>650</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>661</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>671</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>681</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>686</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>697</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>707</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>717</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>722</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>733</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>744</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>755</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>760</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>771</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>782</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>793</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>798</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>809</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>820</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>831</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>836</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>847</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>858</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>869</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>873</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>877</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>881</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>885</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>889</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>893</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>897</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>901</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>905</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>909</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>913</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>917</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>921</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>925</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>929</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>933</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>946</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>959</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>972</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>985</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>994</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>1003</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>1012</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="52" tracking_level="0" version="0"> <count>90</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>ctx_Iv_addr_10_gep_fu_325</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>ctx_Iv_addr_11_gep_fu_333</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>ctx_Iv_addr_12_gep_fu_341</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>ctx_Iv_addr_13_gep_fu_349</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>ctx_Iv_addr_14_gep_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>ctx_Iv_addr_15_gep_fu_365</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>ctx_Iv_addr_1_gep_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>ctx_Iv_addr_2_gep_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>ctx_Iv_addr_3_gep_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>ctx_Iv_addr_4_gep_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>ctx_Iv_addr_5_gep_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>ctx_Iv_addr_6_gep_fu_293</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>ctx_Iv_addr_7_gep_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>ctx_Iv_addr_8_gep_fu_309</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>ctx_Iv_addr_9_gep_fu_317</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>ctx_Iv_addr_gep_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>ctx_Iv_alloca_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>ctx_RoundKey_alloca_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>or_ln55_5_1_fu_946</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>or_ln55_5_2_fu_959</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>or_ln55_5_3_fu_972</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>or_ln55_5_fu_933</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>or_ln59_2_1_fu_994</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>or_ln59_2_2_fu_1003</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>or_ln59_2_3_fu_1012</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>or_ln59_2_fu_985</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>p_iv_0_fu_426</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>p_iv_10_fu_661</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_iv_11_fu_671</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_iv_12_fu_681</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_iv_13_fu_686</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_iv_14_fu_697</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_iv_15_fu_707</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_iv_1_fu_442</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>p_iv_2_fu_464</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_iv_3_fu_485</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_iv_4_fu_609</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_iv_5_fu_614</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_iv_6_fu_625</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>p_iv_7_fu_635</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>p_iv_8_fu_645</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>p_iv_9_fu_650</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>p_key_0_fu_421</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>p_key_10_fu_549</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_key_11_fu_560</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_key_12_fu_571</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_key_13_fu_576</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>p_key_14_fu_587</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>p_key_15_fu_598</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>p_key_1_fu_431</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>p_key_2_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_key_3_fu_474</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_key_4_fu_495</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_key_5_fu_500</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_key_6_fu_511</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_key_7_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_key_8_fu_533</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>p_key_9_fu_538</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_text_0_1_fu_925</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>p_text_0_fu_717</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_text_10_1_fu_885</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>p_text_10_fu_809</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_text_11_1_fu_881</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>p_text_11_fu_820</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>p_text_12_1_fu_877</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>p_text_12_fu_831</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_text_13_1_fu_873</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>p_text_13_fu_836</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_text_14_1_fu_869</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>p_text_14_fu_847</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_text_15_1_fu_929</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>p_text_15_fu_858</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_text_1_1_fu_921</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>p_text_1_fu_722</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_text_2_1_fu_917</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>p_text_2_fu_733</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_text_3_1_fu_913</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>p_text_3_fu_744</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>p_text_4_1_fu_909</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>p_text_4_fu_755</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_text_5_1_fu_905</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>p_text_5_fu_760</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_text_6_1_fu_901</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>p_text_6_fu_771</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_text_7_1_fu_897</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>p_text_7_fu_782</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_text_8_1_fu_893</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>p_text_8_fu_793</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>p_text_9_1_fu_889</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>p_text_9_fu_798</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397</first> <second> <count>107</count> <item_version>0</item_version> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> </second> </item> <item> <first>grp_KeyExpansion_fu_373</first> <second> <count>88</count> <item_version>0</item_version> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>20</count> <item_version>0</item_version> <item> <first>inout_0_read_read_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>inout_1_read_read_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>inout_2_read_read_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>inout_3_read_read_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>iv_0_read_read_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>iv_1_read_read_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>iv_2_read_read_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>iv_3_read_read_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>key_0_read_read_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>key_1_read_read_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>key_2_read_read_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>key_3_read_read_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>write_ln55_write_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>write_ln55_write_fu_185</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>write_ln55_write_fu_192</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>write_ln55_write_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>write_ln59_write_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>write_ln59_write_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>write_ln59_write_fu_220</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>write_ln59_write_fu_227</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="54" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first class_id="56" tracking_level="0" version="0"> <first>ctx_Iv</first> <second>0</second> </first> <second> <count>24</count> <item_version>0</item_version> <item>92</item> <item>96</item> <item>100</item> <item>104</item> <item>108</item> <item>112</item> <item>116</item> <item>120</item> <item>142</item> <item>142</item> <item>144</item> <item>144</item> <item>150</item> <item>150</item> <item>152</item> <item>152</item> <item>158</item> <item>158</item> <item>160</item> <item>160</item> <item>166</item> <item>166</item> <item>168</item> <item>168</item> </second> </item> <item> <first> <first>ctx_Iv</first> <second>1</second> </first> <second> <count>24</count> <item_version>0</item_version> <item>94</item> <item>98</item> <item>102</item> <item>106</item> <item>110</item> <item>114</item> <item>118</item> <item>122</item> <item>143</item> <item>143</item> <item>145</item> <item>145</item> <item>151</item> <item>151</item> <item>153</item> <item>153</item> <item>159</item> <item>159</item> <item>161</item> <item>161</item> <item>167</item> <item>167</item> <item>169</item> <item>169</item> </second> </item> <item> <first> <first>ctx_Iv</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first> <first>sbox</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>90</item> <item>123</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>67</count> <item_version>0</item_version> <item> <first>1023</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>1028</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>1033</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>1038</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>1043</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>1048</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>1053</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>1058</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>1063</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>1068</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>1073</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>1078</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>1083</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>1088</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>1093</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>1098</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>1103</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>1108</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>1113</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>1118</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>1123</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>1128</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>1133</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>1138</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>1143</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>1148</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>1153</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>1158</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>1163</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>1168</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>1173</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>1178</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>1183</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>1188</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>1193</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>1198</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>1203</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>1208</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>1213</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>1218</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>1223</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>1228</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>1233</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>1238</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>1243</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>1248</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>1253</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>1258</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>1263</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>1268</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>1273</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>1278</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>1283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>1288</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>1293</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>1298</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>1303</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>1308</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>1313</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>1318</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>1323</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>1328</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>1333</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>1338</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>1343</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>1348</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>1353</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>67</count> <item_version>0</item_version> <item> <first>ctx_Iv_addr_10_reg_1168</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>ctx_Iv_addr_11_reg_1173</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>ctx_Iv_addr_12_reg_1188</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>ctx_Iv_addr_13_reg_1193</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>ctx_Iv_addr_14_reg_1198</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>ctx_Iv_addr_15_reg_1203</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>ctx_Iv_addr_1_reg_1103</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>ctx_Iv_addr_2_reg_1108</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>ctx_Iv_addr_3_reg_1113</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>ctx_Iv_addr_4_reg_1128</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>ctx_Iv_addr_5_reg_1133</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>ctx_Iv_addr_6_reg_1138</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>ctx_Iv_addr_7_reg_1143</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>ctx_Iv_addr_8_reg_1158</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>ctx_Iv_addr_9_reg_1163</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>ctx_Iv_addr_reg_1098</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>ctx_Iv_load_10_reg_1338</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>ctx_Iv_load_11_reg_1343</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>ctx_Iv_load_12_reg_1348</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>ctx_Iv_load_13_reg_1353</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>ctx_Iv_load_1_reg_1293</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>ctx_Iv_load_2_reg_1298</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>ctx_Iv_load_3_reg_1303</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>ctx_Iv_load_4_reg_1308</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>ctx_Iv_load_5_reg_1313</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>ctx_Iv_load_6_reg_1318</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>ctx_Iv_load_7_reg_1323</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>ctx_Iv_load_8_reg_1328</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>ctx_Iv_load_9_reg_1333</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>ctx_Iv_load_reg_1288</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>p_iv_10_reg_1148</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_iv_11_reg_1153</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_iv_14_reg_1178</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_iv_15_reg_1183</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_iv_2_reg_1028</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_iv_3_reg_1038</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_iv_6_reg_1118</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>p_iv_7_reg_1123</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>p_key_10_reg_1073</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_key_11_reg_1078</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_key_12_reg_1083</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_key_14_reg_1088</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>p_key_15_reg_1093</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>p_key_2_reg_1023</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_key_3_reg_1033</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_key_4_reg_1043</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_key_5_reg_1048</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_key_6_reg_1053</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_key_7_reg_1058</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_key_8_reg_1063</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>p_key_9_reg_1068</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_text_0_reg_1208</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_text_10_reg_1258</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_text_11_reg_1263</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>p_text_12_reg_1268</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_text_13_reg_1273</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_text_14_reg_1278</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_text_15_reg_1283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_text_1_reg_1213</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_text_2_reg_1218</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_text_3_reg_1223</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>p_text_4_reg_1228</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_text_5_reg_1233</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_text_6_reg_1238</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_text_7_reg_1243</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_text_8_reg_1248</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>p_text_9_reg_1253</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>inout_0</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> </second> </item> <item> <first>inout_1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> </second> </item> <item> <first>inout_2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> </second> </item> <item> <first>inout_3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>iv_0</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> </second> </item> <item> <first>iv_1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> </second> </item> <item> <first>iv_2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> </second> </item> <item> <first>iv_3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>key_0</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </second> </item> <item> <first>key_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> </second> </item> <item> <first>key_2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> </second> </item> <item> <first>key_3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>27</first> <second>RAM</second> </item> <item> <first>28</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
31.674745
87
0.454718
a19a1d9a7f9da6a2ec2e834b8b6937efac752826
1,050
ads
Ada
source/slim-messages-vers.ads
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
source/slim-messages-vers.ads
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
source/slim-messages-vers.ads
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.Strings; package Slim.Messages.vers is type Vers_Message is new Message with private; not overriding procedure Set_Version (Self : in out Vers_Message; Value : League.Strings.Universal_String); private subtype Byte is Ada.Streams.Stream_Element; type Vers_Message is new Message with record Version : League.Strings.Universal_String; end record; overriding function Read (Data : not null access League.Stream_Element_Vectors.Stream_Element_Vector) return Vers_Message; overriding procedure Write (Self : Vers_Message; Tag : out Message_Tag; Data : out League.Stream_Element_Vectors.Stream_Element_Vector); overriding procedure Visit (Self : not null access Vers_Message; Visiter : in out Slim.Message_Visiters.Visiter'Class); end Slim.Messages.vers;
26.923077
70
0.68381
1ae5b13c4bf25f1d4e5ef841c62f8748434af7ea
880
adb
Ada
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/foo_o508_021.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/foo_o508_021.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/pckd_neg/foo_o508_021.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright (C) 2015-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo_O508_021 is SSA : Signed_Simple_Array := (-1, 2, -3, 4); begin Update_Signed_Small (SSA (3)); -- STOP end Foo_O508_021;
38.26087
73
0.725
1ad54a22003edcee276dcbe57a3441e78dc469fd
711
ads
Ada
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-circle.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-circle.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-circle.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
with impact.d2.Fixture; package impact.d2.Contact.circle -- -- -- is type b2CircleContact is new b2Contact with null record; type View is access all b2CircleContact'Class; function to_b2CircleContact (fixtureA, fixtureB : access fixture.b2Fixture'Class) return b2CircleContact; overriding procedure Evaluate (Self : in out b2CircleContact; manifold : access collision.b2Manifold; xfA, xfB : in b2Transform); function Create (fixtureA, fixtureB : access Fixture.b2Fixture) return access b2Contact'Class; procedure Destroy (contact : in out impact.d2.Contact.view); end impact.d2.Contact.circle;
25.392857
108
0.670886
2e1f4ab8933b639863ccc3ccf27636721e0ceb96
71
ada
Ada
Task/Executable-library/Ada/executable-library-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Executable-library/Ada/executable-library-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Executable-library/Ada/executable-library-1.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
package Parameter is X: Natural := 0; Y: Natural; end Parameter;
14.2
20
0.661972
1ab090408fd54be9fe1b2842f7a448dbd89d9f29
1,597
adb
Ada
src/fltk-images-bitmaps-xbm.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
1
2020-12-18T15:20:13.000Z
2020-12-18T15:20:13.000Z
src/fltk-images-bitmaps-xbm.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
src/fltk-images-bitmaps-xbm.adb
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
with Interfaces.C, System; use type System.Address; package body FLTK.Images.Bitmaps.XBM is function new_fl_xbm_image (F : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_xbm_image, "new_fl_xbm_image"); pragma Inline (new_fl_xbm_image); procedure free_fl_xbm_image (P : in System.Address); pragma Import (C, free_fl_xbm_image, "free_fl_xbm_image"); pragma Inline (free_fl_xbm_image); overriding procedure Finalize (This : in out XBM_Image) is begin if This.Void_Ptr /= System.Null_Address and then This in XBM_Image'Class then free_fl_xbm_image (This.Void_Ptr); This.Void_Ptr := System.Null_Address; end if; Finalize (Bitmap (This)); end Finalize; package body Forge is function Create (Filename : in String) return XBM_Image is begin return This : XBM_Image do This.Void_Ptr := new_fl_xbm_image (Interfaces.C.To_C (Filename)); case fl_image_fail (This.Void_Ptr) is when 1 => raise No_Image_Error; when 2 => raise File_Access_Error; when 3 => raise Format_Error; when others => null; end case; end return; end Create; end Forge; end FLTK.Images.Bitmaps.XBM;
22.180556
62
0.536005
2f8959b815f48764c5aaa1f7fd6f5e73951e4c00
12,359
adb
Ada
tests/bases-trade-test_data-tests.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
80
2017-04-08T23:14:07.000Z
2022-02-10T22:30:51.000Z
tests/bases-trade-test_data-tests.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
89
2017-06-24T08:18:26.000Z
2021-11-12T04:37:36.000Z
tests/bases-trade-test_data-tests.adb
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
9
2018-04-14T16:37:25.000Z
2020-03-21T14:33:49.000Z
-- This package has been generated automatically by GNATtest. -- You are allowed to add your code to the bodies of test routines. -- Such changes will be kept during further regeneration of this file. -- All code placed outside of test routine bodies will be lost. The -- code intended to set up and tear down the test environment should be -- placed into Bases.Trade.Test_Data. with AUnit.Assertions; use AUnit.Assertions; with System.Assertions; -- begin read only -- id:2.2/00/ -- -- This section can be used to add with clauses if necessary. -- -- end read only with Crafts; use Crafts; with Maps; use Maps; with BasesTypes; use BasesTypes; -- begin read only -- end read only package body Bases.Trade.Test_Data.Tests is -- begin read only -- id:2.2/01/ -- -- This section can be used to add global variables and other elements. -- -- end read only -- begin read only -- end read only -- begin read only procedure Wrap_Test_HireRecruit_8627ed_6a9998 (RecruitIndex: Recruit_Container.Extended_Index; Cost: Positive; DailyPayment, TradePayment: Natural; ContractLenght: Integer) is begin GNATtest_Generated.GNATtest_Standard.Bases.Trade.HireRecruit (RecruitIndex, Cost, DailyPayment, TradePayment, ContractLenght); end Wrap_Test_HireRecruit_8627ed_6a9998; -- end read only -- begin read only procedure Test_HireRecruit_test_hirerecruit(Gnattest_T: in out Test); procedure Test_HireRecruit_8627ed_6a9998(Gnattest_T: in out Test) renames Test_HireRecruit_test_hirerecruit; -- id:2.2/8627ed08fea0f1f9/HireRecruit/1/0/test_hirerecruit/ procedure Test_HireRecruit_test_hirerecruit(Gnattest_T: in out Test) is procedure HireRecruit (RecruitIndex: Recruit_Container.Extended_Index; Cost: Positive; DailyPayment, TradePayment: Natural; ContractLenght: Integer) renames Wrap_Test_HireRecruit_8627ed_6a9998; -- end read only pragma Unreferenced(Gnattest_T); Amount: constant Positive := Positive(Player_Ship.Crew.Length); begin HireRecruit(1, 1, 0, 0, 1); Assert (Positive(Player_Ship.Crew.Length) = Amount + 1, "Failed to hire recruit to player ship crew."); -- begin read only end Test_HireRecruit_test_hirerecruit; -- end read only -- begin read only procedure Wrap_Test_BuyRecipe_64b3a1_e0c4a8 (RecipeIndex: Unbounded_String) is begin begin pragma Assert((RecipeIndex /= Null_Unbounded_String)); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "req_sloc(bases-trade.ads:0):Test_BuyRecipe test requirement violated"); end; GNATtest_Generated.GNATtest_Standard.Bases.Trade.BuyRecipe(RecipeIndex); begin pragma Assert(True); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "ens_sloc(bases-trade.ads:0:):Test_BuyRecipe test commitment violated"); end; end Wrap_Test_BuyRecipe_64b3a1_e0c4a8; -- end read only -- begin read only procedure Test_BuyRecipe_test_buyrecipe(Gnattest_T: in out Test); procedure Test_BuyRecipe_64b3a1_e0c4a8(Gnattest_T: in out Test) renames Test_BuyRecipe_test_buyrecipe; -- id:2.2/64b3a1fdc448171c/BuyRecipe/1/0/test_buyrecipe/ procedure Test_BuyRecipe_test_buyrecipe(Gnattest_T: in out Test) is procedure BuyRecipe(RecipeIndex: Unbounded_String) renames Wrap_Test_BuyRecipe_64b3a1_e0c4a8; -- end read only pragma Unreferenced(Gnattest_T); Amount: constant Positive := Positive(Known_Recipes.Length); BaseIndex: constant Positive := SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).BaseIndex; begin for Recipe of Bases_Types_List(Sky_Bases(BaseIndex).Base_Type) .Recipes loop if Known_Recipes.Find_Index(Item => Recipe) = Positive_Container.No_Index then BuyRecipe(Recipe); exit; end if; end loop; Assert (Positive(Known_Recipes.Length) = Amount + 1, "Failed to buy recipe from base."); -- begin read only end Test_BuyRecipe_test_buyrecipe; -- end read only -- begin read only procedure Wrap_Test_HealWounded_ec5713_276c05 (MemberIndex: Crew_Container.Extended_Index) is begin begin pragma Assert((MemberIndex <= Player_Ship.Crew.Last_Index)); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "req_sloc(bases-trade.ads:0):Test_HealWounded test requirement violated"); end; GNATtest_Generated.GNATtest_Standard.Bases.Trade.HealWounded (MemberIndex); begin pragma Assert(True); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "ens_sloc(bases-trade.ads:0:):Test_HealWounded test commitment violated"); end; end Wrap_Test_HealWounded_ec5713_276c05; -- end read only -- begin read only procedure Test_HealWounded_test_healwounded(Gnattest_T: in out Test); procedure Test_HealWounded_ec5713_276c05(Gnattest_T: in out Test) renames Test_HealWounded_test_healwounded; -- id:2.2/ec5713429dea8dfb/HealWounded/1/0/test_healwounded/ procedure Test_HealWounded_test_healwounded(Gnattest_T: in out Test) is procedure HealWounded(MemberIndex: Crew_Container.Extended_Index) renames Wrap_Test_HealWounded_ec5713_276c05; -- end read only pragma Unreferenced(Gnattest_T); begin Player_Ship.Cargo(1).Amount := Player_Ship.Cargo(1).Amount + 2_000; Player_Ship.Crew(1).Health := 90; HealWounded(1); Assert (Player_Ship.Crew(1).Health = 100, "Failed to heal selected crew member."); Player_Ship.Crew(1).Health := 90; HealWounded(0); Assert(Player_Ship.Crew(1).Health = 100, "Failed to heal whole crew."); -- begin read only end Test_HealWounded_test_healwounded; -- end read only -- begin read only procedure Wrap_Test_HealCost_772065_168081 (Cost, Time: in out Natural; MemberIndex: Crew_Container.Extended_Index) is begin begin pragma Assert(MemberIndex <= Player_Ship.Crew.Last_Index); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "req_sloc(bases-trade.ads:0):Test_HealCost test requirement violated"); end; GNATtest_Generated.GNATtest_Standard.Bases.Trade.HealCost (Cost, Time, MemberIndex); begin pragma Assert(Cost > 0 and Time > 0); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "ens_sloc(bases-trade.ads:0:):Test_HealCost test commitment violated"); end; end Wrap_Test_HealCost_772065_168081; -- end read only -- begin read only procedure Test_HealCost_test_healcost(Gnattest_T: in out Test); procedure Test_HealCost_772065_168081(Gnattest_T: in out Test) renames Test_HealCost_test_healcost; -- id:2.2/77206542a3e2c8c9/HealCost/1/0/test_healcost/ procedure Test_HealCost_test_healcost(Gnattest_T: in out Test) is procedure HealCost (Cost, Time: in out Natural; MemberIndex: Crew_Container.Extended_Index) renames Wrap_Test_HealCost_772065_168081; -- end read only pragma Unreferenced(Gnattest_T); Cost, Time: Natural := 0; begin Player_Ship.Crew(1).Health := Player_Ship.Crew(1).Health - 10; HealCost(Cost, Time, 1); Assert(Cost > 0, "Failed to count player crew member heal costs."); Assert(Time > 0, "Failed to count player crew member heal time."); -- begin read only end Test_HealCost_test_healcost; -- end read only -- begin read only function Wrap_Test_TrainCost_976ed7_313cfa (MemberIndex: Crew_Container.Extended_Index; SkillIndex: Skills_Container.Extended_Index) return Natural is begin begin pragma Assert (MemberIndex in Player_Ship.Crew.First_Index .. Player_Ship.Crew.Last_Index and SkillIndex in 1 .. Skills_Amount); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "req_sloc(bases-trade.ads:0):Test_TrainCost test requirement violated"); end; declare Test_TrainCost_976ed7_313cfa_Result: constant Natural := GNATtest_Generated.GNATtest_Standard.Bases.Trade.TrainCost (MemberIndex, SkillIndex); begin begin pragma Assert(True); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "ens_sloc(bases-trade.ads:0:):Test_TrainCost test commitment violated"); end; return Test_TrainCost_976ed7_313cfa_Result; end; end Wrap_Test_TrainCost_976ed7_313cfa; -- end read only -- begin read only procedure Test_TrainCost_test_traincost(Gnattest_T: in out Test); procedure Test_TrainCost_976ed7_313cfa(Gnattest_T: in out Test) renames Test_TrainCost_test_traincost; -- id:2.2/976ed7988ae3d183/TrainCost/1/0/test_traincost/ procedure Test_TrainCost_test_traincost(Gnattest_T: in out Test) is function TrainCost (MemberIndex: Crew_Container.Extended_Index; SkillIndex: Skills_Container.Extended_Index) return Natural renames Wrap_Test_TrainCost_976ed7_313cfa; -- end read only pragma Unreferenced(Gnattest_T); begin Assert (TrainCost(1, 1) > 0, "Failed to count player crew member training cost."); -- begin read only end Test_TrainCost_test_traincost; -- end read only -- begin read only procedure Wrap_Test_TrainSkill_97d670_bf4684 (MemberIndex: Crew_Container.Extended_Index; SkillIndex: Skills_Container.Extended_Index; Amount: Positive; Is_Amount: Boolean := True) is begin begin pragma Assert (MemberIndex in Player_Ship.Crew.First_Index .. Player_Ship.Crew.Last_Index and SkillIndex in 1 .. Skills_Amount); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "req_sloc(bases-trade.ads:0):Test_TrainSkill test requirement violated"); end; GNATtest_Generated.GNATtest_Standard.Bases.Trade.TrainSkill (MemberIndex, SkillIndex, Amount, Is_Amount); begin pragma Assert(True); null; exception when System.Assertions.Assert_Failure => AUnit.Assertions.Assert (False, "ens_sloc(bases-trade.ads:0:):Test_TrainSkill test commitment violated"); end; end Wrap_Test_TrainSkill_97d670_bf4684; -- end read only -- begin read only procedure Test_TrainSkill_test_trainskill(Gnattest_T: in out Test); procedure Test_TrainSkill_97d670_bf4684(Gnattest_T: in out Test) renames Test_TrainSkill_test_trainskill; -- id:2.2/97d67059a26fe921/TrainSkill/1/0/test_trainskill/ procedure Test_TrainSkill_test_trainskill(Gnattest_T: in out Test) is procedure TrainSkill (MemberIndex: Crew_Container.Extended_Index; SkillIndex: Skills_Container.Extended_Index; Amount: Positive; Is_Amount: Boolean := True) renames Wrap_Test_TrainSkill_97d670_bf4684; -- end read only pragma Unreferenced(Gnattest_T); SkillsAmount: constant Positive := Positive(Player_Ship.Crew(1).Skills.Length); begin TrainSkill(1, 1, 1); Assert (Positive(Player_Ship.Crew(1).Skills.Length) > SkillsAmount, "Failed to train new skill."); -- begin read only end Test_TrainSkill_test_trainskill; -- end read only -- begin read only -- id:2.2/02/ -- -- This section can be used to add elaboration code for the global state. -- begin -- end read only null; -- begin read only -- end read only end Bases.Trade.Test_Data.Tests;
33.402703
90
0.685735
3dbf74f8047ba15998ca5c8a07049a101e07e8ab
1,370
ads
Ada
openbsd.ads
gpicchiarelli/openbsd-ada
8decf2e7771ea9e83f6de0f4e4dd4a287694287d
[ "CC0-1.0" ]
3
2021-06-03T21:19:09.000Z
2021-06-07T01:02:09.000Z
openbsd.ads
gpicchiarelli/openbsd-ada
8decf2e7771ea9e83f6de0f4e4dd4a287694287d
[ "CC0-1.0" ]
null
null
null
openbsd.ads
gpicchiarelli/openbsd-ada
8decf2e7771ea9e83f6de0f4e4dd4a287694287d
[ "CC0-1.0" ]
null
null
null
-- OpenBSD - Provide high-level Ada interfaces to OpenBSD's pledge and unveil. -- Written in 2019 by Prince Trippy [email protected] . -- To the extent possible under law, the author(s) have dedicated all copyright and related and -- neighboring rights to this software to the public domain worldwide. -- This software is distributed without any warranty. -- You should have received a copy of the CC0 Public Domain Dedication along with this software. -- If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. -- This is consistent with OpenBSD 6.5. package OpenBSD is type Allowing is (Allowed, Disallowed); type Promise is (Stdio, Rpath, Wpath, Cpath, Dpath, Tmppath, Inet, Mcast, Fattr, Chown, Flock, Unix, Dns, Getpw, Sendfd, Recvfd, Tape, Tty, Proc, Exec, Prot_Exec, Settime, Ps, Vminfo, Id, Pf, Audio, Video, Bpf, Unveil, Error); type Promise_Array is array (Promise) of Allowing; Pledge_Error : exception; procedure Pledge (Promises : in Promise_Array); type Permission is (Read, Write, Execute, Create); type Permission_Array is array (Permission) of Allowing; Unveil_Error : exception; procedure Unveil (Path : in String; Permissions : in Permission_Array); -- Perhaps I should also have a Disable_Unveil or is Pledge sufficient for all such cases? end OpenBSD;
48.928571
97
0.727007
1ad2a6db98b8201b8c45eb9667e09a70a8a4a48a
1,387
adb
Ada
gdb/testsuite/gdb.ada/fun_overload_menu/foo.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
1
2020-10-14T03:24:35.000Z
2020-10-14T03:24:35.000Z
gdb/testsuite/gdb.ada/fun_overload_menu/foo.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
gdb/testsuite/gdb.ada/fun_overload_menu/foo.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2015-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Foo is type New_Integer is new Integer; type Integer_Access is access Integer; function F (I : Integer; A : Integer_Access) return Boolean is begin return True; end F; function F (I : New_Integer; A : Integer_Access) return Boolean is begin return False; end F; procedure P (I : Integer; A : Integer_Access) is begin null; end P; procedure P (I : New_Integer; A : Integer_Access) is begin null; end P; B1 : constant Boolean := F (Integer'(1), null); -- BREAK B2 : constant Boolean := F (New_Integer'(2), null); begin P (Integer'(3), null); P (New_Integer'(4), null); end Foo;
28.895833
73
0.684211
c5da39576dad0427645c9385c745629f4f00b2d9
186
ads
Ada
courses/fundamentals_of_ada/labs/solar_system/230_interfacing_with_c/answers/my_solar_system.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
15
2020-10-07T08:56:45.000Z
2022-02-08T23:13:22.000Z
courses/fundamentals_of_ada/labs/solar_system/230_interfacing_with_c/src/my_solar_system.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
20
2020-11-05T14:35:20.000Z
2022-01-13T15:59:33.000Z
courses/fundamentals_of_ada/labs/solar_system/230_interfacing_with_c/answers/my_solar_system.ads
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
6
2020-10-08T15:57:06.000Z
2021-08-31T12:03:08.000Z
with Solar_System; use Solar_System; package My_Solar_System is -- declare variable Bodies which is an array of Body_Type Bodies : aliased Bodies_Array_T; end My_Solar_System;
20.666667
61
0.784946