CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- T A R G P A R M -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1999-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. -- -- -- ------------------------------------------------------------------------------ -- This package obtains parameters from the target runtime version of -- System, to indicate parameters relevant to the target environment. -- Conceptually, these parameters could be obtained using rtsfind, but -- we do not do this for three reasons: -- 1. Compiling System for every compilation wastes time -- 2. This compilation impedes debugging by adding extra compile steps -- 3. There are recursion problems coming from compiling System itself -- or any of its children. -- For all these reasons, we read in the source of System, and then scan -- it at the text level to extract the parameter values. -- Note however, that later on, when the ali file is written, we make sure -- that the System file is at least parsed, so that the checksum is properly -- computed and set in the ali file. This partially negates points 1 and 2 -- above although just parsing is quick and does not impact debugging much. package Targparm is -- The following parameters correspond to the variables defined in the -- private part of System (without the terminating _On_Target). Note -- that it is required that all parameters be specified in system.ads. ----------------------------------- -- Control of Exception Handling -- ----------------------------------- -- GNAT provides two methods of implementing exceptions: -- Longjmp/Setjmp (-gnatL) -- This approach uses longjmp/setjmp to handle exceptions. It -- uses less storage, and can often propagate exceptions faster, -- at the expense of (sometimes considerable) overhead in setting -- up an exception handler. This approach is available on all -- targets, and is the default where it is the only approach. -- Zero Cost (-gnatZ) -- This approach uses separate exception tables. These use extra -- storage, and exception propagation can be quite slow, but there -- is no overhead in setting up an exception handler (it is to this -- latter operation that the phrase zero-cost refers). This approach -- is only available on some targets, and is the default where it is -- available. ZCX_By_Default_On_Target : Boolean; -- Indicates if zero cost exceptions are active by default. Can be modified -- by the use of -gnatZ and -gnatL switches. GCC_ZCX_Support_On_Target : Boolean; -- Indicates that when ZCX is active the mechanism to be used is the -- standard GCC ZCX mechanism (introduced in GCC 3.1) Front_End_ZCX_Support_On_Target : Boolean; -- Indicates that when ZCX is active (and GCC_ZCX_Support is not set) -- the mechanism to be used is the GNAT front end specific ZCX mechanism --------------------------------------- -- High_Integrity (No Run Time) Mode -- --------------------------------------- -- In High_Integrity mode, there is no system run-time, and the flag -- Opt.No_Run_Time is set so that the language is appropriately -- restricted to forbid construct that would generate run-time calls. High_Integrity_Mode_On_Target : Boolean; -- Indicates that this build is for a high integrity mode version of -- GNAT, so that no run time is permitted. ------------------------------- -- Control of Stack Checking -- ------------------------------- -- GNAT provides two methods of implementing exceptions: -- GCC Probing Mechanism -- This approach uses the standard GCC mechanism for -- stack checking. The method assumes that accessing -- storage immediately beyond the end of the stack -- will result in a trap that is converted to a storage -- error by the runtime system. This mechanism has -- minimal overhead, but requires complex hardware, -- operating system and run-time support. Probing is -- the default method where it is available. The stack -- size for the environment task depends on the operating -- system and cannot be set in a system-independent way. -- GNAT Stack-limit Checking -- This method relies on comparing the stack pointer -- with per-task stack limits. If the check fails, an -- exception is explicitly raised. The advantage is -- that the method requires no extra system dependent -- runtime support and can be used on systems without -- memory protection as well, but at the cost of more -- overhead for doing the check. This method is the -- default on systems that lack complete support for -- probing. Stack_Check_Probes_On_Target : Boolean; -- Indicates if stack check probes are used, as opposed to the standard -- target independent comparison method. Stack_Check_Default_On_Target : Boolean; -- Indicates if stack checking is on by default ---------------------------- -- Command Line Arguments -- ---------------------------- -- For most ports of GNAT, command line arguments are supported. The -- following flag is set to False for targets that do not support -- command line arguments (notably VxWorks). Command_Line_Args_On_Target : Boolean; -- Set False if no command line arguments on target -- Note: this is prepared for future use, but not yet used, since we -- do not yet have a way of propagating Targparm params to the binder ----------------------- -- Main Program Name -- ----------------------- -- When the binder generates the main program to be used to create the -- executable, the main program name is main by default (to match the -- usual Unix practice). If this parameter is set to True, then the -- name is instead by default taken from the actual Ada main program -- name (just the name of the child if the main program is a child unit). -- In either case, this value can be overridden using -M name. Use_Ada_Main_Program_Name_On_Target : Boolean; -- Set True to use the Ada main program name as the main name -- Note: this is prepared for future use, but not yet used, since we -- do not yet have a way of propagating Targparm params to the binder ---------------------------- -- Support of Long Shifts -- ---------------------------- -- In GNORT mode, we cannot call library routines, and in particular -- we cannot call routines for long (64-bit) shifts if such routines -- are required on the target. This comes up in the context of support -- of packed arrays. We can only represent packed arrays whose length -- is in the range 33- to 64-bits as modular types if long shifts are -- done with inline code. -- For the default version, for now we set long shifts inlined as True -- This may not be quite accurate, but until we get proper separate -- System's for each target, it is a safer choice. Long_Shifts_Inlined_On_Target : Boolean; -- Indicates if long (double word) shifts are generated using inlined -- code (and thus are permissible in No_Run_Time mode). ---------------------------------------------- -- Boolean-Valued Floating-Point Attributes -- ---------------------------------------------- -- The constants below give the values for representation oriented -- floating-point attributes that are the same for all float types -- on the target. These are all boolean values. -- A value is only True if the target reliably supports the corresponding -- feature. Reliably here means that support is guaranteed for all -- possible settings of the relevant compiler switches (like -mieee), -- since we cannot control the user setting of those switches. -- The attributes cannot dependent on the current setting of compiler -- switches, since the values must be static and consistent throughout -- the partition. We probably should add such consistency checks in future, -- but for now we don't do this. AAMP_On_Target : Boolean; -- Set to True if target is AAMP. Denorm_On_Target : Boolean; -- Set to False on targets that do not reliably support denormals. -- Reliably here means for all settings of the relevant -m flag, so -- for example, this is False on the Alpha where denormals are not -- supported unless -mieee is used. Machine_Rounds_On_Target : Boolean; -- Set to False for targets where S'Machine_Rounds is False Machine_Overflows_On_Target : Boolean; -- Set to True for targets where S'Machine_Overflows is True Signed_Zeros_On_Target : Boolean; -- Set to False on targets that do not reliably support signed zeros. OpenVMS_On_Target : Boolean; -- Set to True if target is OpenVMS. -------------------------------------------------------------- -- Handling of Unconstrained Values Returned from Functions -- -------------------------------------------------------------- -- Functions that return variable length objects, notably unconstrained -- arrays are a special case, because there is no simple obvious way of -- implementing this feature. Furthermore, this capability is not present -- in C++ or C, so typically the system ABI does not handle this case. -- GNAT uses two different approaches -- The Secondary Stack -- The secondary stack is a special storage pool that is used for -- this purpose. The called function places the result on the -- secondary stack, and the caller uses or copies the value from -- the secondary stack, and pops the secondary stack after the -- value is consumed. The secondary stack is outside the system -- ABI, and the important point is that although generally it is -- handled in a stack like manner corresponding to the subprogram -- call structure, a return from a function does NOT pop the stack. -- DSP (Depressed Stack Pointer) -- Some targets permit the implementation of a function call/return -- protocol in which the function does not pop the main stack pointer -- on return, but rather returns with the stack pointer depressed. -- This is not generally permitted by any ABI, but for at least some -- targets, the implementation of alloca provides a model for this -- approach. If return-with-DSP is implemented, then functions that -- return variable length objects do it by returning with the stack -- pointer depressed, and the returned object is a pointer to the -- area within the stack frame of the called procedure that contains -- the returned value. The caller must then pop the main stack when -- this value is consumed. Functions_Return_By_DSP_On_Target : Boolean; -- Set to True if target permits functions to return with using the -- DSP (depressed stack pointer) approach. ----------------- -- Data Layout -- ----------------- -- Normally when using the GCC backend, Gigi and GCC perform much of the -- data layout using the standard layout capabilities of GCC. If the -- parameter Backend_Layout is set to False, then the front end must -- perform all data layout. For further details see the package Layout. Frontend_Layout_On_Target : Boolean; -- Set True if front end does layout ----------------- -- Subprograms -- ----------------- procedure Get_Target_Parameters; -- Called at the start of execution to read the source of System and -- obtain and set the values of the above parameters. end Targparm;
-- This spec has been automatically generated from STM32F46_79x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.RCC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_HSITRIM_Field is HAL.UInt5; subtype CR_HSICAL_Field is HAL.UInt8; -- clock control register type CR_Register is record -- Internal high-speed clock enable HSION : Boolean := True; -- Read-only. Internal high-speed clock ready flag HSIRDY : Boolean := True; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Internal high-speed clock trimming HSITRIM : CR_HSITRIM_Field := 16#10#; -- Read-only. Internal high-speed clock calibration HSICAL : CR_HSICAL_Field := 16#0#; -- HSE clock enable HSEON : Boolean := False; -- Read-only. HSE clock ready flag HSERDY : Boolean := False; -- HSE clock bypass HSEBYP : Boolean := False; -- Clock security system enable CSSON : Boolean := False; -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Main PLL (PLL) enable PLLON : Boolean := False; -- Read-only. Main PLL (PLL) clock ready flag PLLRDY : Boolean := False; -- PLLI2S enable PLLI2SON : Boolean := False; -- Read-only. PLLI2S clock ready flag PLLI2SRDY : Boolean := False; -- PLLSAI enable PLLSAION : Boolean := False; -- Read-only. PLLSAI clock ready flag PLLSAIRDY : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record HSION at 0 range 0 .. 0; HSIRDY at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; HSITRIM at 0 range 3 .. 7; HSICAL at 0 range 8 .. 15; HSEON at 0 range 16 .. 16; HSERDY at 0 range 17 .. 17; HSEBYP at 0 range 18 .. 18; CSSON at 0 range 19 .. 19; Reserved_20_23 at 0 range 20 .. 23; PLLON at 0 range 24 .. 24; PLLRDY at 0 range 25 .. 25; PLLI2SON at 0 range 26 .. 26; PLLI2SRDY at 0 range 27 .. 27; PLLSAION at 0 range 28 .. 28; PLLSAIRDY at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype PLLCFGR_PLLM_Field is HAL.UInt6; subtype PLLCFGR_PLLN_Field is HAL.UInt9; subtype PLLCFGR_PLLP_Field is HAL.UInt2; subtype PLLCFGR_PLLQ_Field is HAL.UInt4; subtype PLLCFGR_PLLR_Field is HAL.UInt3; -- PLL configuration register type PLLCFGR_Register is record -- Division factor for the main PLL (PLL) and audio PLL (PLLI2S) input -- clock PLLM : PLLCFGR_PLLM_Field := 16#10#; -- Main PLL (PLL) multiplication factor for VCO PLLN : PLLCFGR_PLLN_Field := 16#C0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Main PLL (PLL) division factor for main system clock PLLP : PLLCFGR_PLLP_Field := 16#0#; -- unspecified Reserved_18_21 : HAL.UInt4 := 16#0#; -- Main PLL(PLL) and audio PLL (PLLI2S) entry clock source PLLSRC : Boolean := False; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- Main PLL (PLL) division factor for USB OTG FS, SDIO and random number -- generator clocks PLLQ : PLLCFGR_PLLQ_Field := 16#4#; -- Main PLL division factor for DSI clock PLLR : PLLCFGR_PLLR_Field := 16#2#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLCFGR_Register use record PLLM at 0 range 0 .. 5; PLLN at 0 range 6 .. 14; Reserved_15_15 at 0 range 15 .. 15; PLLP at 0 range 16 .. 17; Reserved_18_21 at 0 range 18 .. 21; PLLSRC at 0 range 22 .. 22; Reserved_23_23 at 0 range 23 .. 23; PLLQ at 0 range 24 .. 27; PLLR at 0 range 28 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype CFGR_SW_Field is HAL.UInt2; subtype CFGR_SWS_Field is HAL.UInt2; subtype CFGR_HPRE_Field is HAL.UInt4; -- CFGR_PPRE array element subtype CFGR_PPRE_Element is HAL.UInt3; -- CFGR_PPRE array type CFGR_PPRE_Field_Array is array (1 .. 2) of CFGR_PPRE_Element with Component_Size => 3, Size => 6; -- Type definition for CFGR_PPRE type CFGR_PPRE_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PPRE as a value Val : HAL.UInt6; when True => -- PPRE as an array Arr : CFGR_PPRE_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CFGR_PPRE_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; subtype CFGR_RTCPRE_Field is HAL.UInt5; subtype CFGR_MCO1_Field is HAL.UInt2; subtype CFGR_MCO1PRE_Field is HAL.UInt3; subtype CFGR_MCO2PRE_Field is HAL.UInt3; subtype CFGR_MCO2_Field is HAL.UInt2; -- clock configuration register type CFGR_Register is record -- System clock switch SW : CFGR_SW_Field := 16#0#; -- Read-only. System clock switch status SWS : CFGR_SWS_Field := 16#0#; -- AHB prescaler HPRE : CFGR_HPRE_Field := 16#0#; -- unspecified Reserved_8_9 : HAL.UInt2 := 16#0#; -- APB Low speed prescaler (APB1) PPRE : CFGR_PPRE_Field := (As_Array => False, Val => 16#0#); -- HSE division factor for RTC clock RTCPRE : CFGR_RTCPRE_Field := 16#0#; -- Microcontroller clock output 1 MCO1 : CFGR_MCO1_Field := 16#0#; -- I2S clock selection I2SSRC : Boolean := False; -- MCO1 prescaler MCO1PRE : CFGR_MCO1PRE_Field := 16#0#; -- MCO2 prescaler MCO2PRE : CFGR_MCO2PRE_Field := 16#0#; -- Microcontroller clock output 2 MCO2 : CFGR_MCO2_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register use record SW at 0 range 0 .. 1; SWS at 0 range 2 .. 3; HPRE at 0 range 4 .. 7; Reserved_8_9 at 0 range 8 .. 9; PPRE at 0 range 10 .. 15; RTCPRE at 0 range 16 .. 20; MCO1 at 0 range 21 .. 22; I2SSRC at 0 range 23 .. 23; MCO1PRE at 0 range 24 .. 26; MCO2PRE at 0 range 27 .. 29; MCO2 at 0 range 30 .. 31; end record; -- clock interrupt register type CIR_Register is record -- Read-only. LSI ready interrupt flag LSIRDYF : Boolean := False; -- Read-only. LSE ready interrupt flag LSERDYF : Boolean := False; -- Read-only. HSI ready interrupt flag HSIRDYF : Boolean := False; -- Read-only. HSE ready interrupt flag HSERDYF : Boolean := False; -- Read-only. Main PLL (PLL) ready interrupt flag PLLRDYF : Boolean := False; -- Read-only. PLLI2S ready interrupt flag PLLI2SRDYF : Boolean := False; -- Read-only. PLLSAI ready interrupt flag PLLSAIRDYF : Boolean := False; -- Read-only. Clock security system interrupt flag CSSF : Boolean := False; -- LSI ready interrupt enable LSIRDYIE : Boolean := False; -- LSE ready interrupt enable LSERDYIE : Boolean := False; -- HSI ready interrupt enable HSIRDYIE : Boolean := False; -- HSE ready interrupt enable HSERDYIE : Boolean := False; -- Main PLL (PLL) ready interrupt enable PLLRDYIE : Boolean := False; -- PLLI2S ready interrupt enable PLLI2SRDYIE : Boolean := False; -- PLLSAI Ready Interrupt Enable PLLSAIRDYIE : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Write-only. LSI ready interrupt clear LSIRDYC : Boolean := False; -- Write-only. LSE ready interrupt clear LSERDYC : Boolean := False; -- Write-only. HSI ready interrupt clear HSIRDYC : Boolean := False; -- Write-only. HSE ready interrupt clear HSERDYC : Boolean := False; -- Write-only. Main PLL(PLL) ready interrupt clear PLLRDYC : Boolean := False; -- Write-only. PLLI2S ready interrupt clear PLLI2SRDYC : Boolean := False; -- Write-only. PLLSAI Ready Interrupt Clear PLLSAIRDYC : Boolean := False; -- Write-only. Clock security system interrupt clear CSSC : Boolean := False; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CIR_Register use record LSIRDYF at 0 range 0 .. 0; LSERDYF at 0 range 1 .. 1; HSIRDYF at 0 range 2 .. 2; HSERDYF at 0 range 3 .. 3; PLLRDYF at 0 range 4 .. 4; PLLI2SRDYF at 0 range 5 .. 5; PLLSAIRDYF at 0 range 6 .. 6; CSSF at 0 range 7 .. 7; LSIRDYIE at 0 range 8 .. 8; LSERDYIE at 0 range 9 .. 9; HSIRDYIE at 0 range 10 .. 10; HSERDYIE at 0 range 11 .. 11; PLLRDYIE at 0 range 12 .. 12; PLLI2SRDYIE at 0 range 13 .. 13; PLLSAIRDYIE at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; LSIRDYC at 0 range 16 .. 16; LSERDYC at 0 range 17 .. 17; HSIRDYC at 0 range 18 .. 18; HSERDYC at 0 range 19 .. 19; PLLRDYC at 0 range 20 .. 20; PLLI2SRDYC at 0 range 21 .. 21; PLLSAIRDYC at 0 range 22 .. 22; CSSC at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- AHB1 peripheral reset register type AHB1RSTR_Register is record -- IO port A reset GPIOARST : Boolean := False; -- IO port B reset GPIOBRST : Boolean := False; -- IO port C reset GPIOCRST : Boolean := False; -- IO port D reset GPIODRST : Boolean := False; -- IO port E reset GPIOERST : Boolean := False; -- IO port F reset GPIOFRST : Boolean := False; -- IO port G reset GPIOGRST : Boolean := False; -- IO port H reset GPIOHRST : Boolean := False; -- IO port I reset GPIOIRST : Boolean := False; -- IO port J reset GPIOJRST : Boolean := False; -- IO port K reset GPIOKRST : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC reset CRCRST : Boolean := False; -- unspecified Reserved_13_20 : HAL.UInt8 := 16#0#; -- DMA2 reset DMA1RST : Boolean := False; -- DMA2 reset DMA2RST : Boolean := False; -- DMA2D reset DMA2DRST : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC reset ETHMACRST : Boolean := False; -- unspecified Reserved_26_28 : HAL.UInt3 := 16#0#; -- USB OTG HS module reset OTGHSRST : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1RSTR_Register use record GPIOARST at 0 range 0 .. 0; GPIOBRST at 0 range 1 .. 1; GPIOCRST at 0 range 2 .. 2; GPIODRST at 0 range 3 .. 3; GPIOERST at 0 range 4 .. 4; GPIOFRST at 0 range 5 .. 5; GPIOGRST at 0 range 6 .. 6; GPIOHRST at 0 range 7 .. 7; GPIOIRST at 0 range 8 .. 8; GPIOJRST at 0 range 9 .. 9; GPIOKRST at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCRST at 0 range 12 .. 12; Reserved_13_20 at 0 range 13 .. 20; DMA1RST at 0 range 21 .. 21; DMA2RST at 0 range 22 .. 22; DMA2DRST at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACRST at 0 range 25 .. 25; Reserved_26_28 at 0 range 26 .. 28; OTGHSRST at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- AHB2 peripheral reset register type AHB2RSTR_Register is record -- Camera interface reset DCMIRST : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptographic module reset CRYPRST : Boolean := False; -- Hash module reset HSAHRST : Boolean := False; -- Random number generator module reset RNGRST : Boolean := False; -- USB OTG FS module reset OTGFSRST : Boolean := False; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2RSTR_Register use record DCMIRST at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPRST at 0 range 4 .. 4; HSAHRST at 0 range 5 .. 5; RNGRST at 0 range 6 .. 6; OTGFSRST at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral reset register type AHB3RSTR_Register is record -- Flexible memory controller module reset FMCRST : Boolean := False; -- QUADSPI memory controller reset QSPIRST : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3RSTR_Register use record FMCRST at 0 range 0 .. 0; QSPIRST at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral reset register type APB1RSTR_Register is record -- TIM2 reset TIM2RST : Boolean := False; -- TIM3 reset TIM3RST : Boolean := False; -- TIM4 reset TIM4RST : Boolean := False; -- TIM5 reset TIM5RST : Boolean := False; -- TIM6 reset TIM6RST : Boolean := False; -- TIM7 reset TIM7RST : Boolean := False; -- TIM12 reset TIM12RST : Boolean := False; -- TIM13 reset TIM13RST : Boolean := False; -- TIM14 reset TIM14RST : Boolean := False; -- unspecified Reserved_9_10 : HAL.UInt2 := 16#0#; -- Window watchdog reset WWDGRST : Boolean := False; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI 2 reset SPI2RST : Boolean := False; -- SPI 3 reset SPI3RST : Boolean := False; -- unspecified Reserved_16_16 : HAL.Bit := 16#0#; -- USART 2 reset UART2RST : Boolean := False; -- USART 3 reset UART3RST : Boolean := False; -- USART 4 reset UART4RST : Boolean := False; -- USART 5 reset UART5RST : Boolean := False; -- I2C 1 reset I2C1RST : Boolean := False; -- I2C 2 reset I2C2RST : Boolean := False; -- I2C3 reset I2C3RST : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- CAN1 reset CAN1RST : Boolean := False; -- CAN2 reset CAN2RST : Boolean := False; -- unspecified Reserved_27_27 : HAL.Bit := 16#0#; -- Power interface reset PWRRST : Boolean := False; -- DAC reset DACRST : Boolean := False; -- UART7 reset UART7RST : Boolean := False; -- UART8 reset UART8RST : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1RSTR_Register use record TIM2RST at 0 range 0 .. 0; TIM3RST at 0 range 1 .. 1; TIM4RST at 0 range 2 .. 2; TIM5RST at 0 range 3 .. 3; TIM6RST at 0 range 4 .. 4; TIM7RST at 0 range 5 .. 5; TIM12RST at 0 range 6 .. 6; TIM13RST at 0 range 7 .. 7; TIM14RST at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; WWDGRST at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2RST at 0 range 14 .. 14; SPI3RST at 0 range 15 .. 15; Reserved_16_16 at 0 range 16 .. 16; UART2RST at 0 range 17 .. 17; UART3RST at 0 range 18 .. 18; UART4RST at 0 range 19 .. 19; UART5RST at 0 range 20 .. 20; I2C1RST at 0 range 21 .. 21; I2C2RST at 0 range 22 .. 22; I2C3RST at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; CAN1RST at 0 range 25 .. 25; CAN2RST at 0 range 26 .. 26; Reserved_27_27 at 0 range 27 .. 27; PWRRST at 0 range 28 .. 28; DACRST at 0 range 29 .. 29; UART7RST at 0 range 30 .. 30; UART8RST at 0 range 31 .. 31; end record; -- APB2 peripheral reset register type APB2RSTR_Register is record -- TIM1 reset TIM1RST : Boolean := False; -- TIM8 reset TIM8RST : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 reset USART1RST : Boolean := False; -- USART6 reset USART6RST : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- ADC interface reset (common to all ADCs) ADCRST : Boolean := False; -- unspecified Reserved_9_10 : HAL.UInt2 := 16#0#; -- SDIO reset SDIORST : Boolean := False; -- SPI 1 reset SPI1RST : Boolean := False; -- SPI4 reset SPI4RST : Boolean := False; -- System configuration controller reset SYSCFGRST : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 reset TIM9RST : Boolean := False; -- TIM10 reset TIM10RST : Boolean := False; -- TIM11 reset TIM11RST : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI5 reset SPI5RST : Boolean := False; -- SPI6 reset SPI6RST : Boolean := False; -- SAI1 reset SAI1RST : Boolean := False; -- unspecified Reserved_23_25 : HAL.UInt3 := 16#0#; -- LTDC reset LTDCRST : Boolean := False; -- DSI host reset DSIRST : Boolean := False; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2RSTR_Register use record TIM1RST at 0 range 0 .. 0; TIM8RST at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1RST at 0 range 4 .. 4; USART6RST at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; ADCRST at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; SDIORST at 0 range 11 .. 11; SPI1RST at 0 range 12 .. 12; SPI4RST at 0 range 13 .. 13; SYSCFGRST at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9RST at 0 range 16 .. 16; TIM10RST at 0 range 17 .. 17; TIM11RST at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5RST at 0 range 20 .. 20; SPI6RST at 0 range 21 .. 21; SAI1RST at 0 range 22 .. 22; Reserved_23_25 at 0 range 23 .. 25; LTDCRST at 0 range 26 .. 26; DSIRST at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- AHB1 peripheral clock register type AHB1ENR_Register is record -- IO port A clock enable GPIOAEN : Boolean := False; -- IO port B clock enable GPIOBEN : Boolean := False; -- IO port C clock enable GPIOCEN : Boolean := False; -- IO port D clock enable GPIODEN : Boolean := False; -- IO port E clock enable GPIOEEN : Boolean := False; -- IO port F clock enable GPIOFEN : Boolean := False; -- IO port G clock enable GPIOGEN : Boolean := False; -- IO port H clock enable GPIOHEN : Boolean := False; -- IO port I clock enable GPIOIEN : Boolean := False; -- IO port J clock enable GPIOJEN : Boolean := False; -- IO port K clock enable GPIOKEN : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC clock enable CRCEN : Boolean := False; -- unspecified Reserved_13_17 : HAL.UInt5 := 16#0#; -- Backup SRAM interface clock enable BKPSRAMEN : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- CCM data RAM clock enable CCMDATARAMEN : Boolean := True; -- DMA1 clock enable DMA1EN : Boolean := False; -- DMA2 clock enable DMA2EN : Boolean := False; -- DMA2D clock enable DMA2DEN : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC clock enable ETHMACEN : Boolean := False; -- Ethernet Transmission clock enable ETHMACTXEN : Boolean := False; -- Ethernet Reception clock enable ETHMACRXEN : Boolean := False; -- Ethernet PTP clock enable ETHMACPTPEN : Boolean := False; -- USB OTG HS clock enable OTGHSEN : Boolean := False; -- USB OTG HSULPI clock enable OTGHSULPIEN : Boolean := False; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1ENR_Register use record GPIOAEN at 0 range 0 .. 0; GPIOBEN at 0 range 1 .. 1; GPIOCEN at 0 range 2 .. 2; GPIODEN at 0 range 3 .. 3; GPIOEEN at 0 range 4 .. 4; GPIOFEN at 0 range 5 .. 5; GPIOGEN at 0 range 6 .. 6; GPIOHEN at 0 range 7 .. 7; GPIOIEN at 0 range 8 .. 8; GPIOJEN at 0 range 9 .. 9; GPIOKEN at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCEN at 0 range 12 .. 12; Reserved_13_17 at 0 range 13 .. 17; BKPSRAMEN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; CCMDATARAMEN at 0 range 20 .. 20; DMA1EN at 0 range 21 .. 21; DMA2EN at 0 range 22 .. 22; DMA2DEN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACEN at 0 range 25 .. 25; ETHMACTXEN at 0 range 26 .. 26; ETHMACRXEN at 0 range 27 .. 27; ETHMACPTPEN at 0 range 28 .. 28; OTGHSEN at 0 range 29 .. 29; OTGHSULPIEN at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB2 peripheral clock enable register type AHB2ENR_Register is record -- Camera interface enable DCMIEN : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptographic modules clock enable CRYPEN : Boolean := False; -- Hash modules clock enable HASHEN : Boolean := False; -- Random number generator clock enable RNGEN : Boolean := False; -- USB OTG FS clock enable OTGFSEN : Boolean := False; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2ENR_Register use record DCMIEN at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPEN at 0 range 4 .. 4; HASHEN at 0 range 5 .. 5; RNGEN at 0 range 6 .. 6; OTGFSEN at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral clock enable register type AHB3ENR_Register is record -- Flexible memory controller module clock enable FMCEN : Boolean := False; -- QUADSPI memory controller module clock enable QSPIEN : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3ENR_Register use record FMCEN at 0 range 0 .. 0; QSPIEN at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral clock enable register type APB1ENR_Register is record -- TIM2 clock enable TIM2EN : Boolean := False; -- TIM3 clock enable TIM3EN : Boolean := False; -- TIM4 clock enable TIM4EN : Boolean := False; -- TIM5 clock enable TIM5EN : Boolean := False; -- TIM6 clock enable TIM6EN : Boolean := False; -- TIM7 clock enable TIM7EN : Boolean := False; -- TIM12 clock enable TIM12EN : Boolean := False; -- TIM13 clock enable TIM13EN : Boolean := False; -- TIM14 clock enable TIM14EN : Boolean := False; -- unspecified Reserved_9_10 : HAL.UInt2 := 16#0#; -- Window watchdog clock enable WWDGEN : Boolean := False; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI2 clock enable SPI2EN : Boolean := False; -- SPI3 clock enable SPI3EN : Boolean := False; -- unspecified Reserved_16_16 : HAL.Bit := 16#0#; -- USART 2 clock enable USART2EN : Boolean := False; -- USART3 clock enable USART3EN : Boolean := False; -- UART4 clock enable UART4EN : Boolean := False; -- UART5 clock enable UART5EN : Boolean := False; -- I2C1 clock enable I2C1EN : Boolean := False; -- I2C2 clock enable I2C2EN : Boolean := False; -- I2C3 clock enable I2C3EN : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- CAN 1 clock enable CAN1EN : Boolean := False; -- CAN 2 clock enable CAN2EN : Boolean := False; -- unspecified Reserved_27_27 : HAL.Bit := 16#0#; -- Power interface clock enable PWREN : Boolean := False; -- DAC interface clock enable DACEN : Boolean := False; -- UART7 clock enable UART7ENR : Boolean := False; -- UART8 clock enable UART8ENR : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1ENR_Register use record TIM2EN at 0 range 0 .. 0; TIM3EN at 0 range 1 .. 1; TIM4EN at 0 range 2 .. 2; TIM5EN at 0 range 3 .. 3; TIM6EN at 0 range 4 .. 4; TIM7EN at 0 range 5 .. 5; TIM12EN at 0 range 6 .. 6; TIM13EN at 0 range 7 .. 7; TIM14EN at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; WWDGEN at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2EN at 0 range 14 .. 14; SPI3EN at 0 range 15 .. 15; Reserved_16_16 at 0 range 16 .. 16; USART2EN at 0 range 17 .. 17; USART3EN at 0 range 18 .. 18; UART4EN at 0 range 19 .. 19; UART5EN at 0 range 20 .. 20; I2C1EN at 0 range 21 .. 21; I2C2EN at 0 range 22 .. 22; I2C3EN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; CAN1EN at 0 range 25 .. 25; CAN2EN at 0 range 26 .. 26; Reserved_27_27 at 0 range 27 .. 27; PWREN at 0 range 28 .. 28; DACEN at 0 range 29 .. 29; UART7ENR at 0 range 30 .. 30; UART8ENR at 0 range 31 .. 31; end record; -- APB2 peripheral clock enable register type APB2ENR_Register is record -- TIM1 clock enable TIM1EN : Boolean := False; -- TIM8 clock enable TIM8EN : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 clock enable USART1EN : Boolean := False; -- USART6 clock enable USART6EN : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- ADC1 clock enable ADC1EN : Boolean := False; -- ADC2 clock enable ADC2EN : Boolean := False; -- ADC3 clock enable ADC3EN : Boolean := False; -- SDIO clock enable SDIOEN : Boolean := False; -- SPI1 clock enable SPI1EN : Boolean := False; -- SPI4 clock enable SPI4ENR : Boolean := False; -- System configuration controller clock enable SYSCFGEN : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 clock enable TIM9EN : Boolean := False; -- TIM10 clock enable TIM10EN : Boolean := False; -- TIM11 clock enable TIM11EN : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI5 clock enable SPI5ENR : Boolean := False; -- SPI6 clock enable SPI6ENR : Boolean := False; -- SAI1 clock enable SAI1EN : Boolean := False; -- unspecified Reserved_23_25 : HAL.UInt3 := 16#0#; -- LTDC clock enable LTDCEN : Boolean := False; -- DSI clocks enable DSIEN : Boolean := False; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2ENR_Register use record TIM1EN at 0 range 0 .. 0; TIM8EN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1EN at 0 range 4 .. 4; USART6EN at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; ADC1EN at 0 range 8 .. 8; ADC2EN at 0 range 9 .. 9; ADC3EN at 0 range 10 .. 10; SDIOEN at 0 range 11 .. 11; SPI1EN at 0 range 12 .. 12; SPI4ENR at 0 range 13 .. 13; SYSCFGEN at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9EN at 0 range 16 .. 16; TIM10EN at 0 range 17 .. 17; TIM11EN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5ENR at 0 range 20 .. 20; SPI6ENR at 0 range 21 .. 21; SAI1EN at 0 range 22 .. 22; Reserved_23_25 at 0 range 23 .. 25; LTDCEN at 0 range 26 .. 26; DSIEN at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- AHB1 peripheral clock enable in low power mode register type AHB1LPENR_Register is record -- IO port A clock enable during sleep mode GPIOALPEN : Boolean := True; -- IO port B clock enable during Sleep mode GPIOBLPEN : Boolean := True; -- IO port C clock enable during Sleep mode GPIOCLPEN : Boolean := True; -- IO port D clock enable during Sleep mode GPIODLPEN : Boolean := True; -- IO port E clock enable during Sleep mode GPIOELPEN : Boolean := True; -- IO port F clock enable during Sleep mode GPIOFLPEN : Boolean := True; -- IO port G clock enable during Sleep mode GPIOGLPEN : Boolean := True; -- IO port H clock enable during Sleep mode GPIOHLPEN : Boolean := True; -- IO port I clock enable during Sleep mode GPIOILPEN : Boolean := True; -- IO port J clock enable during Sleep mode GPIOJLPEN : Boolean := False; -- IO port K clock enable during Sleep mode GPIOKLPEN : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC clock enable during Sleep mode CRCLPEN : Boolean := True; -- unspecified Reserved_13_14 : HAL.UInt2 := 16#0#; -- Flash interface clock enable during Sleep mode FLITFLPEN : Boolean := True; -- SRAM 1interface clock enable during Sleep mode SRAM1LPEN : Boolean := True; -- SRAM 2 interface clock enable during Sleep mode SRAM2LPEN : Boolean := True; -- Backup SRAM interface clock enable during Sleep mode BKPSRAMLPEN : Boolean := True; -- SRAM 3 interface clock enable during Sleep mode SRAM3LPEN : Boolean := False; -- unspecified Reserved_20_20 : HAL.Bit := 16#0#; -- DMA1 clock enable during Sleep mode DMA1LPEN : Boolean := True; -- DMA2 clock enable during Sleep mode DMA2LPEN : Boolean := True; -- DMA2D clock enable during Sleep mode DMA2DLPEN : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC clock enable during Sleep mode ETHMACLPEN : Boolean := True; -- Ethernet transmission clock enable during Sleep mode ETHMACTXLPEN : Boolean := True; -- Ethernet reception clock enable during Sleep mode ETHMACRXLPEN : Boolean := True; -- Ethernet PTP clock enable during Sleep mode ETHMACPTPLPEN : Boolean := True; -- USB OTG HS clock enable during Sleep mode OTGHSLPEN : Boolean := True; -- USB OTG HS ULPI clock enable during Sleep mode OTGHSULPILPEN : Boolean := True; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1LPENR_Register use record GPIOALPEN at 0 range 0 .. 0; GPIOBLPEN at 0 range 1 .. 1; GPIOCLPEN at 0 range 2 .. 2; GPIODLPEN at 0 range 3 .. 3; GPIOELPEN at 0 range 4 .. 4; GPIOFLPEN at 0 range 5 .. 5; GPIOGLPEN at 0 range 6 .. 6; GPIOHLPEN at 0 range 7 .. 7; GPIOILPEN at 0 range 8 .. 8; GPIOJLPEN at 0 range 9 .. 9; GPIOKLPEN at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCLPEN at 0 range 12 .. 12; Reserved_13_14 at 0 range 13 .. 14; FLITFLPEN at 0 range 15 .. 15; SRAM1LPEN at 0 range 16 .. 16; SRAM2LPEN at 0 range 17 .. 17; BKPSRAMLPEN at 0 range 18 .. 18; SRAM3LPEN at 0 range 19 .. 19; Reserved_20_20 at 0 range 20 .. 20; DMA1LPEN at 0 range 21 .. 21; DMA2LPEN at 0 range 22 .. 22; DMA2DLPEN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACLPEN at 0 range 25 .. 25; ETHMACTXLPEN at 0 range 26 .. 26; ETHMACRXLPEN at 0 range 27 .. 27; ETHMACPTPLPEN at 0 range 28 .. 28; OTGHSLPEN at 0 range 29 .. 29; OTGHSULPILPEN at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB2 peripheral clock enable in low power mode register type AHB2LPENR_Register is record -- Camera interface enable during Sleep mode DCMILPEN : Boolean := True; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptography modules clock enable during Sleep mode CRYPLPEN : Boolean := True; -- Hash modules clock enable during Sleep mode HASHLPEN : Boolean := True; -- Random number generator clock enable during Sleep mode RNGLPEN : Boolean := True; -- USB OTG FS clock enable during Sleep mode OTGFSLPEN : Boolean := True; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2LPENR_Register use record DCMILPEN at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPLPEN at 0 range 4 .. 4; HASHLPEN at 0 range 5 .. 5; RNGLPEN at 0 range 6 .. 6; OTGFSLPEN at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral clock enable in low power mode register type AHB3LPENR_Register is record -- Flexible memory controller module clock enable during Sleep mode FMCLPEN : Boolean := True; -- QUADSPI memory controller module clock enable during Sleep mode QSPILPEN : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3LPENR_Register use record FMCLPEN at 0 range 0 .. 0; QSPILPEN at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral clock enable in low power mode register type APB1LPENR_Register is record -- TIM2 clock enable during Sleep mode TIM2LPEN : Boolean := True; -- TIM3 clock enable during Sleep mode TIM3LPEN : Boolean := True; -- TIM4 clock enable during Sleep mode TIM4LPEN : Boolean := True; -- TIM5 clock enable during Sleep mode TIM5LPEN : Boolean := True; -- TIM6 clock enable during Sleep mode TIM6LPEN : Boolean := True; -- TIM7 clock enable during Sleep mode TIM7LPEN : Boolean := True; -- TIM12 clock enable during Sleep mode TIM12LPEN : Boolean := True; -- TIM13 clock enable during Sleep mode TIM13LPEN : Boolean := True; -- TIM14 clock enable during Sleep mode TIM14LPEN : Boolean := True; -- unspecified Reserved_9_10 : HAL.UInt2 := 16#0#; -- Window watchdog clock enable during Sleep mode WWDGLPEN : Boolean := True; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI2 clock enable during Sleep mode SPI2LPEN : Boolean := True; -- SPI3 clock enable during Sleep mode SPI3LPEN : Boolean := True; -- unspecified Reserved_16_16 : HAL.Bit := 16#0#; -- USART2 clock enable during Sleep mode USART2LPEN : Boolean := True; -- USART3 clock enable during Sleep mode USART3LPEN : Boolean := True; -- UART4 clock enable during Sleep mode UART4LPEN : Boolean := True; -- UART5 clock enable during Sleep mode UART5LPEN : Boolean := True; -- I2C1 clock enable during Sleep mode I2C1LPEN : Boolean := True; -- I2C2 clock enable during Sleep mode I2C2LPEN : Boolean := True; -- I2C3 clock enable during Sleep mode I2C3LPEN : Boolean := True; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- CAN 1 clock enable during Sleep mode CAN1LPEN : Boolean := True; -- CAN 2 clock enable during Sleep mode CAN2LPEN : Boolean := True; -- unspecified Reserved_27_27 : HAL.Bit := 16#0#; -- Power interface clock enable during Sleep mode PWRLPEN : Boolean := True; -- DAC interface clock enable during Sleep mode DACLPEN : Boolean := True; -- UART7 clock enable during Sleep mode UART7LPEN : Boolean := False; -- UART8 clock enable during Sleep mode UART8LPEN : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1LPENR_Register use record TIM2LPEN at 0 range 0 .. 0; TIM3LPEN at 0 range 1 .. 1; TIM4LPEN at 0 range 2 .. 2; TIM5LPEN at 0 range 3 .. 3; TIM6LPEN at 0 range 4 .. 4; TIM7LPEN at 0 range 5 .. 5; TIM12LPEN at 0 range 6 .. 6; TIM13LPEN at 0 range 7 .. 7; TIM14LPEN at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; WWDGLPEN at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2LPEN at 0 range 14 .. 14; SPI3LPEN at 0 range 15 .. 15; Reserved_16_16 at 0 range 16 .. 16; USART2LPEN at 0 range 17 .. 17; USART3LPEN at 0 range 18 .. 18; UART4LPEN at 0 range 19 .. 19; UART5LPEN at 0 range 20 .. 20; I2C1LPEN at 0 range 21 .. 21; I2C2LPEN at 0 range 22 .. 22; I2C3LPEN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; CAN1LPEN at 0 range 25 .. 25; CAN2LPEN at 0 range 26 .. 26; Reserved_27_27 at 0 range 27 .. 27; PWRLPEN at 0 range 28 .. 28; DACLPEN at 0 range 29 .. 29; UART7LPEN at 0 range 30 .. 30; UART8LPEN at 0 range 31 .. 31; end record; -- APB2 peripheral clock enabled in low power mode register type APB2LPENR_Register is record -- TIM1 clock enable during Sleep mode TIM1LPEN : Boolean := True; -- TIM8 clock enable during Sleep mode TIM8LPEN : Boolean := True; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 clock enable during Sleep mode USART1LPEN : Boolean := True; -- USART6 clock enable during Sleep mode USART6LPEN : Boolean := True; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- ADC1 clock enable during Sleep mode ADC1LPEN : Boolean := True; -- ADC2 clock enable during Sleep mode ADC2LPEN : Boolean := True; -- ADC 3 clock enable during Sleep mode ADC3LPEN : Boolean := True; -- SDIO clock enable during Sleep mode SDIOLPEN : Boolean := True; -- SPI 1 clock enable during Sleep mode SPI1LPEN : Boolean := True; -- SPI 4 clock enable during Sleep mode SPI4LPEN : Boolean := False; -- System configuration controller clock enable during Sleep mode SYSCFGLPEN : Boolean := True; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 clock enable during sleep mode TIM9LPEN : Boolean := True; -- TIM10 clock enable during Sleep mode TIM10LPEN : Boolean := True; -- TIM11 clock enable during Sleep mode TIM11LPEN : Boolean := True; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI 5 clock enable during Sleep mode SPI5LPEN : Boolean := False; -- SPI 6 clock enable during Sleep mode SPI6LPEN : Boolean := False; -- SAI1 clock enable SAI1LPEN : Boolean := False; -- unspecified Reserved_23_25 : HAL.UInt3 := 16#0#; -- LTDC clock enable LTDCLPEN : Boolean := False; -- DSI clocks enable during Sleep mode DSILPEN : Boolean := False; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2LPENR_Register use record TIM1LPEN at 0 range 0 .. 0; TIM8LPEN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1LPEN at 0 range 4 .. 4; USART6LPEN at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; ADC1LPEN at 0 range 8 .. 8; ADC2LPEN at 0 range 9 .. 9; ADC3LPEN at 0 range 10 .. 10; SDIOLPEN at 0 range 11 .. 11; SPI1LPEN at 0 range 12 .. 12; SPI4LPEN at 0 range 13 .. 13; SYSCFGLPEN at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9LPEN at 0 range 16 .. 16; TIM10LPEN at 0 range 17 .. 17; TIM11LPEN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5LPEN at 0 range 20 .. 20; SPI6LPEN at 0 range 21 .. 21; SAI1LPEN at 0 range 22 .. 22; Reserved_23_25 at 0 range 23 .. 25; LTDCLPEN at 0 range 26 .. 26; DSILPEN at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- BDCR_RTCSEL array type BDCR_RTCSEL_Field_Array is array (0 .. 1) of Boolean with Component_Size => 1, Size => 2; -- Type definition for BDCR_RTCSEL type BDCR_RTCSEL_Field (As_Array : Boolean := False) is record case As_Array is when False => -- RTCSEL as a value Val : HAL.UInt2; when True => -- RTCSEL as an array Arr : BDCR_RTCSEL_Field_Array; end case; end record with Unchecked_Union, Size => 2; for BDCR_RTCSEL_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; -- Backup domain control register type BDCR_Register is record -- External low-speed oscillator enable LSEON : Boolean := False; -- Read-only. External low-speed oscillator ready LSERDY : Boolean := False; -- External low-speed oscillator bypass LSEBYP : Boolean := False; -- External low-speed oscillator mode LSEMOD : Boolean := False; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- RTC clock source selection RTCSEL : BDCR_RTCSEL_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_10_14 : HAL.UInt5 := 16#0#; -- RTC clock enable RTCEN : Boolean := False; -- Backup domain software reset BDRST : Boolean := False; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BDCR_Register use record LSEON at 0 range 0 .. 0; LSERDY at 0 range 1 .. 1; LSEBYP at 0 range 2 .. 2; LSEMOD at 0 range 3 .. 3; Reserved_4_7 at 0 range 4 .. 7; RTCSEL at 0 range 8 .. 9; Reserved_10_14 at 0 range 10 .. 14; RTCEN at 0 range 15 .. 15; BDRST at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- clock control & status register type CSR_Register is record -- Internal low-speed oscillator enable LSION : Boolean := False; -- Read-only. Internal low-speed oscillator ready LSIRDY : Boolean := False; -- unspecified Reserved_2_23 : HAL.UInt22 := 16#0#; -- Remove reset flag RMVF : Boolean := False; -- BOR reset flag BORRSTF : Boolean := True; -- PIN reset flag PADRSTF : Boolean := True; -- POR/PDR reset flag PORRSTF : Boolean := True; -- Software reset flag SFTRSTF : Boolean := False; -- Independent watchdog reset flag WDGRSTF : Boolean := False; -- Window watchdog reset flag WWDGRSTF : Boolean := False; -- Low-power reset flag LPWRRSTF : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSR_Register use record LSION at 0 range 0 .. 0; LSIRDY at 0 range 1 .. 1; Reserved_2_23 at 0 range 2 .. 23; RMVF at 0 range 24 .. 24; BORRSTF at 0 range 25 .. 25; PADRSTF at 0 range 26 .. 26; PORRSTF at 0 range 27 .. 27; SFTRSTF at 0 range 28 .. 28; WDGRSTF at 0 range 29 .. 29; WWDGRSTF at 0 range 30 .. 30; LPWRRSTF at 0 range 31 .. 31; end record; subtype SSCGR_MODPER_Field is HAL.UInt13; subtype SSCGR_INCSTEP_Field is HAL.UInt15; -- spread spectrum clock generation register type SSCGR_Register is record -- Modulation period MODPER : SSCGR_MODPER_Field := 16#0#; -- Incrementation step INCSTEP : SSCGR_INCSTEP_Field := 16#0#; -- unspecified Reserved_28_29 : HAL.UInt2 := 16#0#; -- Spread Select SPREADSEL : Boolean := False; -- Spread spectrum modulation enable SSCGEN : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SSCGR_Register use record MODPER at 0 range 0 .. 12; INCSTEP at 0 range 13 .. 27; Reserved_28_29 at 0 range 28 .. 29; SPREADSEL at 0 range 30 .. 30; SSCGEN at 0 range 31 .. 31; end record; subtype PLLI2SCFGR_PLLI2SN_Field is HAL.UInt9; subtype PLLI2SCFGR_PLLI2SQ_Field is HAL.UInt4; subtype PLLI2SCFGR_PLLI2SR_Field is HAL.UInt3; -- PLLI2S configuration register type PLLI2SCFGR_Register is record -- unspecified Reserved_0_5 : HAL.UInt6 := 16#0#; -- PLLI2S multiplication factor for VCO PLLI2SN : PLLI2SCFGR_PLLI2SN_Field := 16#C0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- PLLI2S division factor for SAI1 clock PLLI2SQ : PLLI2SCFGR_PLLI2SQ_Field := 16#0#; -- PLLI2S division factor for I2S clocks PLLI2SR : PLLI2SCFGR_PLLI2SR_Field := 16#2#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLI2SCFGR_Register use record Reserved_0_5 at 0 range 0 .. 5; PLLI2SN at 0 range 6 .. 14; Reserved_15_23 at 0 range 15 .. 23; PLLI2SQ at 0 range 24 .. 27; PLLI2SR at 0 range 28 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype PLLSAICFGR_PLLSAIN_Field is HAL.UInt9; subtype PLLSAICFGR_PLLSAIP_Field is HAL.UInt2; subtype PLLSAICFGR_PLLSAIQ_Field is HAL.UInt4; subtype PLLSAICFGR_PLLSAIR_Field is HAL.UInt3; -- PLL configuration register type PLLSAICFGR_Register is record -- unspecified Reserved_0_5 : HAL.UInt6 := 16#0#; -- PLLSAI division factor for VCO PLLSAIN : PLLSAICFGR_PLLSAIN_Field := 16#C0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- PLLSAI division factor for 48 MHz clock PLLSAIP : PLLSAICFGR_PLLSAIP_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- PLLSAI division factor for SAI1 clock PLLSAIQ : PLLSAICFGR_PLLSAIQ_Field := 16#4#; -- PLLSAI division factor for LCD clock PLLSAIR : PLLSAICFGR_PLLSAIR_Field := 16#2#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLSAICFGR_Register use record Reserved_0_5 at 0 range 0 .. 5; PLLSAIN at 0 range 6 .. 14; Reserved_15_15 at 0 range 15 .. 15; PLLSAIP at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; PLLSAIQ at 0 range 24 .. 27; PLLSAIR at 0 range 28 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype DCKCFGR_PLLIS2DIVQ_Field is HAL.UInt5; subtype DCKCFGR_PLLSAIDIVQ_Field is HAL.UInt5; subtype DCKCFGR_PLLSAIDIVR_Field is HAL.UInt2; subtype DCKCFGR_SAI1ASRC_Field is HAL.UInt2; subtype DCKCFGR_SAI1BSRC_Field is HAL.UInt2; -- Dedicated Clock Configuration Register type DCKCFGR_Register is record -- PLLI2S division factor for SAIs clock PLLIS2DIVQ : DCKCFGR_PLLIS2DIVQ_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- PLLSAI division factor for SAIs clock PLLSAIDIVQ : DCKCFGR_PLLSAIDIVQ_Field := 16#0#; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#0#; -- PLLSAIDIVR PLLSAIDIVR : DCKCFGR_PLLSAIDIVR_Field := 16#0#; -- unspecified Reserved_18_19 : HAL.UInt2 := 16#0#; -- SAI1 clock source selection SAI1ASRC : DCKCFGR_SAI1ASRC_Field := 16#0#; -- SAI1-B clock source selection SAI1BSRC : DCKCFGR_SAI1BSRC_Field := 16#0#; -- Timers clocks prescalers selection TIMPRE : Boolean := False; -- unspecified Reserved_25_26 : HAL.UInt2 := 16#0#; -- 48 MHz clock source selection MSEL : Boolean := False; -- SDIO clock source selection SDMMCSEL : Boolean := False; -- DSI clock source selection DSISEL : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DCKCFGR_Register use record PLLIS2DIVQ at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; PLLSAIDIVQ at 0 range 8 .. 12; Reserved_13_15 at 0 range 13 .. 15; PLLSAIDIVR at 0 range 16 .. 17; Reserved_18_19 at 0 range 18 .. 19; SAI1ASRC at 0 range 20 .. 21; SAI1BSRC at 0 range 22 .. 23; TIMPRE at 0 range 24 .. 24; Reserved_25_26 at 0 range 25 .. 26; MSEL at 0 range 27 .. 27; SDMMCSEL at 0 range 28 .. 28; DSISEL at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Reset and clock control type RCC_Peripheral is record -- clock control register CR : aliased CR_Register; -- PLL configuration register PLLCFGR : aliased PLLCFGR_Register; -- clock configuration register CFGR : aliased CFGR_Register; -- clock interrupt register CIR : aliased CIR_Register; -- AHB1 peripheral reset register AHB1RSTR : aliased AHB1RSTR_Register; -- AHB2 peripheral reset register AHB2RSTR : aliased AHB2RSTR_Register; -- AHB3 peripheral reset register AHB3RSTR : aliased AHB3RSTR_Register; -- APB1 peripheral reset register APB1RSTR : aliased APB1RSTR_Register; -- APB2 peripheral reset register APB2RSTR : aliased APB2RSTR_Register; -- AHB1 peripheral clock register AHB1ENR : aliased AHB1ENR_Register; -- AHB2 peripheral clock enable register AHB2ENR : aliased AHB2ENR_Register; -- AHB3 peripheral clock enable register AHB3ENR : aliased AHB3ENR_Register; -- APB1 peripheral clock enable register APB1ENR : aliased APB1ENR_Register; -- APB2 peripheral clock enable register APB2ENR : aliased APB2ENR_Register; -- AHB1 peripheral clock enable in low power mode register AHB1LPENR : aliased AHB1LPENR_Register; -- AHB2 peripheral clock enable in low power mode register AHB2LPENR : aliased AHB2LPENR_Register; -- AHB3 peripheral clock enable in low power mode register AHB3LPENR : aliased AHB3LPENR_Register; -- APB1 peripheral clock enable in low power mode register APB1LPENR : aliased APB1LPENR_Register; -- APB2 peripheral clock enabled in low power mode register APB2LPENR : aliased APB2LPENR_Register; -- Backup domain control register BDCR : aliased BDCR_Register; -- clock control & status register CSR : aliased CSR_Register; -- spread spectrum clock generation register SSCGR : aliased SSCGR_Register; -- PLLI2S configuration register PLLI2SCFGR : aliased PLLI2SCFGR_Register; -- PLL configuration register PLLSAICFGR : aliased PLLSAICFGR_Register; -- Dedicated Clock Configuration Register DCKCFGR : aliased DCKCFGR_Register; end record with Volatile; for RCC_Peripheral use record CR at 16#0# range 0 .. 31; PLLCFGR at 16#4# range 0 .. 31; CFGR at 16#8# range 0 .. 31; CIR at 16#C# range 0 .. 31; AHB1RSTR at 16#10# range 0 .. 31; AHB2RSTR at 16#14# range 0 .. 31; AHB3RSTR at 16#18# range 0 .. 31; APB1RSTR at 16#20# range 0 .. 31; APB2RSTR at 16#24# range 0 .. 31; AHB1ENR at 16#30# range 0 .. 31; AHB2ENR at 16#34# range 0 .. 31; AHB3ENR at 16#38# range 0 .. 31; APB1ENR at 16#40# range 0 .. 31; APB2ENR at 16#44# range 0 .. 31; AHB1LPENR at 16#50# range 0 .. 31; AHB2LPENR at 16#54# range 0 .. 31; AHB3LPENR at 16#58# range 0 .. 31; APB1LPENR at 16#60# range 0 .. 31; APB2LPENR at 16#64# range 0 .. 31; BDCR at 16#70# range 0 .. 31; CSR at 16#74# range 0 .. 31; SSCGR at 16#80# range 0 .. 31; PLLI2SCFGR at 16#84# range 0 .. 31; PLLSAICFGR at 16#88# range 0 .. 31; DCKCFGR at 16#8C# range 0 .. 31; end record; -- Reset and clock control RCC_Periph : aliased RCC_Peripheral with Import, Address => System'To_Address (16#40023800#); end STM32_SVD.RCC;
with Ada.Containers.Generic_Array_Sort, Ada.Containers.Generic_Constrained_Array_Sort, Ada.Containers.Indefinite_Hashed_Maps, Ada.Integer_Text_IO, Ada.Strings.Bounded, Ada.Strings.Bounded.Hash, Ada.Text_IO; with Utils; procedure Main is use Ada.Text_IO; use Utils; package Digit_Str is new Ada.Strings.Bounded.Generic_Bounded_Length (Max => 7); use Digit_Str; subtype Segment is Character range 'a' .. 'g'; subtype Digit is Bounded_String; subtype Seven_Segments_Digits is Natural range 0 .. 9; -- Sort the characters in a String procedure String_Sort is new Ada.Containers.Generic_Array_Sort (Positive, Character, String); function Digit_Hash is new Ada.Strings.Bounded.Hash (Digit_Str); package Segments_To_Digit_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => Digit, Element_Type => Seven_Segments_Digits, Hash => Digit_Hash, Equivalent_Keys => "="); function Segment_Hash (Elt : Segment) return Ada.Containers.Hash_Type is (Ada.Containers.Hash_Type (Segment'Pos (Elt))); package Mapping_Table_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => Segment, Element_Type => Segment, Hash => Segment_Hash, Equivalent_Keys => "="); subtype Digits_Array_Index is Positive range 1 .. 10; type Digits_Array is array (Digits_Array_Index) of Digit; function Is_Lower_Than (Left, Right : Digit) return Boolean is (Length (Left) < Length (Right)); procedure Digits_Sort is new Ada.Containers.Generic_Constrained_Array_Sort (Index_Type => Digits_Array_Index, Element_Type => Digit, Array_Type => Digits_Array, "<" => Is_Lower_Than); -- Given a String that represent a segment (like "be", or "fgaecd", etc.) it retrieve the corresponding segment. -- Note: when the word "associated" is used, it means that we cannot know exactly which segment corresponds -- to which other segment. -- When the word "corresponding" is used, it means that we know exactly which segment corresponds to which -- other segment. -- -- @param Seg a String that represent a digit -- @returns Retruns the corresponding mapping table between segments of digits function Get_Corresponding_Segments (Digit_Array : Digits_Array) return Mapping_Table_Maps.Map; -------------------------------- -- Get_Corresponding_Segments -- -------------------------------- function Get_Corresponding_Segments (Digit_Array : Digits_Array) return Mapping_Table_Maps.Map is use Mapping_Table_Maps; Mapping_Table : Mapping_Table_Maps.Map; CF_Seg, BD_Seg, EG_Seg : Digit := Null_Bounded_String; Can_Break_CF, Can_Break_BD : Boolean := False; begin -- Get the number 1 to get associated segments "c" and "f" CF_Seg := Digit_Array (1); -- Get the number 7 to find the corresponding segment of "a" for Char of To_String (Digit_Array (2)) loop if Index (CF_Seg, Char & "", 1) = 0 then Mapping_Table.Include (Char, 'a'); exit; end if; end loop; -- Get the number 4 to find associated to "b" and "d" for Char of To_String (Digit_Array (3)) loop if Index (CF_Seg, Char & "", 1) = 0 then BD_Seg := BD_Seg & Char; end if; end loop; for Idx in 7 .. 9 loop -- Find the number 6 to find corresponding segment of "f" and "c" if (Index (Digit_Array (Idx), Element (CF_Seg, 1) & "") > 0) /= (Index (Digit_Array (Idx), Element (CF_Seg, 2) & "") > 0) then if Index (Digit_Array (Idx), Element (CF_Seg, 1) & "") > 0 then Mapping_Table.Include (Element (CF_Seg, 1), 'f'); Mapping_Table.Include (Element (CF_Seg, 2), 'c'); else Mapping_Table.Include (Element (CF_Seg, 2), 'f'); Mapping_Table.Include (Element (CF_Seg, 1), 'c'); end if; Can_Break_CF := True; end if; -- Find the number 0 to find corresponding segment of "b" and "d" if (Index (Digit_Array (Idx), Element (BD_Seg, 1) & "") > 0) /= (Index (Digit_Array (Idx), Element (BD_Seg, 2) & "") > 0) then if Index (Digit_Array (Idx), Element (BD_Seg, 1) & "") > 0 then Mapping_Table.Include (Element (BD_Seg, 1), 'b'); Mapping_Table.Include (Element (BD_Seg, 2), 'd'); else Mapping_Table.Include (Element (BD_Seg, 2), 'b'); Mapping_Table.Include (Element (BD_Seg, 1), 'd'); end if; Can_Break_BD := True; end if; if Can_Break_CF and Can_Break_BD then exit; end if; end loop; for Char in Character range 'a' .. 'g' loop if not Mapping_Table.Contains (Char) then EG_Seg := EG_Seg & Char; end if; end loop; -- Find the number 9 to find corresponding segment of "e" and "g" for Idx in 7 .. 10 loop if (Index (Digit_Array (Idx), Element (EG_Seg, 1) & "") > 0) /= (Index (Digit_Array (Idx), Element (EG_Seg, 2) & "") > 0) then if Index (Digit_Array (Idx), Element (EG_Seg, 1) & "") > 0 then Mapping_Table.Include (Element (EG_Seg, 1), 'g'); Mapping_Table.Include (Element (EG_Seg, 2), 'e'); else Mapping_Table.Include (Element (EG_Seg, 2), 'g'); Mapping_Table.Include (Element (EG_Seg, 1), 'e'); end if; exit; end if; end loop; return Mapping_Table; end Get_Corresponding_Segments; use Segments_To_Digit_Maps; -- Given a Value, it retrieve the original value according to Mapping_Table. -- @param Mapping_Table The mapping table that correspond mixed segment signal with the good segment signal -- @param Value The digit te retrieve -- @returns Return the resolved digit function Digit_Reconstruction (Mapping_Table : Mapping_Table_Maps.Map; Value : Digit) return Digit; -------------------------- -- Digit_Reconstruction -- -------------------------- function Digit_Reconstruction (Mapping_Table : Mapping_Table_Maps.Map; Value : Digit) return Digit is Result : Digit := Null_Bounded_String; begin for Char of To_String (Value) loop Result := Result & Mapping_Table.Element (Char); end loop; declare Str : String := To_String (Result); begin String_Sort (Str); Result := To_Bounded_String (Str); end; return Result; end Digit_Reconstruction; File : File_Type; Result : Natural := Natural'First; Seven_Segment_Digit : Map := Empty_Map; begin Get_File (File); if End_Of_File (File) then raise Program_Error with "Empty file"; end if; -- Initialilze "Seven_Segment_Digit" map -- Length: 6 Seven_Segment_Digit.Include (To_Bounded_String ("abcefg"), 0); -- Length: 2 (unique length) Seven_Segment_Digit.Include (To_Bounded_String ("cf"), 1); -- Length: 5 Seven_Segment_Digit.Include (To_Bounded_String ("acdeg"), 2); -- Length: 5 Seven_Segment_Digit.Include (To_Bounded_String ("acdfg"), 3); -- Length: 4 (unique length) Seven_Segment_Digit.Include (To_Bounded_String ("bcdf"), 4); -- Length: 5 Seven_Segment_Digit.Include (To_Bounded_String ("abdfg"), 5); -- Length: 6 Seven_Segment_Digit.Include (To_Bounded_String ("abdefg"), 6); -- Length: 3 (unique length) Seven_Segment_Digit.Include (To_Bounded_String ("acf"), 7); -- Length: 7 (unique length) Seven_Segment_Digit.Include (To_Bounded_String ("abcdefg"), 8); -- Length: 6 Seven_Segment_Digit.Include (To_Bounded_String ("abcdfg"), 9); -- Get digit list while not End_Of_File (File) loop declare Line : constant String := Get_Line (File); First : Positive := Line'First; Last : Positive := Line'First; After_Pipe : Boolean := False; Current_Input_Digits_Index : Digits_Array_Index := Digits_Array_Index'First; Current_Digit_Value : Natural := Natural'First; Current_Exponent : Natural := 3; Mapping_Table : Mapping_Table_Maps.Map := Mapping_Table_Maps.Empty_Map; Current_Digit : Digit; Input_Digits : Digits_Array; begin while Last <= Line'Last loop if After_Pipe then -- Right data if Line (Last) = ' ' then Current_Digit := Digit_Reconstruction (Mapping_Table, To_Bounded_String (Line (First .. Last - 1))); Current_Digit_Value := Current_Digit_Value + Seven_Segment_Digit.Element (Current_Digit) * 10 ** Current_Exponent; Current_Exponent := Current_Exponent - 1; First := Last + 1; elsif Last = Line'Last then Current_Digit := Digit_Reconstruction (Mapping_Table, To_Bounded_String (Line (First .. Last))); Current_Digit_Value := Current_Digit_Value + Seven_Segment_Digit.Element (Current_Digit); Result := Result + Current_Digit_Value; end if; Last := Last + 1; elsif Line (Last) = '|' then After_Pipe := True; Last := Last + 2; First := Last; Digits_Sort (Input_Digits); Mapping_Table := Get_Corresponding_Segments (Input_Digits); else -- Left part if Line (Last) = ' ' then declare Str : String := Line (First .. Last - 1); begin String_Sort (Str); Input_Digits (Current_Input_Digits_Index) := To_Bounded_String (Str); end; Current_Input_Digits_Index := (if Current_Input_Digits_Index < 10 then Current_Input_Digits_Index + 1 else Digits_Array_Index'First); First := Last + 1; elsif Last = Line'Last then declare Str : String := Line (First .. Last); begin String_Sort (Str); Input_Digits (Current_Input_Digits_Index) := To_Bounded_String (Str); end; Current_Input_Digits_Index := Current_Input_Digits_Index + 1; First := Last + 1; end if; Last := Last + 1; end if; end loop; end; end loop; Put ("Result: "); Ada.Integer_Text_IO.Put (Result, Width => 0); New_Line; Close_If_Open (File); exception when others => Close_If_Open (File); raise; end Main;
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2003 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- $Id: test.adb,v 1.1.1.1 2012/03/29 17:21:39 uid42307 Exp $ -- The program has a few aims. -- 1. Test ZLib.Ada95 thick binding functionality. -- 2. Show the example of use main functionality of the ZLib.Ada95 binding. -- 3. Build this program automatically compile all ZLib.Ada95 packages under -- GNAT Ada95 compiler. with ZLib.Streams; with Ada.Streams.Stream_IO; with Ada.Numerics.Discrete_Random; with Ada.Text_IO; with Ada.Calendar; procedure Test is use Ada.Streams; use Stream_IO; ------------------------------------ -- Test configuration parameters -- ------------------------------------ File_Size : Count := 100_000; Continuous : constant Boolean := False; Header : constant ZLib.Header_Type := ZLib.Default; -- ZLib.None; -- ZLib.Auto; -- ZLib.GZip; -- Do not use Header other then Default in ZLib versions 1.1.4 -- and older. Strategy : constant ZLib.Strategy_Type := ZLib.Default_Strategy; Init_Random : constant := 10; -- End -- In_File_Name : constant String := "testzlib.in"; -- Name of the input file Z_File_Name : constant String := "testzlib.zlb"; -- Name of the compressed file. Out_File_Name : constant String := "testzlib.out"; -- Name of the decompressed file. File_In : File_Type; File_Out : File_Type; File_Back : File_Type; File_Z : ZLib.Streams.Stream_Type; Filter : ZLib.Filter_Type; Time_Stamp : Ada.Calendar.Time; procedure Generate_File; -- Generate file of spetsified size with some random data. -- The random data is repeatable, for the good compression. procedure Compare_Streams (Left, Right : in out Root_Stream_Type'Class); -- The procedure compearing data in 2 streams. -- It is for compare data before and after compression/decompression. procedure Compare_Files (Left, Right : String); -- Compare files. Based on the Compare_Streams. procedure Copy_Streams (Source, Target : in out Root_Stream_Type'Class; Buffer_Size : in Stream_Element_Offset := 1024); -- Copying data from one stream to another. It is for test stream -- interface of the library. procedure Data_In (Item : out Stream_Element_Array; Last : out Stream_Element_Offset); -- this procedure is for generic instantiation of -- ZLib.Generic_Translate. -- reading data from the File_In. procedure Data_Out (Item : in Stream_Element_Array); -- this procedure is for generic instantiation of -- ZLib.Generic_Translate. -- writing data to the File_Out. procedure Stamp; -- Store the timestamp to the local variable. procedure Print_Statistic (Msg : String; Data_Size : ZLib.Count); -- Print the time statistic with the message. procedure Translate is new ZLib.Generic_Translate (Data_In => Data_In, Data_Out => Data_Out); -- This procedure is moving data from File_In to File_Out -- with compression or decompression, depend on initialization of -- Filter parameter. ------------------- -- Compare_Files -- ------------------- procedure Compare_Files (Left, Right : String) is Left_File, Right_File : File_Type; begin Open (Left_File, In_File, Left); Open (Right_File, In_File, Right); Compare_Streams (Stream (Left_File).all, Stream (Right_File).all); Close (Left_File); Close (Right_File); end Compare_Files; --------------------- -- Compare_Streams -- --------------------- procedure Compare_Streams (Left, Right : in out Ada.Streams.Root_Stream_Type'Class) is Left_Buffer, Right_Buffer : Stream_Element_Array (0 .. 16#FFF#); Left_Last, Right_Last : Stream_Element_Offset; begin loop Read (Left, Left_Buffer, Left_Last); Read (Right, Right_Buffer, Right_Last); if Left_Last /= Right_Last then Ada.Text_IO.Put_Line ("Compare error :" & Stream_Element_Offset'Image (Left_Last) & " /= " & Stream_Element_Offset'Image (Right_Last)); raise Constraint_Error; elsif Left_Buffer (0 .. Left_Last) /= Right_Buffer (0 .. Right_Last) then Ada.Text_IO.Put_Line ("ERROR: IN and OUT files is not equal."); raise Constraint_Error; end if; exit when Left_Last < Left_Buffer'Last; end loop; end Compare_Streams; ------------------ -- Copy_Streams -- ------------------ procedure Copy_Streams (Source, Target : in out Ada.Streams.Root_Stream_Type'Class; Buffer_Size : in Stream_Element_Offset := 1024) is Buffer : Stream_Element_Array (1 .. Buffer_Size); Last : Stream_Element_Offset; begin loop Read (Source, Buffer, Last); Write (Target, Buffer (1 .. Last)); exit when Last < Buffer'Last; end loop; end Copy_Streams; ------------- -- Data_In -- ------------- procedure Data_In (Item : out Stream_Element_Array; Last : out Stream_Element_Offset) is begin Read (File_In, Item, Last); end Data_In; -------------- -- Data_Out -- -------------- procedure Data_Out (Item : in Stream_Element_Array) is begin Write (File_Out, Item); end Data_Out; ------------------- -- Generate_File -- ------------------- procedure Generate_File is subtype Visible_Symbols is Stream_Element range 16#20# .. 16#7E#; package Random_Elements is new Ada.Numerics.Discrete_Random (Visible_Symbols); Gen : Random_Elements.Generator; Buffer : Stream_Element_Array := (1 .. 77 => 16#20#) & 10; Buffer_Count : constant Count := File_Size / Buffer'Length; -- Number of same buffers in the packet. Density : constant Count := 30; -- from 0 to Buffer'Length - 2; procedure Fill_Buffer (J, D : in Count); -- Change the part of the buffer. ----------------- -- Fill_Buffer -- ----------------- procedure Fill_Buffer (J, D : in Count) is begin for K in 0 .. D loop Buffer (Stream_Element_Offset ((J + K) mod (Buffer'Length - 1) + 1)) := Random_Elements.Random (Gen); end loop; end Fill_Buffer; begin Random_Elements.Reset (Gen, Init_Random); Create (File_In, Out_File, In_File_Name); Fill_Buffer (1, Buffer'Length - 2); for J in 1 .. Buffer_Count loop Write (File_In, Buffer); Fill_Buffer (J, Density); end loop; -- fill remain size. Write (File_In, Buffer (1 .. Stream_Element_Offset (File_Size - Buffer'Length * Buffer_Count))); Flush (File_In); Close (File_In); end Generate_File; --------------------- -- Print_Statistic -- --------------------- procedure Print_Statistic (Msg : String; Data_Size : ZLib.Count) is use Ada.Calendar; use Ada.Text_IO; package Count_IO is new Integer_IO (ZLib.Count); Curr_Dur : Duration := Clock - Time_Stamp; begin Put (Msg); Set_Col (20); Ada.Text_IO.Put ("size ="); Count_IO.Put (Data_Size, Width => Stream_IO.Count'Image (File_Size)'Length); Put_Line (" duration =" & Duration'Image (Curr_Dur)); end Print_Statistic; ----------- -- Stamp -- ----------- procedure Stamp is begin Time_Stamp := Ada.Calendar.Clock; end Stamp; begin Ada.Text_IO.Put_Line ("ZLib " & ZLib.Version); loop Generate_File; for Level in ZLib.Compression_Level'Range loop Ada.Text_IO.Put_Line ("Level =" & ZLib.Compression_Level'Image (Level)); -- Test generic interface. Open (File_In, In_File, In_File_Name); Create (File_Out, Out_File, Z_File_Name); Stamp; -- Deflate using generic instantiation. ZLib.Deflate_Init (Filter => Filter, Level => Level, Strategy => Strategy, Header => Header); Translate (Filter); Print_Statistic ("Generic compress", ZLib.Total_Out (Filter)); ZLib.Close (Filter); Close (File_In); Close (File_Out); Open (File_In, In_File, Z_File_Name); Create (File_Out, Out_File, Out_File_Name); Stamp; -- Inflate using generic instantiation. ZLib.Inflate_Init (Filter, Header => Header); Translate (Filter); Print_Statistic ("Generic decompress", ZLib.Total_Out (Filter)); ZLib.Close (Filter); Close (File_In); Close (File_Out); Compare_Files (In_File_Name, Out_File_Name); -- Test stream interface. -- Compress to the back stream. Open (File_In, In_File, In_File_Name); Create (File_Back, Out_File, Z_File_Name); Stamp; ZLib.Streams.Create (Stream => File_Z, Mode => ZLib.Streams.Out_Stream, Back => ZLib.Streams.Stream_Access (Stream (File_Back)), Back_Compressed => True, Level => Level, Strategy => Strategy, Header => Header); Copy_Streams (Source => Stream (File_In).all, Target => File_Z); -- Flushing internal buffers to the back stream. ZLib.Streams.Flush (File_Z, ZLib.Finish); Print_Statistic ("Write compress", ZLib.Streams.Write_Total_Out (File_Z)); ZLib.Streams.Close (File_Z); Close (File_In); Close (File_Back); -- Compare reading from original file and from -- decompression stream. Open (File_In, In_File, In_File_Name); Open (File_Back, In_File, Z_File_Name); ZLib.Streams.Create (Stream => File_Z, Mode => ZLib.Streams.In_Stream, Back => ZLib.Streams.Stream_Access (Stream (File_Back)), Back_Compressed => True, Header => Header); Stamp; Compare_Streams (Stream (File_In).all, File_Z); Print_Statistic ("Read decompress", ZLib.Streams.Read_Total_Out (File_Z)); ZLib.Streams.Close (File_Z); Close (File_In); Close (File_Back); -- Compress by reading from compression stream. Open (File_Back, In_File, In_File_Name); Create (File_Out, Out_File, Z_File_Name); ZLib.Streams.Create (Stream => File_Z, Mode => ZLib.Streams.In_Stream, Back => ZLib.Streams.Stream_Access (Stream (File_Back)), Back_Compressed => False, Level => Level, Strategy => Strategy, Header => Header); Stamp; Copy_Streams (Source => File_Z, Target => Stream (File_Out).all); Print_Statistic ("Read compress", ZLib.Streams.Read_Total_Out (File_Z)); ZLib.Streams.Close (File_Z); Close (File_Out); Close (File_Back); -- Decompress to decompression stream. Open (File_In, In_File, Z_File_Name); Create (File_Back, Out_File, Out_File_Name); ZLib.Streams.Create (Stream => File_Z, Mode => ZLib.Streams.Out_Stream, Back => ZLib.Streams.Stream_Access (Stream (File_Back)), Back_Compressed => False, Header => Header); Stamp; Copy_Streams (Source => Stream (File_In).all, Target => File_Z); Print_Statistic ("Write decompress", ZLib.Streams.Write_Total_Out (File_Z)); ZLib.Streams.Close (File_Z); Close (File_In); Close (File_Back); Compare_Files (In_File_Name, Out_File_Name); end loop; Ada.Text_IO.Put_Line (Count'Image (File_Size) & " Ok."); exit when not Continuous; File_Size := File_Size + 1; end loop; end Test;
-- SipHash.General -- Implementing SipHash over a general private type -- Copyright (c) 2015, James Humphry - see LICENSE file for details with Ada.Storage_IO, System.Storage_Elements; -- Rather than simply writing the object into a buffer and calling the main -- SipHash routine, this implementation takes advantage of the fact that the -- padding required is always constant and does not need to be recalculated -- each time, giving a minor speed increase. function SipHash.General (m : T) return Hash_Type is package T_Storage is new Ada.Storage_IO(Element_Type => T); Buffer_Size : System.Storage_Elements.Storage_Offset renames T_Storage.Buffer_Size; procedure Write (Buffer : out T_Storage.Buffer_Type; Item : T) renames T_Storage.Write; use System.Storage_Elements; Padded_Blocks : constant Storage_Count := ((Buffer_Size / 8) + 1); Padded_Buffer_Size : constant Storage_Count := Padded_Blocks * 8; B : Storage_Array(1..Padded_Buffer_Size) := (others => 0); m_pos : Storage_Offset := 1; m_i : U64; v : SipHash_State := Get_Initial_State; begin -- This compile-time check is useful for GNAT but in GNATprove it currently -- just generates a warning that it can not yet prove them correct. pragma Warnings (GNATprove, Off, "Compile_Time_Error"); pragma Compile_Time_Error (Storage_Element'Size /= 8, "This implementation of SipHash cannot work " & "with Storage_Element'Size /= 8."); pragma Warnings (GNATprove, On, "Compile_Time_Error"); Write(Buffer => B(1..Buffer_Size), Item => m); B(B'Last) := Storage_Element(Buffer_Size mod 256); for I in 1..Padded_Blocks loop pragma Loop_Invariant (m_pos = (I-1) * 8 + 1); m_i := SArray8_to_U64_LE(B(m_pos..m_pos+7)); v(3) := v(3) xor m_i; for J in 1..c_rounds loop Sip_Round(v); end loop; v(0) := v(0) xor m_i; m_pos := m_pos + 8; end loop; return Hash_Type'Mod(Sip_Finalization(v)); end SipHash.General;
<?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>demux</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>6</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>4</id> <name>accCtrl2demux_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></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>256</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>5</id> <name>metadataBuffer_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>128</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>6</id> <name>keyBuffer_V_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>7</id> <name>demux2getPath_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>45</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>8</id> <name>demux2setPathMetadat_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>45</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>9</id> <name>demux2setPathValue_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>66</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>125</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>0</type> <id>18</id> <name>demuxState_load</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/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>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>19</id> <name>wordCounter_V_load</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>216</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>216</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>20</id> <name>valueLength_V_load</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>240</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>240</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>188</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>21</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>189</item> <item>190</item> <item>192</item> <item>193</item> <item>195</item> <item>196</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_9</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.9</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>256</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>471</item> <item>472</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>24</id> <name>metadataWrWord_keyVa_2</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>230</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.keyValid.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>473</item> <item>474</item> <item>475</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>25</id> <name>metadataWrWord_value</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>230</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.valueValid.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>476</item> <item>477</item> <item>479</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>26</id> <name>metadataWrWord_EOP_V_2</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>230</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.EOP.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>480</item> <item>481</item> <item>482</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>27</id> <name>setData_data_V_2</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>230</second> </item> </second> </item> </inlineStackInfo> <originalName>setData.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>483</item> <item>484</item> <item>485</item> <item>486</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_V</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>230</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>487</item> <item>488</item> <item>489</item> <item>490</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>29</id> <name>tmp_445</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>232</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>232</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>491</item> <item>492</item> <item>493</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>30</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>232</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>232</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>494</item> <item>495</item> <item>496</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_10</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>234</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>234</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.10</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>497</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>234</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>234</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>498</item> <item>499</item> <item>500</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_201_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>235</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>235</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>501</item> <item>502</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>35</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>235</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>235</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>503</item> <item>504</item> <item>782</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>236</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>236</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>505</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>237</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>237</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>506</item> <item>507</item> <item>508</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>40</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>238</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>238</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>509</item> <item>510</item> <item>511</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>238</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>238</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>512</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_203_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>240</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>240</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>513</item> <item>515</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>44</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>240</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>240</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>516</item> <item>517</item> <item>518</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_204_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>243</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>243</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>519</item> <item>521</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.30</m_delay> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>47</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>243</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>243</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>522</item> <item>523</item> <item>785</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>48</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>524</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_EOP_V_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.EOP.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>526</item> <item>527</item> <item>528</item> <item>529</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>51</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>244</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>244</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>530</item> <item>531</item> <item>532</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_11</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>245</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.11</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>66</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>533</item> <item>534</item> <item>535</item> <item>536</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>54</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>245</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>537</item> <item>538</item> <item>539</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>245</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>540</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>57</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>246</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>246</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>541</item> <item>542</item> <item>543</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>59</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>247</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>247</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>544</item> <item>545</item> <item>788</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>60</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>247</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>247</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>546</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>62</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>248</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>547</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_441</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>422</item> <item>423</item> <item>424</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>65</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>212</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>212</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>425</item> <item>426</item> <item>427</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.7</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>256</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>428</item> <item>429</item> <item>792</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>68</id> <name>metadataWrWord_keyVa_1</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>214</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.keyValid.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>430</item> <item>431</item> <item>432</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>69</id> <name>metadataWrWord_EOP_V</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>214</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.EOP.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>433</item> <item>434</item> <item>435</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp_V_54</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>214</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>436</item> <item>437</item> <item>438</item> <item>439</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp_451</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>216</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>216</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>441</item> <item>442</item> <item>443</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>72</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>216</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>216</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>444</item> <item>445</item> <item>446</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_8</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>218</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>218</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.8</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>447</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>218</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>218</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>448</item> <item>449</item> <item>450</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_202_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>219</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>219</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>451</item> <item>452</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>219</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>219</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>453</item> <item>454</item> <item>784</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>78</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>220</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>220</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>455</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>80</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>221</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>221</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>456</item> <item>457</item> <item>458</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>82</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>222</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>222</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>459</item> <item>460</item> <item>461</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>83</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>222</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>222</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>462</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>85</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>223</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>223</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>463</item> <item>464</item> <item>465</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>87</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>224</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>224</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>466</item> <item>467</item> <item>787</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>88</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>224</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>224</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>468</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>90</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>225</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>469</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>92</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>226</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>226</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>470</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>201</item> <item>202</item> <item>204</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>95</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>165</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>205</item> <item>206</item> <item>207</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp308</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp308</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>256</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>793</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>98</id> <name>p_Val2_s</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>124</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>211</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>99</id> <name>metadataWrWord_SOP_V</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.SOP.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>213</item> <item>214</item> <item>216</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>100</id> <name>metadataWrWord_keyVa</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>metadataWrWord.keyValid.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>217</item> <item>218</item> <item>220</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>101</id> <name>setData_data_V</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>setData.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>222</item> <item>223</item> <item>225</item> <item>227</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>102</id> <name>tmp_V_55</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>104</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>228</item> <item>229</item> <item>231</item> <item>233</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>103</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>168</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>234</item> <item>235</item> <item>236</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>105</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>237</item> <item>238</item> <item>783</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>106</id> <name>tmp_453</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>242</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>107</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>243</item> <item>244</item> <item>245</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>109</id> <name>p_Result_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>250</item> <item>252</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_455</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</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>253</item> <item>255</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_456</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</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>256</item> <item>258</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_457</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</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>259</item> <item>260</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>113</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>261</item> <item>262</item> <item>263</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>115</id> <name>tmp_205_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>300</item> <item>302</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>116</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>303</item> <item>304</item> <item>305</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_206_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>189</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>349</item> <item>351</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>119</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>189</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>352</item> <item>353</item> <item>354</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>121</id> <name>tmp_64_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>192</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>192</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>355</item> <item>356</item> <item>357</item> <item>358</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>122</id> <name>tmp_4</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>192</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>192</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.4</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>359</item> <item>360</item> <item>361</item> <item>362</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>123</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>192</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>192</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>363</item> <item>364</item> <item>365</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>124</id> <name>setMd_address_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>193</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>193</second> </item> </second> </item> </inlineStackInfo> <originalName>setMd.address.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>366</item> <item>367</item> <item>368</item> <item>369</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>125</id> <name>setMd_length_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>193</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>193</second> </item> </second> </item> </inlineStackInfo> <originalName>setMd.length.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>370</item> <item>371</item> <item>372</item> <item>373</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>126</id> <name>tmp_5</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>194</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.5</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>45</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>374</item> <item>375</item> <item>376</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>127</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>194</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>377</item> <item>378</item> <item>379</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>128</id> <name>p_Result_55_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>196</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>381</item> <item>382</item> <item>383</item> <item>385</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_EOP_V_8</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.EOP.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>386</item> <item>388</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.02</m_delay> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_209_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>389</item> <item>391</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.33</m_delay> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>131</id> <name>storemerge_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>392</item> <item>393</item> <item>394</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.60</m_delay> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>132</id> <name>storemerge_cast_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>395</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>133</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>196</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>396</item> <item>397</item> <item>790</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_6</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>201</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>201</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.6</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>66</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>399</item> <item>400</item> <item>401</item> <item>402</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>135</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>201</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>201</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>404</item> <item>405</item> <item>406</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>136</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>202</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>202</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>407</item> <item>408</item> <item>409</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>138</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>203</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>203</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>410</item> <item>411</item> <item>412</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>139</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>203</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>203</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>413</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>141</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>204</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>204</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>414</item> <item>415</item> <item>791</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>142</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>205</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>205</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>416</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>144</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>417</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_63_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>182</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>182</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>308</item> <item>309</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>147</id> <name>tmp_2</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>182</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>182</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>310</item> <item>311</item> <item>312</item> <item>313</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>148</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>182</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>182</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>314</item> <item>315</item> <item>316</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>149</id> <name>getMd_address_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName>getMd.address.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>318</item> <item>319</item> <item>321</item> <item>323</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>150</id> <name>getMd_length_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName>getMd.length.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>325</item> <item>326</item> <item>328</item> <item>330</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>151</id> <name>tmp_3</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>184</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>184</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.3</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>45</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>332</item> <item>333</item> <item>334</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>152</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>184</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>184</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>336</item> <item>337</item> <item>338</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>153</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>185</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>339</item> <item>340</item> <item>341</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>155</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>186</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>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>156</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>186</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>345</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>158</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>346</item> <item>347</item> <item>789</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>159</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>188</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>188</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>348</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>161</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>418</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>163</id> <name>tmp_62_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>265</item> <item>266</item> <item>267</item> <item>269</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>164</id> <name>tmp_1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>274</item> <item>275</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>165</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>174</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>277</item> <item>278</item> <item>279</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>166</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>175</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>280</item> <item>281</item> <item>282</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>168</id> <name>p_Result_53_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>283</item> <item>284</item> <item>285</item> <item>286</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_207_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>175</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>287</item> <item>288</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>170</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>175</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>289</item> <item>290</item> <item>291</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>172</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>176</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>176</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>293</item> <item>294</item> <item>295</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>173</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>176</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>176</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>296</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>175</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>297</item> <item>298</item> <item>786</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>176</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>178</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>178</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>299</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>178</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>206</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>419</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>180</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>207</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>207</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>420</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>182</id> <name></name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>demux</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>demux</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>421</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>184</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>30</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_132"> <Value> <Obj> <type>2</type> <id>191</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_133"> <Value> <Obj> <type>2</type> <id>194</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_134"> <Value> <Obj> <type>2</type> <id>197</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_135"> <Value> <Obj> <type>2</type> <id>203</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_136"> <Value> <Obj> <type>2</type> <id>215</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>124</content> </item> <item class_id_reference="16" object_id="_137"> <Value> <Obj> <type>2</type> <id>219</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>125</content> </item> <item class_id_reference="16" object_id="_138"> <Value> <Obj> <type>2</type> <id>224</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>128</content> </item> <item class_id_reference="16" object_id="_139"> <Value> <Obj> <type>2</type> <id>226</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>191</content> </item> <item class_id_reference="16" object_id="_140"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>192</content> </item> <item class_id_reference="16" object_id="_141"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_142"> <Value> <Obj> <type>2</type> <id>241</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>112</content> </item> <item class_id_reference="16" object_id="_143"> <Value> <Obj> <type>2</type> <id>249</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>104</content> </item> <item class_id_reference="16" object_id="_144"> <Value> <Obj> <type>2</type> <id>251</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>111</content> </item> <item class_id_reference="16" object_id="_145"> <Value> <Obj> <type>2</type> <id>254</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_146"> <Value> <Obj> <type>2</type> <id>257</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_147"> <Value> <Obj> <type>2</type> <id>268</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>127</content> </item> <item class_id_reference="16" object_id="_148"> <Value> <Obj> <type>2</type> <id>273</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_149"> <Value> <Obj> <type>2</type> <id>301</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_150"> <Value> <Obj> <type>2</type> <id>320</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>72</content> </item> <item class_id_reference="16" object_id="_151"> <Value> <Obj> <type>2</type> <id>322</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>103</content> </item> <item class_id_reference="16" object_id="_152"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_153"> <Value> <Obj> <type>2</type> <id>329</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>20</content> </item> <item class_id_reference="16" object_id="_154"> <Value> <Obj> <type>2</type> <id>350</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_155"> <Value> <Obj> <type>2</type> <id>384</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>19</content> </item> <item class_id_reference="16" object_id="_156"> <Value> <Obj> <type>2</type> <id>387</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_157"> <Value> <Obj> <type>2</type> <id>390</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>4088</content> </item> <item class_id_reference="16" object_id="_158"> <Value> <Obj> <type>2</type> <id>478</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>126</content> </item> <item class_id_reference="16" object_id="_159"> <Value> <Obj> <type>2</type> <id>514</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_160"> <Value> <Obj> <type>2</type> <id>520</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>65528</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>525</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>43</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_162"> <Obj> <type>3</type> <id>22</id> <name>entry</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>18</item> <item>19</item> <item>20</item> <item>21</item> </node_objs> </item> <item class_id_reference="18" object_id="_163"> <Obj> <type>3</type> <id>31</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> </node_objs> </item> <item class_id_reference="18" object_id="_164"> <Obj> <type>3</type> <id>37</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> </node_objs> </item> <item class_id_reference="18" object_id="_165"> <Obj> <type>3</type> <id>39</id> <name>._crit_edge19.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_166"> <Obj> <type>3</type> <id>42</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_167"> <Obj> <type>3</type> <id>45</id> <name>._crit_edge20.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>43</item> <item>44</item> </node_objs> </item> <item class_id_reference="18" object_id="_168"> <Obj> <type>3</type> <id>49</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>46</item> <item>47</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_169"> <Obj> <type>3</type> <id>52</id> <name>._crit_edge21.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>50</item> <item>51</item> </node_objs> </item> <item class_id_reference="18" object_id="_170"> <Obj> <type>3</type> <id>56</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>53</item> <item>54</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_171"> <Obj> <type>3</type> <id>58</id> <name>._crit_edge22.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_172"> <Obj> <type>3</type> <id>61</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>59</item> <item>60</item> </node_objs> </item> <item class_id_reference="18" object_id="_173"> <Obj> <type>3</type> <id>63</id> <name>._crit_edge23.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_174"> <Obj> <type>3</type> <id>66</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>64</item> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_175"> <Obj> <type>3</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> <node_objs> <count>6</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> </node_objs> </item> <item class_id_reference="18" object_id="_176"> <Obj> <type>3</type> <id>79</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> </node_objs> </item> <item class_id_reference="18" object_id="_177"> <Obj> <type>3</type> <id>81</id> <name>._crit_edge16.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_178"> <Obj> <type>3</type> <id>84</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>82</item> <item>83</item> </node_objs> </item> <item class_id_reference="18" object_id="_179"> <Obj> <type>3</type> <id>86</id> <name>._crit_edge17.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>85</item> </node_objs> </item> <item class_id_reference="18" object_id="_180"> <Obj> <type>3</type> <id>89</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>87</item> <item>88</item> </node_objs> </item> <item class_id_reference="18" object_id="_181"> <Obj> <type>3</type> <id>91</id> <name>._crit_edge18.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>90</item> </node_objs> </item> <item class_id_reference="18" object_id="_182"> <Obj> <type>3</type> <id>93</id> <name>._crit_edge15.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>92</item> </node_objs> </item> <item class_id_reference="18" object_id="_183"> <Obj> <type>3</type> <id>96</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>94</item> <item>95</item> </node_objs> </item> <item class_id_reference="18" object_id="_184"> <Obj> <type>3</type> <id>104</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> </node_objs> </item> <item class_id_reference="18" object_id="_185"> <Obj> <type>3</type> <id>108</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>105</item> <item>106</item> <item>107</item> </node_objs> </item> <item class_id_reference="18" object_id="_186"> <Obj> <type>3</type> <id>114</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> </node_objs> </item> <item class_id_reference="18" object_id="_187"> <Obj> <type>3</type> <id>117</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>115</item> <item>116</item> </node_objs> </item> <item class_id_reference="18" object_id="_188"> <Obj> <type>3</type> <id>120</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>118</item> <item>119</item> </node_objs> </item> <item class_id_reference="18" object_id="_189"> <Obj> <type>3</type> <id>137</id> <name>._crit_edge13.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>16</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_190"> <Obj> <type>3</type> <id>140</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>138</item> <item>139</item> </node_objs> </item> <item class_id_reference="18" object_id="_191"> <Obj> <type>3</type> <id>143</id> <name>._crit_edge14.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>141</item> <item>142</item> </node_objs> </item> <item class_id_reference="18" object_id="_192"> <Obj> <type>3</type> <id>145</id> <name>._crit_edge12.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>144</item> </node_objs> </item> <item class_id_reference="18" object_id="_193"> <Obj> <type>3</type> <id>154</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> </node_objs> </item> <item class_id_reference="18" object_id="_194"> <Obj> <type>3</type> <id>157</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>155</item> <item>156</item> </node_objs> </item> <item class_id_reference="18" object_id="_195"> <Obj> <type>3</type> <id>160</id> <name>._crit_edge11.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>158</item> <item>159</item> </node_objs> </item> <item class_id_reference="18" object_id="_196"> <Obj> <type>3</type> <id>162</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>161</item> </node_objs> </item> <item class_id_reference="18" object_id="_197"> <Obj> <type>3</type> <id>167</id> <name>._crit_edge6.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>163</item> <item>164</item> <item>165</item> <item>166</item> </node_objs> </item> <item class_id_reference="18" object_id="_198"> <Obj> <type>3</type> <id>171</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>168</item> <item>169</item> <item>170</item> </node_objs> </item> <item class_id_reference="18" object_id="_199"> <Obj> <type>3</type> <id>174</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>172</item> <item>173</item> </node_objs> </item> <item class_id_reference="18" object_id="_200"> <Obj> <type>3</type> <id>177</id> <name>._crit_edge9.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>175</item> <item>176</item> </node_objs> </item> <item class_id_reference="18" object_id="_201"> <Obj> <type>3</type> <id>179</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>178</item> </node_objs> </item> <item class_id_reference="18" object_id="_202"> <Obj> <type>3</type> <id>181</id> <name>._crit_edge5.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>180</item> </node_objs> </item> <item class_id_reference="18" object_id="_203"> <Obj> <type>3</type> <id>183</id> <name>._crit_edge4.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>182</item> </node_objs> </item> <item class_id_reference="18" object_id="_204"> <Obj> <type>3</type> <id>185</id> <name>demux.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>184</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>340</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_205"> <id>186</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>187</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>188</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>189</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>190</id> <edge_type>2</edge_type> <source_obj>185</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>192</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>193</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>195</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>196</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>198</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>199</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>202</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>204</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>205</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>206</id> <edge_type>2</edge_type> <source_obj>183</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>207</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>210</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>211</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="_223"> <id>214</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>216</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>218</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>100</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>219</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>223</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>225</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>227</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>229</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>231</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>233</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>234</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>235</id> <edge_type>2</edge_type> <source_obj>181</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>236</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>237</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>238</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>240</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>242</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>243</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>244</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>245</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>248</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>250</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>252</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>253</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="_247"> <id>255</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>256</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>258</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>259</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="_251"> <id>260</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>261</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>262</id> <edge_type>2</edge_type> <source_obj>117</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>263</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>266</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>267</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>269</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>272</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>274</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>275</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>278</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>279</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="_263"> <id>280</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>281</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>282</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>284</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>285</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>286</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>287</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>288</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>289</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="_272"> <id>290</id> <edge_type>2</edge_type> <source_obj>174</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>291</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>294</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>295</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>296</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>297</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>298</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>299</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>300</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>302</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>303</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="_283"> <id>304</id> <edge_type>2</edge_type> <source_obj>120</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>305</id> <edge_type>2</edge_type> <source_obj>154</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>307</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>308</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>309</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>311</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="_289"> <id>312</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>313</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>315</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>316</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>319</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>321</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>323</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>326</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>328</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>330</id> <edge_type>1</edge_type> <source_obj>329</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>333</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>334</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>337</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>338</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>339</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>340</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>341</id> <edge_type>2</edge_type> <source_obj>157</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>343</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>344</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>345</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>346</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>347</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>348</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>349</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>351</id> <edge_type>1</edge_type> <source_obj>350</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>352</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>353</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>354</id> <edge_type>2</edge_type> <source_obj>137</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>356</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>357</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>358</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>360</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="_321"> <id>361</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>362</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>364</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>365</id> <edge_type>1</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="_325"> <id>367</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>368</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>369</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>371</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>372</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>373</id> <edge_type>1</edge_type> <source_obj>329</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>375</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>376</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>378</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>379</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>382</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>383</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>385</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>386</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>388</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>389</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>130</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>390</source_obj> <sink_obj>130</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>129</source_obj> <sink_obj>131</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>128</source_obj> <sink_obj>131</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>130</source_obj> <sink_obj>131</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>131</source_obj> <sink_obj>132</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>132</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>397</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>400</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>401</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>402</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>405</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>406</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>407</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>408</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>409</id> <edge_type>2</edge_type> <source_obj>140</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>411</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>412</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>413</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>414</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>415</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>416</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>417</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>418</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>419</id> <edge_type>2</edge_type> <source_obj>181</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>420</id> <edge_type>2</edge_type> <source_obj>183</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>421</id> <edge_type>2</edge_type> <source_obj>185</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>423</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>424</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>425</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>426</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>427</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>429</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>431</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>432</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>434</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>435</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>437</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>438</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>439</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>442</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>443</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>444</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>445</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>446</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>447</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>449</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>450</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>451</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>452</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>453</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>454</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>455</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>456</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>457</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>458</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>460</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>461</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>462</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>463</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>464</id> <edge_type>2</edge_type> <source_obj>91</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>465</id> <edge_type>2</edge_type> <source_obj>89</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>466</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>467</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>468</id> <edge_type>2</edge_type> <source_obj>91</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>469</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>470</id> <edge_type>2</edge_type> <source_obj>185</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>472</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>474</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="_409"> <id>475</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>477</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>479</id> <edge_type>1</edge_type> <source_obj>478</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>481</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>482</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>484</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="_415"> <id>485</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>486</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>488</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>489</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>490</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>492</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>493</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>494</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="_423"> <id>495</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>496</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>497</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>499</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>500</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="_428"> <id>501</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>502</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>503</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="_431"> <id>504</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>505</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>506</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>507</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>508</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>510</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>511</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>512</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>513</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>515</id> <edge_type>1</edge_type> <source_obj>514</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>516</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>517</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>518</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>519</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>521</id> <edge_type>1</edge_type> <source_obj>520</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>522</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="_447"> <id>523</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>524</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>526</id> <edge_type>1</edge_type> <source_obj>525</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>527</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>528</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>529</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>530</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>531</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>532</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>534</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>535</id> <edge_type>1</edge_type> <source_obj>525</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>536</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>538</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>539</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="_461"> <id>540</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>541</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>542</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>543</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>544</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>545</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>546</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>547</id> <edge_type>2</edge_type> <source_obj>185</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>717</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>718</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>719</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>720</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>721</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>722</id> <edge_type>2</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="_475"> <id>723</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>724</id> <edge_type>2</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="_477"> <id>725</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>726</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>727</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>728</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>729</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>730</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>731</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>732</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>733</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>734</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>735</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>736</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>737</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>738</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>739</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>740</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>741</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>742</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>743</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>744</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>745</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>746</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>747</id> <edge_type>2</edge_type> <source_obj>89</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>748</id> <edge_type>2</edge_type> <source_obj>91</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>749</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>750</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>751</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>752</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>753</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>754</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>755</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>756</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>757</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>758</id> <edge_type>2</edge_type> <source_obj>117</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>759</id> <edge_type>2</edge_type> <source_obj>117</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>760</id> <edge_type>2</edge_type> <source_obj>120</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>761</id> <edge_type>2</edge_type> <source_obj>120</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>762</id> <edge_type>2</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="_515"> <id>763</id> <edge_type>2</edge_type> <source_obj>137</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>764</id> <edge_type>2</edge_type> <source_obj>140</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>765</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>766</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>767</id> <edge_type>2</edge_type> <source_obj>154</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>768</id> <edge_type>2</edge_type> <source_obj>154</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>769</id> <edge_type>2</edge_type> <source_obj>157</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>770</id> <edge_type>2</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="_523"> <id>771</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>772</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>773</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>774</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>775</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>776</id> <edge_type>2</edge_type> <source_obj>174</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>777</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>778</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>779</id> <edge_type>2</edge_type> <source_obj>181</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>780</id> <edge_type>2</edge_type> <source_obj>183</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>782</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>783</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>784</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>785</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>786</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>787</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>788</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>789</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>790</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>791</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>792</id> <edge_type>4</edge_type> <source_obj>64</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>793</id> <edge_type>4</edge_type> <source_obj>94</source_obj> <sink_obj>97</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="_545"> <mId>1</mId> <mTag>demux</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>43</count> <item_version>0</item_version> <item>22</item> <item>31</item> <item>37</item> <item>39</item> <item>42</item> <item>45</item> <item>49</item> <item>52</item> <item>56</item> <item>58</item> <item>61</item> <item>63</item> <item>66</item> <item>73</item> <item>79</item> <item>81</item> <item>84</item> <item>86</item> <item>89</item> <item>91</item> <item>93</item> <item>96</item> <item>104</item> <item>108</item> <item>114</item> <item>117</item> <item>120</item> <item>137</item> <item>140</item> <item>143</item> <item>145</item> <item>154</item> <item>157</item> <item>160</item> <item>162</item> <item>167</item> <item>171</item> <item>174</item> <item>177</item> <item>179</item> <item>181</item> <item>183</item> <item>185</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_546"> <states class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_547"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>79</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_548"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_549"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_550"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_551"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_552"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_553"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_554"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_555"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_556"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_557"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_558"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_559"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_560"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_561"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_562"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_563"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_564"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_565"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_566"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_567"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_568"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_569"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_570"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_571"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_572"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_573"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_574"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_575"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_576"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_577"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_578"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_579"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_580"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_581"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_582"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_583"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_584"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_585"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_586"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_587"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_588"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_589"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_590"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_591"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_592"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_593"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_594"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_595"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_596"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_597"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_598"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_599"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_600"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_601"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_602"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_603"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_604"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_605"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_606"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_607"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_608"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_609"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_610"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_611"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_612"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_613"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_614"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_615"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_616"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_617"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_618"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_619"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_620"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_621"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_622"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_623"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_624"> <id>169</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_625"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_626"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_627"> <id>2</id> <operations> <count>54</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_628"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_629"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_630"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_631"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_632"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_633"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_634"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_635"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_636"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_637"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_638"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_639"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_640"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_641"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_644"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_645"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_646"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_647"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_651"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_652"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_653"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_654"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_655"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_656"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_657"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_658"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_659"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_660"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_661"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_662"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_663"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_664"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_665"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_666"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_667"> <id>151</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_668"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_669"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_670"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_671"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_672"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_673"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_674"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_675"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_676"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_677"> <id>176</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_678"> <id>178</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_679"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_680"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_681"> <id>184</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_682"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>190</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="35" tracking_level="0" version="0"> <count>125</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>18</first> <second class_id="37" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>0</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>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>0</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>0</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>1</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>97</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="38" tracking_level="0" version="0"> <count>43</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>22</first> <second class_id="40" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>39</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>56</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>58</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>63</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>73</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>86</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>91</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>93</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>96</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>104</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>140</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>143</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>145</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>154</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>157</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>160</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>162</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>167</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>171</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>177</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>179</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>181</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>183</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>185</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="41" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="42" tracking_level="1" version="0" object_id="_683"> <region_name>demux</region_name> <basic_blocks> <count>43</count> <item_version>0</item_version> <item>22</item> <item>31</item> <item>37</item> <item>39</item> <item>42</item> <item>45</item> <item>49</item> <item>52</item> <item>56</item> <item>58</item> <item>61</item> <item>63</item> <item>66</item> <item>73</item> <item>79</item> <item>81</item> <item>84</item> <item>86</item> <item>89</item> <item>91</item> <item>93</item> <item>96</item> <item>104</item> <item>108</item> <item>114</item> <item>117</item> <item>120</item> <item>137</item> <item>140</item> <item>143</item> <item>145</item> <item>154</item> <item>157</item> <item>160</item> <item>162</item> <item>167</item> <item>171</item> <item>174</item> <item>177</item> <item>179</item> <item>181</item> <item>183</item> <item>185</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="43" tracking_level="0" version="0"> <count>55</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>200</first> <second> <count>3</count> <item_version>0</item_version> <item>23</item> <item>67</item> <item>97</item> </second> </item> <item> <first>206</first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>94</item> </second> </item> <item> <first>214</first> <second> <count>5</count> <item_version>0</item_version> <item>33</item> <item>75</item> <item>123</item> <item>148</item> <item>165</item> </second> </item> <item> <first>221</first> <second> <count>5</count> <item_version>0</item_version> <item>40</item> <item>82</item> <item>138</item> <item>155</item> <item>172</item> </second> </item> <item> <first>228</first> <second> <count>2</count> <item_version>0</item_version> <item>54</item> <item>135</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>242</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>262</first> <second> <count>3</count> <item_version>0</item_version> <item>24</item> <item>68</item> <item>100</item> </second> </item> <item> <first>270</first> <second> <count>2</count> <item_version>0</item_version> <item>26</item> <item>69</item> </second> </item> <item> <first>278</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>101</item> </second> </item> <item> <first>288</first> <second> <count>3</count> <item_version>0</item_version> <item>28</item> <item>70</item> <item>102</item> </second> </item> <item> <first>298</first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>71</item> </second> </item> <item> <first>305</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>76</item> </second> </item> <item> <first>310</first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>77</item> </second> </item> <item> <first>316</first> <second> <count>2</count> <item_version>0</item_version> <item>59</item> <item>87</item> </second> </item> <item> <first>322</first> <second> <count>3</count> <item_version>0</item_version> <item>121</item> <item>146</item> <item>163</item> </second> </item> <item> <first>332</first> <second> <count>2</count> <item_version>0</item_version> <item>124</item> <item>149</item> </second> </item> <item> <first>342</first> <second> <count>2</count> <item_version>0</item_version> <item>125</item> <item>150</item> </second> </item> <item> <first>352</first> <second> <count>2</count> <item_version>0</item_version> <item>158</item> <item>175</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>383</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>389</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>393</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>405</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>411</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>417</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>423</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>427</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>463</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>469</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>475</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>481</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>487</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>493</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>503</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>509</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>515</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>523</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>527</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>533</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>539</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>555</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>566</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>576</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>585</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>595</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>605</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="46" tracking_level="0" version="0"> <count>38</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>grp_fu_262</first> <second> <count>3</count> <item_version>0</item_version> <item>24</item> <item>68</item> <item>100</item> </second> </item> <item> <first>grp_fu_270</first> <second> <count>2</count> <item_version>0</item_version> <item>26</item> <item>69</item> </second> </item> <item> <first>grp_fu_278</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>101</item> </second> </item> <item> <first>grp_fu_288</first> <second> <count>3</count> <item_version>0</item_version> <item>28</item> <item>70</item> <item>102</item> </second> </item> <item> <first>grp_fu_298</first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>71</item> </second> </item> <item> <first>grp_fu_305</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>76</item> </second> </item> <item> <first>grp_fu_322</first> <second> <count>3</count> <item_version>0</item_version> <item>121</item> <item>146</item> <item>163</item> </second> </item> <item> <first>grp_fu_332</first> <second> <count>2</count> <item_version>0</item_version> <item>124</item> <item>149</item> </second> </item> <item> <first>grp_fu_342</first> <second> <count>2</count> <item_version>0</item_version> <item>125</item> <item>150</item> </second> </item> <item> <first>metadataWrWord_SOP_V_fu_431</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>metadataWrWord_value_fu_393</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>p_Result_53_i_fu_539</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>p_Result_55_i_fu_493</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>p_Result_i_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>p_Val2_s_fu_427</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>storemerge_cast_i_fu_523</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>storemerge_i_fu_515</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>tmp_10_fu_401</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_11_fu_555</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_1_fu_614</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>tmp_203_i_fu_405</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_204_i_fu_411</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_205_i_fu_481</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>tmp_206_i_fu_487</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>tmp_207_i_fu_549</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>tmp_209_i_fu_509</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>tmp_2_fu_595</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>tmp_3_fu_605</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>tmp_453_fu_445</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>tmp_455_fu_463</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_456_fu_469</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>tmp_457_fu_475</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_4_fu_566</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>tmp_5_fu_576</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_6_fu_585</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>tmp_8_fu_423</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_EOP_V_7_phi_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_EOP_V_8_fu_503</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>17</count> <item_version>0</item_version> <item> <first>StgValue_112_write_fu_235</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>StgValue_122_write_fu_242</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>StgValue_22_store_fu_417</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>StgValue_48_store_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>StgValue_68_store_fu_527</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>StgValue_70_store_fu_533</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>demuxState_load_load_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>grp_nbreadreq_fu_206</first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>94</item> </second> </item> <item> <first>grp_read_fu_200</first> <second> <count>3</count> <item_version>0</item_version> <item>23</item> <item>67</item> <item>97</item> </second> </item> <item> <first>grp_store_fu_310</first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>77</item> </second> </item> <item> <first>grp_store_fu_316</first> <second> <count>2</count> <item_version>0</item_version> <item>59</item> <item>87</item> </second> </item> <item> <first>grp_store_fu_352</first> <second> <count>2</count> <item_version>0</item_version> <item>158</item> <item>175</item> </second> </item> <item> <first>grp_write_fu_214</first> <second> <count>5</count> <item_version>0</item_version> <item>33</item> <item>75</item> <item>123</item> <item>148</item> <item>165</item> </second> </item> <item> <first>grp_write_fu_221</first> <second> <count>5</count> <item_version>0</item_version> <item>40</item> <item>82</item> <item>138</item> <item>155</item> <item>172</item> </second> </item> <item> <first>grp_write_fu_228</first> <second> <count>2</count> <item_version>0</item_version> <item>54</item> <item>135</item> </second> </item> <item> <first>valueLength_V_load_load_fu_389</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>wordCounter_V_load_load_fu_383</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="48" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>27</count> <item_version>0</item_version> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>358</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>101</item> </second> </item> <item> <first>362</first> <second> <count>3</count> <item_version>0</item_version> <item>28</item> <item>70</item> <item>102</item> </second> </item> <item> <first>367</first> <second> <count>3</count> <item_version>0</item_version> <item>121</item> <item>146</item> <item>163</item> </second> </item> <item> <first>371</first> <second> <count>2</count> <item_version>0</item_version> <item>124</item> <item>149</item> </second> </item> <item> <first>375</first> <second> <count>2</count> <item_version>0</item_version> <item>125</item> <item>150</item> </second> </item> <item> <first>624</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>628</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>636</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>640</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>644</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>652</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>656</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>660</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>664</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>668</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>673</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>677</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>684</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>688</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>692</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>696</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>700</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>704</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>708</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>713</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>27</count> <item_version>0</item_version> <item> <first>demuxState_load_reg_624</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>metadataWrWord_EOP_V_2_reg_636</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>metadataWrWord_EOP_V_reg_660</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>metadataWrWord_SOP_V_reg_684</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>metadataWrWord_keyVa_1_reg_656</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>metadataWrWord_keyVa_2_reg_628</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>metadataWrWord_keyVa_reg_688</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>metadataWrWord_value_reg_632</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>p_Val2_s_reg_677</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>reg_358</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>101</item> </second> </item> <item> <first>reg_362</first> <second> <count>3</count> <item_version>0</item_version> <item>28</item> <item>70</item> <item>102</item> </second> </item> <item> <first>reg_367</first> <second> <count>3</count> <item_version>0</item_version> <item>121</item> <item>146</item> <item>163</item> </second> </item> <item> <first>reg_371</first> <second> <count>2</count> <item_version>0</item_version> <item>124</item> <item>149</item> </second> </item> <item> <first>reg_375</first> <second> <count>2</count> <item_version>0</item_version> <item>125</item> <item>150</item> </second> </item> <item> <first>tmp_10_reg_644</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_205_i_reg_700</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>tmp_206_i_reg_704</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>tmp_207_i_reg_713</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>tmp_441_reg_652</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_445_reg_640</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_451_reg_664</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>tmp_453_reg_692</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>tmp_457_reg_696</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_8_reg_668</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_EOP_V_7_reg_249</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_EOP_V_8_reg_708</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>tmp_reg_673</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>tmp_EOP_V_7_reg_249</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="49" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>accCtrl2demux_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>2</count> <item_version>0</item_version> <item>94</item> <item>64</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>97</item> <item>67</item> <item>23</item> </second> </item> </second> </item> <item> <first>demux2getPath_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> </second> </item> <item> <first>demux2setPathMetadat_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> </second> </item> <item> <first>demux2setPathValue_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>135</item> <item>54</item> </second> </item> </second> </item> <item> <first>keyBuffer_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>172</item> <item>155</item> <item>138</item> <item>82</item> <item>40</item> </second> </item> </second> </item> <item> <first>metadataBuffer_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>165</item> <item>148</item> <item>123</item> <item>75</item> <item>33</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="51" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>4</first> <second>FIFO</second> </item> <item> <first>5</first> <second>FIFO</second> </item> <item> <first>6</first> <second>FIFO</second> </item> <item> <first>7</first> <second>FIFO</second> </item> <item> <first>8</first> <second>FIFO</second> </item> <item> <first>9</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Ada.Strings.Unbounded; with A_Nodes; with Dot; with Indented_Text; private with Ada.Exceptions; private with Ada.Text_IO; private with Ada.Wide_Text_IO; private with Asis; private with Asis.Set_Get; private with Interfaces.C.Extensions; private with Interfaces.C.Strings; private with Unchecked_Conversion; -- GNAT-specific: private with A4G.A_Types; private with Types; private with a_nodes_h.Support; -- Contains supporting declarations for child packages package Asis_Adapter is -- Controls behavior of Trace_ routines. Renamed here so clients have to -- with fewer packages: Trace_On : Boolean renames Indented_Text.Trace_On; Log_On : Boolean ; type Outputs_Record is record -- Initialized Output_Dir : Ada.Strings.Unbounded.Unbounded_String; -- Initialized A_Nodes : Standard.A_Nodes.Access_Class; -- Initialized Graph : Dot.Graphs.Access_Class; -- Initialized Text : Indented_Text.Access_Class; -- Initialized end record; -- Raised when a subprogram is called incorrectly: Usage_Error : Exception; -- Raised when an external routine fails and the subprogram cannot continue: External_Error : Exception; -- Raised when an external routine raises a usage-error-like exception or -- there is an internal logic error: Internal_Error : Exception; private Module_Name : constant String := "Asis_Adapter"; package AEX renames Ada.Exceptions; package ASU renames Ada.Strings.Unbounded; package ATI renames Ada.Text_IO; package AWTI renames Ada.Wide_Text_IO; package IC renames Interfaces.C; package ICE renames Interfaces.C.Extensions; package ICS renames Interfaces.C.Strings; package anhS renames a_nodes_h.Support; function To_String (Item : in Wide_String) return String; function To_Quoted_String (Item : in Wide_String) return String; function "+"(Item : in Wide_String) return String renames To_String; function To_Wide_String (Item : in String) return Wide_String; function "+"(Item : in String) return Wide_String renames To_Wide_String; function To_Chars_Ptr (Item : in Wide_String) return Interfaces.C.Strings.chars_ptr; function To_Chars_Ptr (Item : in String) return Interfaces.C.Strings.chars_ptr renames Interfaces.C.Strings.New_String; procedure Put (Item : in String) renames ATI.Put; procedure Put_Line (Item : in String) renames ATI.Put_Line; procedure Put_Wide (Item : in Wide_String) renames AWTI.Put; procedure Put_Line_Wide (Item : in Wide_String) renames AWTI.Put_Line; procedure Trace_Put (Message : in Wide_String) renames Indented_Text.Trace_Put; procedure Trace_Put_Line (Message : in Wide_String) renames Indented_Text.Trace_Put_Line; -- Provides routines that peofix the output with the name of the current -- module: generic Module_Name : in string; package Generic_Logging is procedure Log (Message : in String); procedure Log_Wide (Message : in Wide_String); procedure Log_Exception (X : in Aex.Exception_Occurrence); end Generic_Logging; -- Returns the image minus the leading space: function Spaceless_Image (Item : in Natural) return String; function NLB_Image (Item : in Natural) return String renames Spaceless_Image; type ID_Kind is (Unit_ID_Kind, Element_ID_Kind); function To_String (Id : in IC.int; Kind : in ID_Kind) return String; function To_Dot_ID_Type (Id : in IC.int; Kind : in ID_Kind) return Dot.ID_Type; -- String: -- Add <Name> => <Value> to the label, and print it if trace is on: procedure Add_To_Dot_Label (Dot_Label : in out Dot.HTML_Like_Labels.Class; Outputs : in out Outputs_Record; Name : in String; Value : in String); -- Boolean: -- Add <Name> => <Value> to the label, and print it if trace is on: -- ONLY acts if Value = True: procedure Add_To_Dot_Label (Dot_Label : in out Dot.HTML_Like_Labels.Class; Outputs : in out Outputs_Record; Name : in String; Value : in Boolean); -- String: -- Add <Value> to the label, and print it if trace is on: procedure Add_To_Dot_Label (Dot_Label : in out Dot.HTML_Like_Labels.Class; Outputs : in out Outputs_Record; Value : in String); -- Unit_ID or Element_ID: -- Add an edge node to the the dot graph: -- Use for both Unit_ID and Element_ID: procedure Add_Dot_Edge (Outputs : in out Outputs_Record; From : in IC.int; From_Kind : in ID_Kind; To : in IC.int; To_Kind : in ID_Kind; Label : in String); -- Order below is alphabetical: function To_Access_Definition_Kinds is new Unchecked_Conversion (Source => Asis.Access_Definition_Kinds, Target => a_nodes_h.Access_Definition_Kinds); function To_Access_Type_Kinds is new Unchecked_Conversion (Source => Asis.Access_Type_Kinds, Target => a_nodes_h.Access_Type_Kinds); function To_Association_Kinds is new Unchecked_Conversion (Source => Asis.Association_Kinds, Target => a_nodes_h.Association_Kinds); function To_Attribute_Kinds is new Unchecked_Conversion (Source => Asis.Attribute_Kinds, Target => a_nodes_h.Attribute_Kinds); function To_Clause_Kinds is new Unchecked_Conversion (Source => Asis.Clause_Kinds, Target => a_nodes_h.Clause_Kinds); function To_Representation_Clause_Kinds is new Unchecked_Conversion (Source => Asis.Representation_Clause_Kinds, Target => a_nodes_h.Representation_Clause_Kinds); function To_Constraint_Kinds is new Unchecked_Conversion (Source => Asis.Constraint_Kinds, Target => a_nodes_h.Constraint_Kinds); function To_Declaration_Kinds is new Unchecked_Conversion (Source => Asis.Declaration_Kinds, Target => a_nodes_h.Declaration_Kinds); function To_Declaration_Origins is new Unchecked_Conversion (Source => Asis.Declaration_Origins, Target => a_nodes_h.Declaration_Origins); function To_Defining_Name_Kinds is new Unchecked_Conversion (Source => Asis.Defining_Name_Kinds, Target => a_nodes_h.Defining_Name_Kinds); function To_Definition_Kinds is new Unchecked_Conversion (Source => Asis.Definition_Kinds, Target => a_nodes_h.Definition_Kinds); function To_Discrete_Range_Kinds is new Unchecked_Conversion (Source => Asis.Discrete_Range_Kinds, Target => a_nodes_h.Discrete_Range_Kinds); function To_Element_Kinds is new Unchecked_Conversion (Source => Asis.Element_Kinds, Target => a_nodes_h.Element_Kinds); function To_Expression_Kinds is new Unchecked_Conversion (Source => Asis.Expression_Kinds, Target => a_nodes_h.Expression_Kinds); function To_Formal_Type_Kinds is new Unchecked_Conversion (Source => Asis.Formal_Type_Kinds, Target => a_nodes_h.Formal_Type_Kinds); function To_Mode_Kinds is new Unchecked_Conversion (Source => Asis.Mode_Kinds, Target => a_nodes_h.Mode_Kinds); function To_Operator_Kinds is new Unchecked_Conversion (Source => Asis.Operator_Kinds, Target => a_nodes_h.Operator_Kinds); function To_Path_Kinds is new Unchecked_Conversion (Source => Asis.Path_Kinds, Target => a_nodes_h.Path_Kinds); function To_Pragma_Kinds is new Unchecked_Conversion (Source => Asis.Pragma_Kinds, Target => a_nodes_h.Pragma_Kinds); function To_Root_Type_Kinds is new Unchecked_Conversion (Source => Asis.Root_Type_Kinds, Target => a_nodes_h.Root_Type_Kinds); function To_Statement_Kinds is new Unchecked_Conversion (Source => Asis.Statement_Kinds, Target => a_nodes_h.Statement_Kinds); function To_Subprogram_Default_Kinds is new Unchecked_Conversion (Source => Asis.Subprogram_Default_Kinds, Target => a_nodes_h.Subprogram_Default_Kinds); function To_Type_Kinds is new Unchecked_Conversion (Source => Asis.Type_Kinds, Target => a_nodes_h.Type_Kinds); function To_Unit_Classes is new Unchecked_Conversion (Source => Asis.Unit_Classes, Target => a_nodes_h.Unit_Classes); function To_Unit_Kinds is new Unchecked_Conversion (Source => Asis.Unit_Kinds, Target => a_nodes_h.Unit_Kinds); function To_Unit_Origins is new Unchecked_Conversion (Source => Asis.Unit_Origins, Target => a_nodes_h.Unit_Origins); -- End alphabetical order end Asis_Adapter;
----------------------------------------------------------------------- -- babel-base-users-tests - Unit tests for babel users -- Copyright (C) 2015 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Test_Caller; package body Babel.Base.Users.Tests is use type Babel.Uid_Type; use type Babel.Gid_Type; use type Util.Strings.Name_Access; package Caller is new Util.Test_Caller (Test, "Base.Users"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Babel.Base.Users.Find", Test_Find'Access); Caller.Add_Test (Suite, "Test Babel.Base.Users.Get_Name", Test_Get_Name'Access); Caller.Add_Test (Suite, "Test Babel.Base.Users.Get_Uid", Test_Get_Uid'Access); Caller.Add_Test (Suite, "Test Babel.Base.Users.Get_Group", Test_Get_Group'Access); end Add_Tests; -- ------------------------------ -- Test the Find function resolving some existing user. -- ------------------------------ procedure Test_Find (T : in out Test) is Db : Babel.Base.Users.Database; User : User_Type; begin User := Db.Find (0, 0); T.Assert (User.Name /= null, "User uid=0 was not found"); T.Assert (User.Group /= null, "User gid=0 was not found"); Util.Tests.Assert_Equals (T, "root", User.Name.all, "Invalid root user name"); Util.Tests.Assert_Equals (T, "root", User.Group.all, "Invalid root group name"); User := Db.Find ("bin", "daemon"); T.Assert (User.Name /= null, "User bin was not found"); T.Assert (User.Group /= null, "Group daemon was not found"); Util.Tests.Assert_Equals (T, "bin", User.Name.all, "Invalid 'bin' user name"); Util.Tests.Assert_Equals (T, "daemon", User.Group.all, "Invalid 'daemon' group name"); T.Assert (User.Uid > 0, "Invalid 'bin' uid"); T.Assert (User.Gid > 0, "Invalid 'daemon' gid"); end Test_Find; -- ------------------------------ -- Test the Get_Name operation. -- ------------------------------ procedure Test_Get_Name (T : in out Test) is Name : Name_Access; Db : Database; begin Name := Db.Get_Name (0); T.Assert (Name /= null, "Get_Name (0) returned null"); Util.Tests.Assert_Equals (T, "root", Name.all, "Invalid name returned for Get_Name (0)"); Name := Db.Get_Name (1); T.Assert (Name /= null, "Get_Name (1) returned null"); Name := Db.Get_Name (55555); T.Assert (Name = null, "Get_Name (55555) returned a non null name"); end Test_Get_Name; -- ------------------------------ -- Test the Get_Uid operation. -- ------------------------------ procedure Test_Get_Uid (T : in out Test) is Db : Database; Uid : Uid_Type; begin Uid := Db.Get_Uid ("root"); Util.Tests.Assert_Equals (T, 0, Natural (Uid), "Get_Uid (root) returned invalid uid"); Uid := Db.Get_Uid ("admin"); T.Assert (Uid /= 0, "Get_Uid (admin) returned invalid uid"); Uid := Db.Get_Uid ("Katniss"); T.Assert (Uid /= 0, "Get_Uid (Katniss) returned invalid uid"); end Test_Get_Uid; -- ------------------------------ -- Test the Get_Group operation. -- ------------------------------ procedure Test_Get_Group (T : in out Test) is Name : Name_Access; Db : Database; begin Name := Db.Get_Group (0); T.Assert (Name /= null, "Get_Group (0) returned null"); Util.Tests.Assert_Equals (T, "root", Name.all, "Invalid name returned for Get_Group (0)"); Name := Db.Get_Group (1); T.Assert (Name /= null, "Get_Group (1) returned null"); Name := Db.Get_Group (55555); T.Assert (Name = null, "Get_Group (55555) returned a non null name"); end Test_Get_Group; end Babel.Base.Users.Tests;
-- MIT License -- -- Copyright (c) 2020 Max Reznik -- -- 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. package body PB_Support.Memory_Streams is ----------- -- Clear -- ----------- procedure Clear (Self : in out Memory_Stream'Class) is begin Self.Data.Clear; Self.Read := 0; end Clear; ---------- -- Data -- ---------- function Data (Self : Memory_Stream'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin return Self.Data; end Data; ---------- -- Read -- ---------- overriding procedure Read (Self : in out Memory_Stream; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is use type Ada.Streams.Stream_Element_Offset; Count : constant Ada.Streams.Stream_Element_Offset := Ada.Streams.Stream_Element_Offset'Min (Item'Length, Self.Data.Length - Self.Read); begin for J in 1 .. Count loop Item (Item'First + J - 1) := Self.Data.Element (Self.Read + J); end loop; Last := Item'First + Count - 1; Self.Read := Self.Read + Count; end Read; ----------- -- Write -- ----------- overriding procedure Write (Self : in out Memory_Stream; Item : Ada.Streams.Stream_Element_Array) is begin Self.Data.Append (Item); end Write; ------------- -- Written -- ------------- function Written (Self : Memory_Stream'Class) return Ada.Streams.Stream_Element_Count is begin return Self.Data.Length; end Written; end PB_Support.Memory_Streams;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package body Parser is procedure Parse_Arbiter(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Cache(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_DRAM(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Dup(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_EOR(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Flash(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Flip(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Join(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Offset(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Option(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Perfect_Prefetch(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Prefetch(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_RAM(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Register(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Shift(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Split(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_SPM(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Stats(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Super(parser : in out Parser_Type; result : out Memory_Pointer) is separate; procedure Parse_Trace(parser : in out Parser_Type; result : out Memory_Pointer) is separate; type Memory_Parser_Type is record name : Unbounded_String; parser : access procedure(parser : in out Parser_Type; result : out Memory_Pointer); end record; type Memory_Parser_Array is array(Positive range <>) of Memory_Parser_Type; parser_map : constant Memory_Parser_Array := ( (To_Unbounded_String("arbiter"), Parse_Arbiter'Access), (To_Unbounded_String("cache"), Parse_Cache'Access), (To_Unbounded_String("dram"), Parse_DRAM'Access), (To_Unbounded_String("dup"), Parse_Dup'Access), (To_Unbounded_String("eor"), Parse_EOR'Access), (To_Unbounded_String("flash"), Parse_Flash'Access), (To_Unbounded_String("flip"), Parse_Flip'Access), (To_Unbounded_String("join"), Parse_Join'Access), (To_Unbounded_String("offset"), Parse_Offset'Access), (To_Unbounded_String("option"), Parse_Option'Access), (To_Unbounded_String("perfect_prefetch"), Parse_Perfect_Prefetch'Access), (To_Unbounded_String("prefetch"), Parse_Prefetch'Access), (To_Unbounded_String("ram"), Parse_RAM'Access), (To_Unbounded_String("register"), Parse_Register'Access), (To_Unbounded_String("shift"), Parse_Shift'Access), (To_Unbounded_String("split"), Parse_Split'Access), (To_Unbounded_String("spm"), Parse_SPM'Access), (To_Unbounded_String("stats"), Parse_Stats'Access), (To_Unbounded_String("super"), Parse_Super'Access), (To_Unbounded_String("trace"), Parse_Trace'Access) ); function Parse_Boolean(value : String) return Boolean is begin if value = "true" then return True; elsif value = "false" then return False; else raise Data_Error; end if; end Parse_Boolean; procedure Parse_Memory(parser : in out Parser_Type; result : out Memory_Pointer) is begin Match(parser, Open); declare name : constant String := Get_Value(parser.lexer); begin Next(parser.lexer); for i in parser_map'First .. parser_map'Last loop if parser_map(i).name = name then parser_map(i).parser(parser, result); Match(parser, Close); return; end if; end loop; Raise_Error(parser, "invalid memory type: " & name); end; end Parse_Memory; function Parse(file_name : String) return Memory_Pointer is parser : Parser_Type; result : Memory_Pointer; begin Open(parser.lexer, file_name); Parse_Memory(parser, result); Match(parser, EOF); Close(parser.lexer); return result; exception when Name_Error => return null; when Parse_Error => return null; end Parse; procedure Raise_Error(parser : in Parser_Type; msg : in String) is name : constant String := Get_File_Name(parser.lexer); line : constant String := Positive'Image(Get_Line(parser.lexer)); begin Put_Line(name & "[" & line(2 .. line'Last) & "]: error: " & msg); raise Parse_Error; end Raise_Error; function Get_Type(parser : Parser_Type) return Token_Type is begin return Get_Type(parser.lexer); end Get_Type; function Get_Value(parser : Parser_Type) return String is begin return Get_Value(parser.lexer); end Get_Value; procedure Match(parser : in out Parser_Type; token : in Token_Type) is begin if Get_Type(parser) /= token then Raise_Error(parser, "got '" & Get_Value(parser) & "' expected '" & Token_Type'Image(token) & "'"); end if; Next(parser.lexer); end Match; procedure Push_Wrapper(parser : in out Parser_Type; wrapper : in Wrapper_Pointer; count : in Positive := 1) is last : constant Natural := Natural(count); begin parser.wrappers.Append(Wrapper_Node'(wrapper, 0, last)); end Push_Wrapper; procedure Pop_Wrapper(parser : in out Parser_Type; wrapper : out Wrapper_Pointer; index : out Natural) is begin if parser.wrappers.Is_Empty then Raise_Error(parser, "unexpected join"); end if; declare node : Wrapper_Node := parser.wrappers.Last_Element; begin wrapper := node.wrapper; index := node.current; node.current := node.current + 1; if node.current = node.last then Delete_Wrapper(parser); else parser.wrappers.Replace_Element(parser.wrappers.Last, node); end if; end; end Pop_Wrapper; procedure Delete_Wrapper(parser : in out Parser_Type) is begin parser.wrappers.Delete_Last; end Delete_Wrapper; end Parser;
-- Swagger Petstore -- This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. -- ------------ EDIT NOTE ------------ -- This file was generated with swagger-codegen. You can modify it to implement -- the server. After you modify this file, you should add the following line -- to the .swagger-codegen-ignore file: -- -- src/IO.OpenAPI-servers.ads -- -- Then, you can drop this edit note comment. -- ------------ EDIT NOTE ------------ with IO.OpenAPI.Model.Default; with Swagger.Servers; with IO.OpenAPI.Api.Models; with IO.OpenAPI.Api.Skeletons; package IO.OpenAPI.Api.Servers is use IO.OpenAPI.Api.Models; type Server_Type is limited new IO.OpenAPI.Api.Skeletons.Server_Type with null record; -- Add a new pet to the store overriding procedure addPet (Server : in out Server_Type; body : in object; Context : in out Swagger.Servers.Context_Type); -- Update an existing pet overriding procedure updatePet (Server : in out Server_Type; body : in object; Context : in out Swagger.Servers.Context_Type); -- Finds Pets by status overriding procedure findPetsByStatus (Server : in out Server_Type; status : in array; Result : out array; Context : in out Swagger.Servers.Context_Type); -- Finds Pets by tags overriding procedure findPetsByTags (Server : in out Server_Type; tags : in array; Result : out array; Context : in out Swagger.Servers.Context_Type); -- Find pet by ID overriding procedure getPetById (Server : in out Server_Type; petId : in integer; Result : out Pet; Context : in out Swagger.Servers.Context_Type); -- Updates a pet in the store with form data overriding procedure updatePetWithForm (Server : in out Server_Type; petId : in integer; body : in object; Context : in out Swagger.Servers.Context_Type); -- Deletes a pet overriding procedure deletePet (Server : in out Server_Type; petId : in integer; api_key : in string; Context : in out Swagger.Servers.Context_Type); -- uploads an image overriding procedure uploadFile (Server : in out Server_Type; petId : in integer; body : in string; Result : out ApiResponse; Context : in out Swagger.Servers.Context_Type); -- Returns pet inventories by status overriding procedure getInventory (Server : in out Server_Type ; Result : out object; Context : in out Swagger.Servers.Context_Type); -- Place an order for a pet overriding procedure placeOrder (Server : in out Server_Type; body : in object; Result : out Order; Context : in out Swagger.Servers.Context_Type); -- Find purchase order by ID overriding procedure getOrderById (Server : in out Server_Type; orderId : in integer; Result : out Order; Context : in out Swagger.Servers.Context_Type); -- Delete purchase order by ID overriding procedure deleteOrder (Server : in out Server_Type; orderId : in integer; Context : in out Swagger.Servers.Context_Type); -- Create user overriding procedure createUser (Server : in out Server_Type; body : in object; Context : in out Swagger.Servers.Context_Type); -- Creates list of users with given input array overriding procedure createUsersWithArrayInput (Server : in out Server_Type; body : in array; Context : in out Swagger.Servers.Context_Type); -- Creates list of users with given input array overriding procedure createUsersWithListInput (Server : in out Server_Type; body : in array; Context : in out Swagger.Servers.Context_Type); -- Logs user into the system overriding procedure loginUser (Server : in out Server_Type; username : in string; password : in string; Result : out string; Context : in out Swagger.Servers.Context_Type); -- Logs out current logged in user session overriding procedure logoutUser (Server : in out Server_Type ; Context : in out Swagger.Servers.Context_Type); -- Get user by user name overriding procedure getUserByName (Server : in out Server_Type; username : in string; Result : out User; Context : in out Swagger.Servers.Context_Type); -- Updated user overriding procedure updateUser (Server : in out Server_Type; username : in string; body : in object; Context : in out Swagger.Servers.Context_Type); -- Delete user overriding procedure deleteUser (Server : in out Server_Type; username : in string; Context : in out Swagger.Servers.Context_Type); package Server_Impl is new IO.OpenAPI.Api.Skeletons.Shared_Instance (Server_Type); end IO.OpenAPI.Api.Servers;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with x86_64_linux_gnu_bits_types_h; package x86_64_linux_gnu_bits_stdint_uintn_h is -- Define uintN_t types. -- Copyright (C) 2017-2018 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <http://www.gnu.org/licenses/>. subtype uint8_t is x86_64_linux_gnu_bits_types_h.uu_uint8_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:24 subtype uint16_t is x86_64_linux_gnu_bits_types_h.uu_uint16_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:25 subtype uint32_t is x86_64_linux_gnu_bits_types_h.uu_uint32_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:26 subtype uint64_t is x86_64_linux_gnu_bits_types_h.uu_uint64_t; -- /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:27 end x86_64_linux_gnu_bits_stdint_uintn_h;
<?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_Loop_1_pr</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>in_axi_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_axi_stream_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>6</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>24</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>8</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>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>36</item> <item>37</item> <item>38</item> <item>39</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</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>40</item> <item>42</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>10</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>21</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>43</item> <item>45</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>46</item> <item>47</item> <item>48</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>16</id> <name>empty_20</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>554</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>33</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>26</item> <item>27</item> <item>28</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&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/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>554</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>29</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>18</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&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/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>554</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>31</item> <item>32</item> <item>33</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>552</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&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/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>552</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>34</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_14"> <Value> <Obj> <type>2</type> <id>35</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_15"> <Value> <Obj> <type>2</type> <id>41</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>2073600</content> </item> <item class_id_reference="16" object_id="_16"> <Value> <Obj> <type>2</type> <id>44</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>1</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="_17"> <Obj> <type>3</type> <id>7</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>6</item> </node_objs> </item> <item class_id_reference="18" object_id="_18"> <Obj> <type>3</type> <id>12</id> <name>.preheader.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>11</item> </node_objs> </item> <item class_id_reference="18" object_id="_19"> <Obj> <type>3</type> <id>21</id> <name>.preheader4.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>18</item> <item>20</item> </node_objs> </item> <item class_id_reference="18" object_id="_20"> <Obj> <type>3</type> <id>23</id> <name>.critedge.exitStub</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>22</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_21"> <id>24</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_22"> <id>27</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_23"> <id>28</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_24"> <id>29</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_25"> <id>32</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_26"> <id>33</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_27"> <id>34</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_28"> <id>36</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_29"> <id>37</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_30"> <id>38</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_31"> <id>39</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_32"> <id>40</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_33"> <id>42</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_34"> <id>43</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_35"> <id>45</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_36"> <id>46</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_37"> <id>47</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_38"> <id>48</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_39"> <id>108</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_40"> <id>109</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_41"> <id>110</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_42"> <id>111</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>12</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="_43"> <mId>1</mId> <mTag>linebuffer_Loop_1_pr</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>2073602</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_44"> <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>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_45"> <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>12</item> <item>21</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>2073600</mMinTripCount> <mMaxTripCount>2073600</mMaxTripCount> <mMinLatency>2073600</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_46"> <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>23</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_47"> <states class_id="25" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_48"> <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="_49"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_50"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_51"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_52"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_53"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_54"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_55"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_56"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_57"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_58"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_59"> <id>3</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_60"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_61"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_62"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_63"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_64"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_65"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_66"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_67"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_68"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>12</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="_69"> <inState>3</inState> <outState>2</outState> <condition> <id>20</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_70"> <inState>2</inState> <outState>4</outState> <condition> <id>19</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>9</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_71"> <inState>2</inState> <outState>3</outState> <condition> <id>21</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>9</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>6</first> <second class_id="39" tracking_level="0" version="0"> <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>11</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>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>7</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_72"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>12</item> <item>21</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>56</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>67</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>exitcond_flatten_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_next_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_phi_fu_67</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_value_V_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_17_write_fu_56</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>empty_20_read_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>4</count> <item_version>0</item_version> <item> <first>63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>90</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>4</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_90</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_next_reg_94</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_reg_63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_value_V_reg_99</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>63</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>indvar_flatten_reg_63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>in_axi_stream_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> <item> <first>in_axi_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> <item> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="53" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>3</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- { dg-do compile } -- { dg-options "-gnatws -fdump-tree-gimple" } procedure Alignment6 is type MY_REC is record A1 : INTEGER range -3 .. 3 ; -- symmetric A2 : BOOLEAN ; A3 : INTEGER range 0 .. 15 ; -- positive A4 : INTEGER range 10 .. 100 ; -- arbitrary A5 : BOOLEAN ; --5 end record ; for MY_REC use record A1 at 0 range 0 .. 2 ; A2 at 0 range 3 .. 3 ; A3 at 0 range 4 .. 7 ; A4 at 0 range 8 .. 15 ; A5 at 0 range 16 .. 16 ; end record ; A_REC : MY_REC := ( 1 , TRUE , 7 , 11 , FALSE ); B_REC : MY_REC; begin B_REC := A_REC; end; -- { dg-final { scan-tree-dump-not "VIEW_CONVERT_EXPR" "gimple" } }
-- This spec has been automatically generated from STM32L4x1.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.SDIO is pragma Preelaborate; --------------- -- Registers -- --------------- subtype POWER_PWRCTRL_Field is HAL.UInt2; -- power control register type POWER_Register is record -- PWRCTRL PWRCTRL : POWER_PWRCTRL_Field := 16#0#; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for POWER_Register use record PWRCTRL at 0 range 0 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype CLKCR_CLKDIV_Field is HAL.UInt8; subtype CLKCR_WIDBUS_Field is HAL.UInt2; -- SDI clock control register type CLKCR_Register is record -- Clock divide factor CLKDIV : CLKCR_CLKDIV_Field := 16#0#; -- Clock enable bit CLKEN : Boolean := False; -- Power saving configuration bit PWRSAV : Boolean := False; -- Clock divider bypass enable bit BYPASS : Boolean := False; -- Wide bus mode enable bit WIDBUS : CLKCR_WIDBUS_Field := 16#0#; -- SDIO_CK dephasing selection bit NEGEDGE : Boolean := False; -- HW Flow Control enable HWFC_EN : Boolean := False; -- unspecified Reserved_15_31 : HAL.UInt17 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CLKCR_Register use record CLKDIV at 0 range 0 .. 7; CLKEN at 0 range 8 .. 8; PWRSAV at 0 range 9 .. 9; BYPASS at 0 range 10 .. 10; WIDBUS at 0 range 11 .. 12; NEGEDGE at 0 range 13 .. 13; HWFC_EN at 0 range 14 .. 14; Reserved_15_31 at 0 range 15 .. 31; end record; subtype CMD_CMDINDEX_Field is HAL.UInt6; subtype CMD_WAITRESP_Field is HAL.UInt2; -- command register type CMD_Register is record -- Command index CMDINDEX : CMD_CMDINDEX_Field := 16#0#; -- Wait for response bits WAITRESP : CMD_WAITRESP_Field := 16#0#; -- CPSM waits for interrupt request WAITINT : Boolean := False; -- CPSM Waits for ends of data transfer (CmdPend internal signal) WAITPEND : Boolean := False; -- Command path state machine (CPSM) Enable bit CPSMEN : Boolean := False; -- SD I/O suspend command SDIOSuspend : Boolean := False; -- Enable CMD completion ENCMDcompl : Boolean := False; -- not Interrupt Enable nIEN : Boolean := False; -- CE-ATA command CE_ATACMD : Boolean := False; -- unspecified Reserved_15_31 : HAL.UInt17 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CMD_Register use record CMDINDEX at 0 range 0 .. 5; WAITRESP at 0 range 6 .. 7; WAITINT at 0 range 8 .. 8; WAITPEND at 0 range 9 .. 9; CPSMEN at 0 range 10 .. 10; SDIOSuspend at 0 range 11 .. 11; ENCMDcompl at 0 range 12 .. 12; nIEN at 0 range 13 .. 13; CE_ATACMD at 0 range 14 .. 14; Reserved_15_31 at 0 range 15 .. 31; end record; subtype RESPCMD_RESPCMD_Field is HAL.UInt6; -- command response register type RESPCMD_Register is record -- Read-only. Response command index RESPCMD : RESPCMD_RESPCMD_Field; -- unspecified Reserved_6_31 : HAL.UInt26; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RESPCMD_Register use record RESPCMD at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype DLEN_DATALENGTH_Field is HAL.UInt25; -- data length register type DLEN_Register is record -- Data length value DATALENGTH : DLEN_DATALENGTH_Field := 16#0#; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DLEN_Register use record DATALENGTH at 0 range 0 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype DCTRL_DBLOCKSIZE_Field is HAL.UInt4; -- data control register type DCTRL_Register is record -- DTEN DTEN : Boolean := False; -- Data transfer direction selection DTDIR : Boolean := False; -- Data transfer mode selection 1: Stream or SDIO multibyte data -- transfer DTMODE : Boolean := False; -- DMA enable bit DMAEN : Boolean := False; -- Data block size DBLOCKSIZE : DCTRL_DBLOCKSIZE_Field := 16#0#; -- Read wait start RWSTART : Boolean := False; -- Read wait stop RWSTOP : Boolean := False; -- Read wait mode RWMOD : Boolean := False; -- SD I/O enable functions SDIOEN : Boolean := False; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DCTRL_Register use record DTEN at 0 range 0 .. 0; DTDIR at 0 range 1 .. 1; DTMODE at 0 range 2 .. 2; DMAEN at 0 range 3 .. 3; DBLOCKSIZE at 0 range 4 .. 7; RWSTART at 0 range 8 .. 8; RWSTOP at 0 range 9 .. 9; RWMOD at 0 range 10 .. 10; SDIOEN at 0 range 11 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DCOUNT_DATACOUNT_Field is HAL.UInt25; -- data counter register type DCOUNT_Register is record -- Read-only. Data count value DATACOUNT : DCOUNT_DATACOUNT_Field; -- unspecified Reserved_25_31 : HAL.UInt7; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DCOUNT_Register use record DATACOUNT at 0 range 0 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; -- status register type STA_Register is record -- Read-only. Command response received (CRC check failed) CCRCFAIL : Boolean; -- Read-only. Data block sent/received (CRC check failed) DCRCFAIL : Boolean; -- Read-only. Command response timeout CTIMEOUT : Boolean; -- Read-only. Data timeout DTIMEOUT : Boolean; -- Read-only. Transmit FIFO underrun error TXUNDERR : Boolean; -- Read-only. Received FIFO overrun error RXOVERR : Boolean; -- Read-only. Command response received (CRC check passed) CMDREND : Boolean; -- Read-only. Command sent (no response required) CMDSENT : Boolean; -- Read-only. Data end (data counter, SDIDCOUNT, is zero) DATAEND : Boolean; -- Read-only. Start bit not detected on all data signals in wide bus -- mode STBITERR : Boolean; -- Read-only. Data block sent/received (CRC check passed) DBCKEND : Boolean; -- Read-only. Command transfer in progress CMDACT : Boolean; -- Read-only. Data transmit in progress TXACT : Boolean; -- Read-only. Data receive in progress RXACT : Boolean; -- Read-only. Transmit FIFO half empty: at least 8 words can be written -- into the FIFO TXFIFOHE : Boolean; -- Read-only. Receive FIFO half full: there are at least 8 words in the -- FIFO RXFIFOHF : Boolean; -- Read-only. Transmit FIFO full TXFIFOF : Boolean; -- Read-only. Receive FIFO full RXFIFOF : Boolean; -- Read-only. Transmit FIFO empty TXFIFOE : Boolean; -- Read-only. Receive FIFO empty RXFIFOE : Boolean; -- Read-only. Data available in transmit FIFO TXDAVL : Boolean; -- Read-only. Data available in receive FIFO RXDAVL : Boolean; -- Read-only. SDIO interrupt received SDIOIT : Boolean; -- Read-only. CE-ATA command completion signal received for CMD61 CEATAEND : Boolean; -- unspecified Reserved_24_31 : HAL.UInt8; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for STA_Register use record CCRCFAIL at 0 range 0 .. 0; DCRCFAIL at 0 range 1 .. 1; CTIMEOUT at 0 range 2 .. 2; DTIMEOUT at 0 range 3 .. 3; TXUNDERR at 0 range 4 .. 4; RXOVERR at 0 range 5 .. 5; CMDREND at 0 range 6 .. 6; CMDSENT at 0 range 7 .. 7; DATAEND at 0 range 8 .. 8; STBITERR at 0 range 9 .. 9; DBCKEND at 0 range 10 .. 10; CMDACT at 0 range 11 .. 11; TXACT at 0 range 12 .. 12; RXACT at 0 range 13 .. 13; TXFIFOHE at 0 range 14 .. 14; RXFIFOHF at 0 range 15 .. 15; TXFIFOF at 0 range 16 .. 16; RXFIFOF at 0 range 17 .. 17; TXFIFOE at 0 range 18 .. 18; RXFIFOE at 0 range 19 .. 19; TXDAVL at 0 range 20 .. 20; RXDAVL at 0 range 21 .. 21; SDIOIT at 0 range 22 .. 22; CEATAEND at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- interrupt clear register type ICR_Register is record -- CCRCFAIL flag clear bit CCRCFAILC : Boolean := False; -- DCRCFAIL flag clear bit DCRCFAILC : Boolean := False; -- CTIMEOUT flag clear bit CTIMEOUTC : Boolean := False; -- DTIMEOUT flag clear bit DTIMEOUTC : Boolean := False; -- TXUNDERR flag clear bit TXUNDERRC : Boolean := False; -- RXOVERR flag clear bit RXOVERRC : Boolean := False; -- CMDREND flag clear bit CMDRENDC : Boolean := False; -- CMDSENT flag clear bit CMDSENTC : Boolean := False; -- DATAEND flag clear bit DATAENDC : Boolean := False; -- STBITERR flag clear bit STBITERRC : Boolean := False; -- DBCKEND flag clear bit DBCKENDC : Boolean := False; -- unspecified Reserved_11_21 : HAL.UInt11 := 16#0#; -- SDIOIT flag clear bit SDIOITC : Boolean := False; -- CEATAEND flag clear bit CEATAENDC : Boolean := False; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ICR_Register use record CCRCFAILC at 0 range 0 .. 0; DCRCFAILC at 0 range 1 .. 1; CTIMEOUTC at 0 range 2 .. 2; DTIMEOUTC at 0 range 3 .. 3; TXUNDERRC at 0 range 4 .. 4; RXOVERRC at 0 range 5 .. 5; CMDRENDC at 0 range 6 .. 6; CMDSENTC at 0 range 7 .. 7; DATAENDC at 0 range 8 .. 8; STBITERRC at 0 range 9 .. 9; DBCKENDC at 0 range 10 .. 10; Reserved_11_21 at 0 range 11 .. 21; SDIOITC at 0 range 22 .. 22; CEATAENDC at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- mask register type MASK_Register is record -- Command CRC fail interrupt enable CCRCFAILIE : Boolean := False; -- Data CRC fail interrupt enable DCRCFAILIE : Boolean := False; -- Command timeout interrupt enable CTIMEOUTIE : Boolean := False; -- Data timeout interrupt enable DTIMEOUTIE : Boolean := False; -- Tx FIFO underrun error interrupt enable TXUNDERRIE : Boolean := False; -- Rx FIFO overrun error interrupt enable RXOVERRIE : Boolean := False; -- Command response received interrupt enable CMDRENDIE : Boolean := False; -- Command sent interrupt enable CMDSENTIE : Boolean := False; -- Data end interrupt enable DATAENDIE : Boolean := False; -- Start bit error interrupt enable STBITERRIE : Boolean := False; -- Data block end interrupt enable DBCKENDIE : Boolean := False; -- Command acting interrupt enable CMDACTIE : Boolean := False; -- Data transmit acting interrupt enable TXACTIE : Boolean := False; -- Data receive acting interrupt enable RXACTIE : Boolean := False; -- Tx FIFO half empty interrupt enable TXFIFOHEIE : Boolean := False; -- Rx FIFO half full interrupt enable RXFIFOHFIE : Boolean := False; -- Tx FIFO full interrupt enable TXFIFOFIE : Boolean := False; -- Rx FIFO full interrupt enable RXFIFOFIE : Boolean := False; -- Tx FIFO empty interrupt enable TXFIFOEIE : Boolean := False; -- Rx FIFO empty interrupt enable RXFIFOEIE : Boolean := False; -- Data available in Tx FIFO interrupt enable TXDAVLIE : Boolean := False; -- Data available in Rx FIFO interrupt enable RXDAVLIE : Boolean := False; -- SDIO mode interrupt received interrupt enable SDIOITIE : Boolean := False; -- CE-ATA command completion signal received interrupt enable CEATAENDIE : Boolean := False; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for MASK_Register use record CCRCFAILIE at 0 range 0 .. 0; DCRCFAILIE at 0 range 1 .. 1; CTIMEOUTIE at 0 range 2 .. 2; DTIMEOUTIE at 0 range 3 .. 3; TXUNDERRIE at 0 range 4 .. 4; RXOVERRIE at 0 range 5 .. 5; CMDRENDIE at 0 range 6 .. 6; CMDSENTIE at 0 range 7 .. 7; DATAENDIE at 0 range 8 .. 8; STBITERRIE at 0 range 9 .. 9; DBCKENDIE at 0 range 10 .. 10; CMDACTIE at 0 range 11 .. 11; TXACTIE at 0 range 12 .. 12; RXACTIE at 0 range 13 .. 13; TXFIFOHEIE at 0 range 14 .. 14; RXFIFOHFIE at 0 range 15 .. 15; TXFIFOFIE at 0 range 16 .. 16; RXFIFOFIE at 0 range 17 .. 17; TXFIFOEIE at 0 range 18 .. 18; RXFIFOEIE at 0 range 19 .. 19; TXDAVLIE at 0 range 20 .. 20; RXDAVLIE at 0 range 21 .. 21; SDIOITIE at 0 range 22 .. 22; CEATAENDIE at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype FIFOCNT_FIFOCOUNT_Field is HAL.UInt24; -- FIFO counter register type FIFOCNT_Register is record -- Read-only. Remaining number of words to be written to or read from -- the FIFO FIFOCOUNT : FIFOCNT_FIFOCOUNT_Field; -- unspecified Reserved_24_31 : HAL.UInt8; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOCNT_Register use record FIFOCOUNT at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Secure digital input/output interface type SDMMC_Peripheral is record -- power control register POWER : aliased POWER_Register; -- SDI clock control register CLKCR : aliased CLKCR_Register; -- argument register ARG : aliased HAL.UInt32; -- command register CMD : aliased CMD_Register; -- command response register RESPCMD : aliased RESPCMD_Register; -- response 1..4 register RESP1 : aliased HAL.UInt32; -- response 1..4 register RESP2 : aliased HAL.UInt32; -- response 1..4 register RESP3 : aliased HAL.UInt32; -- response 1..4 register RESP4 : aliased HAL.UInt32; -- data timer register DTIMER : aliased HAL.UInt32; -- data length register DLEN : aliased DLEN_Register; -- data control register DCTRL : aliased DCTRL_Register; -- data counter register DCOUNT : aliased DCOUNT_Register; -- status register STA : aliased STA_Register; -- interrupt clear register ICR : aliased ICR_Register; -- mask register MASK : aliased MASK_Register; -- FIFO counter register FIFOCNT : aliased FIFOCNT_Register; -- data FIFO register FIFO : aliased HAL.UInt32; end record with Volatile; for SDMMC_Peripheral use record POWER at 16#0# range 0 .. 31; CLKCR at 16#4# range 0 .. 31; ARG at 16#8# range 0 .. 31; CMD at 16#C# range 0 .. 31; RESPCMD at 16#10# range 0 .. 31; RESP1 at 16#14# range 0 .. 31; RESP2 at 16#18# range 0 .. 31; RESP3 at 16#1C# range 0 .. 31; RESP4 at 16#20# range 0 .. 31; DTIMER at 16#24# range 0 .. 31; DLEN at 16#28# range 0 .. 31; DCTRL at 16#2C# range 0 .. 31; DCOUNT at 16#30# range 0 .. 31; STA at 16#34# range 0 .. 31; ICR at 16#38# range 0 .. 31; MASK at 16#3C# range 0 .. 31; FIFOCNT at 16#48# range 0 .. 31; FIFO at 16#80# range 0 .. 31; end record; -- Secure digital input/output interface SDMMC_Periph : aliased SDMMC_Peripheral with Import, Address => System'To_Address (16#40012800#); end STM32_SVD.SDIO;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package umingw_h is USE_u_u_UUIDOF : constant := 0; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:83 WINVER : constant := 16#0502#; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:248 subtype size_t is unsigned; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:398 subtype ssize_t is int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:408 subtype intptr_t is int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:420 subtype uintptr_t is unsigned; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:433 subtype ptrdiff_t is int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:446 subtype wint_t is unsigned_short; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:462 subtype wctype_t is unsigned_short; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:463 subtype errno_t is int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:482 subtype uu_time32_t is long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:487 subtype uu_time64_t is Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:492 subtype time_t is uu_time32_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/_mingw.h:498 end umingw_h;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2017 onox <denkpadje@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. package Orka.Containers is pragma Pure; end Orka.Containers;
-- This spec has been automatically generated from STM32L4x6.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.OPAMP is pragma Preelaborate; --------------- -- Registers -- --------------- subtype OPAMP1_CSR_OPAMODE_Field is HAL.UInt2; subtype OPAMP1_CSR_PGA_GAIN_Field is HAL.UInt2; subtype OPAMP1_CSR_VM_SEL_Field is HAL.UInt2; -- OPAMP1 control/status register type OPAMP1_CSR_Register is record -- Operational amplifier Enable OPAEN : Boolean := False; -- Operational amplifier Low Power Mode OPALPM : Boolean := False; -- Operational amplifier PGA mode OPAMODE : OPAMP1_CSR_OPAMODE_Field := 16#0#; -- Operational amplifier Programmable amplifier gain value PGA_GAIN : OPAMP1_CSR_PGA_GAIN_Field := 16#0#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Inverting input selection VM_SEL : OPAMP1_CSR_VM_SEL_Field := 16#0#; -- Non inverted input selection VP_SEL : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- Calibration mode enabled CALON : Boolean := False; -- Calibration selection CALSEL : Boolean := False; -- allows to switch from AOP offset trimmed values to AOP offset USERTRIM : Boolean := False; -- Operational amplifier calibration output CALOUT : Boolean := False; -- unspecified Reserved_16_30 : HAL.UInt15 := 16#0#; -- Operational amplifier power supply range for stability OPA_RANGE : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP1_CSR_Register use record OPAEN at 0 range 0 .. 0; OPALPM at 0 range 1 .. 1; OPAMODE at 0 range 2 .. 3; PGA_GAIN at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; VM_SEL at 0 range 8 .. 9; VP_SEL at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CALON at 0 range 12 .. 12; CALSEL at 0 range 13 .. 13; USERTRIM at 0 range 14 .. 14; CALOUT at 0 range 15 .. 15; Reserved_16_30 at 0 range 16 .. 30; OPA_RANGE at 0 range 31 .. 31; end record; subtype OPAMP1_OTR_TRIMOFFSETN_Field is HAL.UInt5; subtype OPAMP1_OTR_TRIMOFFSETP_Field is HAL.UInt5; -- OPAMP1 offset trimming register in normal mode type OPAMP1_OTR_Register is record -- Trim for NMOS differential pairs TRIMOFFSETN : OPAMP1_OTR_TRIMOFFSETN_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Trim for PMOS differential pairs TRIMOFFSETP : OPAMP1_OTR_TRIMOFFSETP_Field := 16#0#; -- unspecified Reserved_13_31 : HAL.UInt19 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP1_OTR_Register use record TRIMOFFSETN at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; TRIMOFFSETP at 0 range 8 .. 12; Reserved_13_31 at 0 range 13 .. 31; end record; subtype OPAMP1_LPOTR_TRIMLPOFFSETN_Field is HAL.UInt5; subtype OPAMP1_LPOTR_TRIMLPOFFSETP_Field is HAL.UInt5; -- OPAMP1 offset trimming register in low-power mode type OPAMP1_LPOTR_Register is record -- Trim for NMOS differential pairs TRIMLPOFFSETN : OPAMP1_LPOTR_TRIMLPOFFSETN_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Trim for PMOS differential pairs TRIMLPOFFSETP : OPAMP1_LPOTR_TRIMLPOFFSETP_Field := 16#0#; -- unspecified Reserved_13_31 : HAL.UInt19 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP1_LPOTR_Register use record TRIMLPOFFSETN at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; TRIMLPOFFSETP at 0 range 8 .. 12; Reserved_13_31 at 0 range 13 .. 31; end record; subtype OPAMP2_CSR_OPAMODE_Field is HAL.UInt2; subtype OPAMP2_CSR_PGA_GAIN_Field is HAL.UInt2; subtype OPAMP2_CSR_VM_SEL_Field is HAL.UInt2; -- OPAMP2 control/status register type OPAMP2_CSR_Register is record -- Operational amplifier Enable OPAEN : Boolean := False; -- Operational amplifier Low Power Mode OPALPM : Boolean := False; -- Operational amplifier PGA mode OPAMODE : OPAMP2_CSR_OPAMODE_Field := 16#0#; -- Operational amplifier Programmable amplifier gain value PGA_GAIN : OPAMP2_CSR_PGA_GAIN_Field := 16#0#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Inverting input selection VM_SEL : OPAMP2_CSR_VM_SEL_Field := 16#0#; -- Non inverted input selection VP_SEL : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- Calibration mode enabled CALON : Boolean := False; -- Calibration selection CALSEL : Boolean := False; -- allows to switch from AOP offset trimmed values to AOP offset USERTRIM : Boolean := False; -- Operational amplifier calibration output CALOUT : Boolean := False; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP2_CSR_Register use record OPAEN at 0 range 0 .. 0; OPALPM at 0 range 1 .. 1; OPAMODE at 0 range 2 .. 3; PGA_GAIN at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; VM_SEL at 0 range 8 .. 9; VP_SEL at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CALON at 0 range 12 .. 12; CALSEL at 0 range 13 .. 13; USERTRIM at 0 range 14 .. 14; CALOUT at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype OPAMP2_OTR_TRIMOFFSETN_Field is HAL.UInt5; subtype OPAMP2_OTR_TRIMOFFSETP_Field is HAL.UInt5; -- OPAMP2 offset trimming register in normal mode type OPAMP2_OTR_Register is record -- Trim for NMOS differential pairs TRIMOFFSETN : OPAMP2_OTR_TRIMOFFSETN_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Trim for PMOS differential pairs TRIMOFFSETP : OPAMP2_OTR_TRIMOFFSETP_Field := 16#0#; -- unspecified Reserved_13_31 : HAL.UInt19 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP2_OTR_Register use record TRIMOFFSETN at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; TRIMOFFSETP at 0 range 8 .. 12; Reserved_13_31 at 0 range 13 .. 31; end record; subtype OPAMP2_LPOTR_TRIMLPOFFSETN_Field is HAL.UInt5; subtype OPAMP2_LPOTR_TRIMLPOFFSETP_Field is HAL.UInt5; -- OPAMP2 offset trimming register in low-power mode type OPAMP2_LPOTR_Register is record -- Trim for NMOS differential pairs TRIMLPOFFSETN : OPAMP2_LPOTR_TRIMLPOFFSETN_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Trim for PMOS differential pairs TRIMLPOFFSETP : OPAMP2_LPOTR_TRIMLPOFFSETP_Field := 16#0#; -- unspecified Reserved_13_31 : HAL.UInt19 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPAMP2_LPOTR_Register use record TRIMLPOFFSETN at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; TRIMLPOFFSETP at 0 range 8 .. 12; Reserved_13_31 at 0 range 13 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Operational amplifiers type OPAMP_Peripheral is record -- OPAMP1 control/status register OPAMP1_CSR : aliased OPAMP1_CSR_Register; -- OPAMP1 offset trimming register in normal mode OPAMP1_OTR : aliased OPAMP1_OTR_Register; -- OPAMP1 offset trimming register in low-power mode OPAMP1_LPOTR : aliased OPAMP1_LPOTR_Register; -- OPAMP2 control/status register OPAMP2_CSR : aliased OPAMP2_CSR_Register; -- OPAMP2 offset trimming register in normal mode OPAMP2_OTR : aliased OPAMP2_OTR_Register; -- OPAMP2 offset trimming register in low-power mode OPAMP2_LPOTR : aliased OPAMP2_LPOTR_Register; end record with Volatile; for OPAMP_Peripheral use record OPAMP1_CSR at 16#0# range 0 .. 31; OPAMP1_OTR at 16#4# range 0 .. 31; OPAMP1_LPOTR at 16#8# range 0 .. 31; OPAMP2_CSR at 16#10# range 0 .. 31; OPAMP2_OTR at 16#14# range 0 .. 31; OPAMP2_LPOTR at 16#18# range 0 .. 31; end record; -- Operational amplifiers OPAMP_Periph : aliased OPAMP_Peripheral with Import, Address => System'To_Address (16#40007800#); end STM32_SVD.OPAMP;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2019, 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 STM32.I2C; use STM32.I2C; with STM32.Setup; package body Feather_STM32F405.I2C is Init_Done : Boolean := False; Device : STM32.I2C.I2C_Port renames STM32.Device.I2C_1; ----------------- -- Initialized -- ----------------- function Initialized return Boolean is (Init_Done); ---------------- -- Initialize -- ---------------- procedure Initialize (Clock_Speed : HAL.UInt32) is begin STM32.Setup.Setup_I2C_Master (Port => Device, SDA => Feather_STM32F405.SDA, SCL => Feather_STM32F405.SCL, SDA_AF => STM32.Device.GPIO_AF_I2C1_4, SCL_AF => STM32.Device.GPIO_AF_I2C1_4, Clock_Speed => Clock_Speed); Init_Done := True; end Initialize; ---------------- -- Controller -- ---------------- function Controller return not null Any_I2C_Port is (Device'Access); end Feather_STM32F405.I2C;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . I N T E G E R _ A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO.Generic_Aux; use Ada.Text_IO.Generic_Aux; with System.Img_BIU; use System.Img_BIU; with System.Img_Int; use System.Img_Int; with System.Img_LLB; use System.Img_LLB; with System.Img_LLI; use System.Img_LLI; with System.Img_LLW; use System.Img_LLW; with System.Img_WIU; use System.Img_WIU; with System.Val_Int; use System.Val_Int; with System.Val_LLI; use System.Val_LLI; package body Ada.Text_IO.Integer_Aux is ----------------------- -- Local Subprograms -- ----------------------- procedure Load_Integer (File : File_Type; Buf : out String; Ptr : in out Natural); -- This is an auxiliary routine that is used to load a possibly signed -- integer literal value from the input file into Buf, starting at Ptr + 1. -- On return, Ptr is set to the last character stored. ------------- -- Get_Int -- ------------- procedure Get_Int (File : File_Type; Item : out Integer; Width : Field) is Buf : String (1 .. Field'Last); Ptr : aliased Integer := 1; Stop : Integer := 0; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Integer (File, Buf, Stop); end if; Item := Scan_Integer (Buf, Ptr'Access, Stop); Check_End_Of_Field (Buf, Stop, Ptr, Width); end Get_Int; ------------- -- Get_LLI -- ------------- procedure Get_LLI (File : File_Type; Item : out Long_Long_Integer; Width : Field) is Buf : String (1 .. Field'Last); Ptr : aliased Integer := 1; Stop : Integer := 0; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Integer (File, Buf, Stop); end if; Item := Scan_Long_Long_Integer (Buf, Ptr'Access, Stop); Check_End_Of_Field (Buf, Stop, Ptr, Width); end Get_LLI; -------------- -- Gets_Int -- -------------- procedure Gets_Int (From : String; Item : out Integer; Last : out Positive) is Pos : aliased Integer; begin String_Skip (From, Pos); Item := Scan_Integer (From, Pos'Access, From'Last); Last := Pos - 1; exception when Constraint_Error => raise Data_Error; end Gets_Int; -------------- -- Gets_LLI -- -------------- procedure Gets_LLI (From : String; Item : out Long_Long_Integer; Last : out Positive) is Pos : aliased Integer; begin String_Skip (From, Pos); Item := Scan_Long_Long_Integer (From, Pos'Access, From'Last); Last := Pos - 1; exception when Constraint_Error => raise Data_Error; end Gets_LLI; ------------------ -- Load_Integer -- ------------------ procedure Load_Integer (File : File_Type; Buf : out String; Ptr : in out Natural) is Hash_Loc : Natural; Loaded : Boolean; begin Load_Skip (File); Load (File, Buf, Ptr, '+', '-'); Load_Digits (File, Buf, Ptr, Loaded); if Loaded then -- Deal with based literal (note : is ok replacement for #) Load (File, Buf, Ptr, '#', ':', Loaded); if Loaded then Hash_Loc := Ptr; Load_Extended_Digits (File, Buf, Ptr); Load (File, Buf, Ptr, Buf (Hash_Loc)); end if; -- Deal with exponent Load (File, Buf, Ptr, 'E', 'e', Loaded); if Loaded then -- Note: it is strange to allow a minus sign, since the syntax -- does not, but that is what ACVC test CE3704F, case (6) wants. Load (File, Buf, Ptr, '+', '-'); Load_Digits (File, Buf, Ptr); end if; end if; end Load_Integer; ------------- -- Put_Int -- ------------- procedure Put_Int (File : File_Type; Item : Integer; Width : Field; Base : Number_Base) is Buf : String (1 .. Integer'Max (Field'Last, Width)); Ptr : Natural := 0; begin if Base = 10 and then Width = 0 then Set_Image_Integer (Item, Buf, Ptr); elsif Base = 10 then Set_Image_Width_Integer (Item, Width, Buf, Ptr); else Set_Image_Based_Integer (Item, Base, Width, Buf, Ptr); end if; Put_Item (File, Buf (1 .. Ptr)); end Put_Int; ------------- -- Put_LLI -- ------------- procedure Put_LLI (File : File_Type; Item : Long_Long_Integer; Width : Field; Base : Number_Base) is Buf : String (1 .. Integer'Max (Field'Last, Width)); Ptr : Natural := 0; begin if Base = 10 and then Width = 0 then Set_Image_Long_Long_Integer (Item, Buf, Ptr); elsif Base = 10 then Set_Image_Width_Long_Long_Integer (Item, Width, Buf, Ptr); else Set_Image_Based_Long_Long_Integer (Item, Base, Width, Buf, Ptr); end if; Put_Item (File, Buf (1 .. Ptr)); end Put_LLI; -------------- -- Puts_Int -- -------------- procedure Puts_Int (To : out String; Item : Integer; Base : Number_Base) is Buf : String (1 .. Integer'Max (Field'Last, To'Length)); Ptr : Natural := 0; begin if Base = 10 then Set_Image_Width_Integer (Item, To'Length, Buf, Ptr); else Set_Image_Based_Integer (Item, Base, To'Length, Buf, Ptr); end if; if Ptr > To'Length then raise Layout_Error; else To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr); end if; end Puts_Int; -------------- -- Puts_LLI -- -------------- procedure Puts_LLI (To : out String; Item : Long_Long_Integer; Base : Number_Base) is Buf : String (1 .. Integer'Max (Field'Last, To'Length)); Ptr : Natural := 0; begin if Base = 10 then Set_Image_Width_Long_Long_Integer (Item, To'Length, Buf, Ptr); else Set_Image_Based_Long_Long_Integer (Item, Base, To'Length, Buf, Ptr); end if; if Ptr > To'Length then raise Layout_Error; else To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr); end if; end Puts_LLI; end Ada.Text_IO.Integer_Aux;
with STM32_SVD; use STM32_SVD; with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32_SVD.GPIO; use STM32_SVD.GPIO; with STM32_SVD.PWR; use STM32_SVD.PWR; with STM32_SVD.SCB; use STM32_SVD.SCB; with STM32_SVD.Flash; use STM32_SVD.Flash; with STM32GD.Startup; package body STM32GD.Board is procedure Init is begin Clocks.Init; RCC_Periph.APB1ENR.PWREN := 1; RCC_Periph.IOPENR.IOPAEN := 1; RCC_Periph.IOPENR.IOPBEN := 1; RCC_Periph.APB2ENR.USART1EN := 1; RCC_Periph.APB2ENR.SPI1EN := 1; -- RCC_Periph.APB2ENR.ADCEN := 1; RCC_Periph.APB1ENR.I2C1EN := 1; -- BUTTON.Init; -- LED.Init; -- LED2.Init; -- LED3.Init; TX.Init; RX.Init; -- RFM69_RESET.Init; -- SCL.Init; -- SDA.Init; CSN.Init; CSN.Set; SCLK.Init; MISO.Init; MOSI.Init; IRQ.Init; USART.Init; SPI.Init; RTC.Init; -- I2C.Init; end Init; procedure Power_Down is begin RCC_Periph.IOPENR := (Reserved_5_6 => 0, Reserved_8_31 => 0, others => 1); GPIOA_Periph.MODER.Val := 16#FFFF_FFFF#; GPIOB_Periph.MODER.Val := 16#FFFF_FFFF#; GPIOC_Periph.MODER.Val := 16#FFFF_FFFF#; GPIOD_Periph.MODER.Val := 16#FFFF_FFFF#; GPIOE_Periph.MODER.Val := 16#FFFF_FFFF#; GPIOH_Periph.MODER.Val := 16#FFFF_FFFF#; RCC_Periph.IOPENR := (Reserved_5_6 => 0, Reserved_8_31 => 0, others => 0); STM32_SVD.RCC.RCC_Periph.APB2ENR.USART1EN := 0; STM32_SVD.RCC.RCC_Periph.APB2ENR.SPI1EN := 0; STM32_SVD.RCC.RCC_Periph.APB2ENR.ADCEN := 0; STM32_SVD.RCC.RCC_Periph.APB1ENR.I2C1EN := 0; end Power_Down; procedure Power_Up is begin Init; end Power_Up; procedure Stop is begin Flash_Periph.ACR.SLEEP_PD := 1; PWR_Periph.CR.LPDS := 1; PWR_Periph.CR.PDDS := 0; PWR_Periph.CR.ULP := 1; SCB_Periph.SCR.SLEEPDEEP := 1; end Stop; end STM32GD.Board;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . S T A G E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 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. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ pragma Polling (Off); -- Turn off polling, we do not want ATC polling to take place during -- tasking operations. It causes infinite loops and other problems. with Ada.Exceptions; -- Used for Raise_Exception with System.Tasking.Debug; -- Used for enabling tasking facilities with gdb with System.Address_Image; -- Used for the function itself with System.Task_Primitives.Operations; -- Used for Finalize_Lock -- Enter_Task -- Write_Lock -- Unlock -- Sleep -- Wakeup -- Get_Priority -- Lock/Unlock_RTS -- New_ATCB with System.Soft_Links; -- These are procedure pointers to non-tasking routines that use task -- specific data. In the absence of tasking, these routines refer to global -- data. In the presense of tasking, they must be replaced with pointers to -- task-specific versions. Also used for Create_TSD, Destroy_TSD, -- Get_Current_Excep, Finalize_Global_List, Task_Termination, Handler. with System.Tasking.Initialization; -- Used for Remove_From_All_Tasks_List -- Defer_Abort -- Undefer_Abort -- Initialization.Poll_Base_Priority_Change -- Finalize_Attributes_Link -- Initialize_Attributes_Link pragma Elaborate_All (System.Tasking.Initialization); -- This insures that tasking is initialized if any tasks are created with System.Tasking.Utilities; -- Used for Make_Passive -- Abort_One_Task -- Abort_Tasks with System.Tasking.Queuing; -- Used for Dequeue_Head with System.Tasking.Rendezvous; -- Used for Call_Simple with System.OS_Primitives; -- Used for Delay_Modes with System.Secondary_Stack; -- Used for SS_Init with System.Storage_Elements; -- Used for Storage_Array with System.Restrictions; -- Used for Abort_Allowed with System.Standard_Library; -- Used for Exception_Trace with System.Traces.Tasking; -- Used for Send_Trace_Info with Unchecked_Deallocation; -- To recover from failure of ATCB initialization with System.Stack_Usage; package body System.Tasking.Stages is package STPO renames System.Task_Primitives.Operations; package SSL renames System.Soft_Links; package SSE renames System.Storage_Elements; package SST renames System.Secondary_Stack; use Ada.Exceptions; use Parameters; use Task_Primitives; use Task_Primitives.Operations; use Task_Info; use System.Traces; use System.Traces.Tasking; ----------------------- -- Local Subprograms -- ----------------------- procedure Free is new Unchecked_Deallocation (Ada_Task_Control_Block, Task_Id); procedure Trace_Unhandled_Exception_In_Task (Self_Id : Task_Id); -- This procedure outputs the task specific message for exception -- tracing purposes. procedure Task_Wrapper (Self_ID : Task_Id); pragma Convention (C, Task_Wrapper); -- This is the procedure that is called by the GNULL from the new context -- when a task is created. It waits for activation and then calls the task -- body procedure. When the task body procedure completes, it terminates -- the task. -- -- The Task_Wrapper's address will be provided to the underlying threads -- library as the task entry point. Convention C is what makes most sense -- for that purpose (Export C would make the function globally visible, -- and affect the link name on which GDB depends). This will in addition -- trigger an automatic stack alignment suitable for GCC's assumptions if -- need be. procedure Vulnerable_Complete_Task (Self_ID : Task_Id); -- Complete the calling task. This procedure must be called with -- abort deferred. It should only be called by Complete_Task and -- Finalizate_Global_Tasks (for the environment task). procedure Vulnerable_Complete_Master (Self_ID : Task_Id); -- Complete the current master of the calling task. This procedure -- must be called with abort deferred. It should only be called by -- Vulnerable_Complete_Task and Complete_Master. procedure Vulnerable_Complete_Activation (Self_ID : Task_Id); -- Signal to Self_ID's activator that Self_ID has completed activation. -- This procedure must be called with abort deferred. procedure Abort_Dependents (Self_ID : Task_Id); -- Abort all the direct dependents of Self at its current master -- nesting level, plus all of their dependents, transitively. -- RTS_Lock should be locked by the caller. procedure Vulnerable_Free_Task (T : Task_Id); -- Recover all runtime system storage associated with the task T. -- This should only be called after T has terminated and will no -- longer be referenced. -- -- For tasks created by an allocator that fails, due to an exception, -- it is called from Expunge_Unactivated_Tasks. -- -- It is also called from Unchecked_Deallocation, for objects that -- are or contain tasks. -- -- Different code is used at master completion, in Terminate_Dependents, -- due to a need for tighter synchronization with the master. ---------------------- -- Abort_Dependents -- ---------------------- procedure Abort_Dependents (Self_ID : Task_Id) is C : Task_Id; P : Task_Id; begin C := All_Tasks_List; while C /= null loop P := C.Common.Parent; while P /= null loop if P = Self_ID then -- ??? C is supposed to take care of its own dependents, so -- there should be no need to worry about them. Need to double -- check this. if C.Master_of_Task = Self_ID.Master_Within then Utilities.Abort_One_Task (Self_ID, C); C.Dependents_Aborted := True; end if; exit; end if; P := P.Common.Parent; end loop; C := C.Common.All_Tasks_Link; end loop; Self_ID.Dependents_Aborted := True; end Abort_Dependents; ----------------- -- Abort_Tasks -- ----------------- procedure Abort_Tasks (Tasks : Task_List) is begin Utilities.Abort_Tasks (Tasks); end Abort_Tasks; -------------------- -- Activate_Tasks -- -------------------- -- Note that locks of activator and activated task are both locked -- here. This is necessary because C.Common.State and -- Self.Common.Wait_Count have to be synchronized. This is safe from -- deadlock because the activator is always created before the activated -- task. That satisfies our in-order-of-creation ATCB locking policy. -- At one point, we may also lock the parent, if the parent is -- different from the activator. That is also consistent with the -- lock ordering policy, since the activator cannot be created -- before the parent. -- Since we are holding both the activator's lock, and Task_Wrapper -- locks that before it does anything more than initialize the -- low-level ATCB components, it should be safe to wait to update -- the counts until we see that the thread creation is successful. -- If the thread creation fails, we do need to close the entries -- of the task. The first phase, of dequeuing calls, only requires -- locking the acceptor's ATCB, but the waking up of the callers -- requires locking the caller's ATCB. We cannot safely do this -- while we are holding other locks. Therefore, the queue-clearing -- operation is done in a separate pass over the activation chain. procedure Activate_Tasks (Chain_Access : Activation_Chain_Access) is Self_ID : constant Task_Id := STPO.Self; P : Task_Id; C : Task_Id; Next_C, Last_C : Task_Id; Activate_Prio : System.Any_Priority; Success : Boolean; All_Elaborated : Boolean := True; begin -- If pragma Detect_Blocking is active, then we must check whether this -- potentially blocking operation is called from a protected action. if System.Tasking.Detect_Blocking and then Self_ID.Common.Protected_Action_Nesting > 0 then Ada.Exceptions.Raise_Exception (Program_Error'Identity, "potentially blocking operation"); end if; pragma Debug (Debug.Trace (Self_ID, "Activate_Tasks", 'C')); Initialization.Defer_Abort_Nestable (Self_ID); pragma Assert (Self_ID.Common.Wait_Count = 0); -- Lock RTS_Lock, to prevent activated tasks from racing ahead before -- we finish activating the chain. Lock_RTS; -- Check that all task bodies have been elaborated C := Chain_Access.T_ID; Last_C := null; while C /= null loop if C.Common.Elaborated /= null and then not C.Common.Elaborated.all then All_Elaborated := False; end if; -- Reverse the activation chain so that tasks are -- activated in the same order they're declared. Next_C := C.Common.Activation_Link; C.Common.Activation_Link := Last_C; Last_C := C; C := Next_C; end loop; Chain_Access.T_ID := Last_C; if not All_Elaborated then Unlock_RTS; Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Program_Error'Identity, "Some tasks have not been elaborated"); end if; -- Activate all the tasks in the chain. Creation of the thread of -- control was deferred until activation. So create it now. C := Chain_Access.T_ID; while C /= null loop if C.Common.State /= Terminated then pragma Assert (C.Common.State = Unactivated); P := C.Common.Parent; Write_Lock (P); Write_Lock (C); if C.Common.Base_Priority < Get_Priority (Self_ID) then Activate_Prio := Get_Priority (Self_ID); else Activate_Prio := C.Common.Base_Priority; end if; System.Task_Primitives.Operations.Create_Task (C, Task_Wrapper'Address, Parameters.Size_Type (C.Common.Compiler_Data.Pri_Stack_Info.Size), Activate_Prio, Success); -- There would be a race between the created task and the -- creator to do the following initialization, if we did not -- have a Lock/Unlock_RTS pair in the task wrapper to prevent -- it from racing ahead. if Success then C.Common.State := Runnable; C.Awake_Count := 1; C.Alive_Count := 1; P.Awake_Count := P.Awake_Count + 1; P.Alive_Count := P.Alive_Count + 1; if P.Common.State = Master_Completion_Sleep and then C.Master_of_Task = P.Master_Within then pragma Assert (Self_ID /= P); P.Common.Wait_Count := P.Common.Wait_Count + 1; end if; Unlock (C); Unlock (P); else -- No need to set Awake_Count, State, etc. here since the loop -- below will do that for any Unactivated tasks. Unlock (C); Unlock (P); Self_ID.Common.Activation_Failed := True; end if; end if; C := C.Common.Activation_Link; end loop; if not Single_Lock then Unlock_RTS; end if; -- Close the entries of any tasks that failed thread creation, -- and count those that have not finished activation. Write_Lock (Self_ID); Self_ID.Common.State := Activator_Sleep; C := Chain_Access.T_ID; while C /= null loop Write_Lock (C); if C.Common.State = Unactivated then C.Common.Activator := null; C.Common.State := Terminated; C.Callable := False; Utilities.Cancel_Queued_Entry_Calls (C); elsif C.Common.Activator /= null then Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); P := C.Common.Activation_Link; C.Common.Activation_Link := null; C := P; end loop; -- Wait for the activated tasks to complete activation. It is -- unsafe to abort any of these tasks until the count goes to zero. loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; Sleep (Self_ID, Activator_Sleep); end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); if Single_Lock then Unlock_RTS; end if; -- Remove the tasks from the chain Chain_Access.T_ID := null; Initialization.Undefer_Abort_Nestable (Self_ID); if Self_ID.Common.Activation_Failed then Self_ID.Common.Activation_Failed := False; Raise_Exception (Tasking_Error'Identity, "Failure during activation"); end if; end Activate_Tasks; ------------------------- -- Complete_Activation -- ------------------------- procedure Complete_Activation is Self_ID : constant Task_Id := STPO.Self; begin Initialization.Defer_Abort_Nestable (Self_ID); if Single_Lock then Lock_RTS; end if; Vulnerable_Complete_Activation (Self_ID); if Single_Lock then Unlock_RTS; end if; Initialization.Undefer_Abort_Nestable (Self_ID); -- ??? -- Why do we need to allow for nested deferral here? if Runtime_Traces then Send_Trace_Info (T_Activate); end if; end Complete_Activation; --------------------- -- Complete_Master -- --------------------- procedure Complete_Master is Self_ID : constant Task_Id := STPO.Self; begin pragma Assert (Self_ID.Deferral_Level > 0); Vulnerable_Complete_Master (Self_ID); end Complete_Master; ------------------- -- Complete_Task -- ------------------- -- See comments on Vulnerable_Complete_Task for details procedure Complete_Task is Self_ID : constant Task_Id := STPO.Self; begin pragma Assert (Self_ID.Deferral_Level > 0); Vulnerable_Complete_Task (Self_ID); -- All of our dependents have terminated. Never undefer abort again! end Complete_Task; ----------------- -- Create_Task -- ----------------- -- Compiler interface only. Do not call from within the RTS. -- This must be called to create a new task. procedure Create_Task (Priority : Integer; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; Num_Entries : Task_Entry_Index; Master : Master_Level; State : Task_Procedure_Access; Discriminants : System.Address; Elaborated : Access_Boolean; Chain : in out Activation_Chain; Task_Image : String; Created_Task : out Task_Id) is T, P : Task_Id; Self_ID : constant Task_Id := STPO.Self; Success : Boolean; Base_Priority : System.Any_Priority; Len : Natural; begin -- If pragma Detect_Blocking is active must be checked whether -- this potentially blocking operation is called from a -- protected action. if System.Tasking.Detect_Blocking and then Self_ID.Common.Protected_Action_Nesting > 0 then Ada.Exceptions.Raise_Exception (Program_Error'Identity, "potentially blocking operation"); end if; pragma Debug (Debug.Trace (Self_ID, "Create_Task", 'C')); if Priority = Unspecified_Priority then Base_Priority := Self_ID.Common.Base_Priority; else Base_Priority := System.Any_Priority (Priority); end if; -- Find parent P of new Task, via master level number P := Self_ID; if P /= null then while P.Master_of_Task >= Master loop P := P.Common.Parent; exit when P = null; end loop; end if; Initialization.Defer_Abort_Nestable (Self_ID); begin T := New_ATCB (Num_Entries); exception when others => Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Storage_Error'Identity, "Cannot allocate task"); end; -- RTS_Lock is used by Abort_Dependents and Abort_Tasks. -- Up to this point, it is possible that we may be part of -- a family of tasks that is being aborted. Lock_RTS; Write_Lock (Self_ID); -- Now, we must check that we have not been aborted. -- If so, we should give up on creating this task, -- and simply return. if not Self_ID.Callable then pragma Assert (Self_ID.Pending_ATC_Level = 0); pragma Assert (Self_ID.Pending_Action); pragma Assert (Chain.T_ID = null or else Chain.T_ID.Common.State = Unactivated); Unlock (Self_ID); Unlock_RTS; Initialization.Undefer_Abort_Nestable (Self_ID); -- ??? Should never get here pragma Assert (False); raise Standard'Abort_Signal; end if; Initialize_ATCB (Self_ID, State, Discriminants, P, Elaborated, Base_Priority, Task_Info, Size, T, Success); if not Success then Free (T); Unlock (Self_ID); Unlock_RTS; Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Storage_Error'Identity, "Failed to initialize task"); end if; T.Master_of_Task := Master; T.Master_Within := T.Master_of_Task + 1; for L in T.Entry_Calls'Range loop T.Entry_Calls (L).Self := T; T.Entry_Calls (L).Level := L; end loop; if Task_Image'Length = 0 then T.Common.Task_Image_Len := 0; else Len := 1; T.Common.Task_Image (1) := Task_Image (Task_Image'First); -- Remove unwanted blank space generated by 'Image for J in Task_Image'First + 1 .. Task_Image'Last loop if Task_Image (J) /= ' ' or else Task_Image (J - 1) /= '(' then Len := Len + 1; T.Common.Task_Image (Len) := Task_Image (J); exit when Len = T.Common.Task_Image'Last; end if; end loop; T.Common.Task_Image_Len := Len; end if; Unlock (Self_ID); Unlock_RTS; -- Create TSD as early as possible in the creation of a task, since it -- may be used by the operation of Ada code within the task. SSL.Create_TSD (T.Common.Compiler_Data); T.Common.Activation_Link := Chain.T_ID; Chain.T_ID := T; Initialization.Initialize_Attributes_Link.all (T); Created_Task := T; Initialization.Undefer_Abort_Nestable (Self_ID); if Runtime_Traces then Send_Trace_Info (T_Create, T); end if; end Create_Task; -------------------- -- Current_Master -- -------------------- function Current_Master return Master_Level is begin return STPO.Self.Master_Within; end Current_Master; ------------------ -- Enter_Master -- ------------------ procedure Enter_Master is Self_ID : constant Task_Id := STPO.Self; begin Self_ID.Master_Within := Self_ID.Master_Within + 1; end Enter_Master; ------------------------------- -- Expunge_Unactivated_Tasks -- ------------------------------- -- See procedure Close_Entries for the general case procedure Expunge_Unactivated_Tasks (Chain : in out Activation_Chain) is Self_ID : constant Task_Id := STPO.Self; C : Task_Id; Call : Entry_Call_Link; Temp : Task_Id; begin pragma Debug (Debug.Trace (Self_ID, "Expunge_Unactivated_Tasks", 'C')); Initialization.Defer_Abort_Nestable (Self_ID); -- ??? -- Experimentation has shown that abort is sometimes (but not -- always) already deferred when this is called. -- That may indicate an error. Find out what is going on C := Chain.T_ID; while C /= null loop pragma Assert (C.Common.State = Unactivated); Temp := C.Common.Activation_Link; if C.Common.State = Unactivated then Lock_RTS; Write_Lock (C); for J in 1 .. C.Entry_Num loop Queuing.Dequeue_Head (C.Entry_Queues (J), Call); pragma Assert (Call = null); end loop; Unlock (C); Initialization.Remove_From_All_Tasks_List (C); Unlock_RTS; Vulnerable_Free_Task (C); C := Temp; end if; end loop; Chain.T_ID := null; Initialization.Undefer_Abort_Nestable (Self_ID); end Expunge_Unactivated_Tasks; --------------------------- -- Finalize_Global_Tasks -- --------------------------- -- ??? -- We have a potential problem here if finalization of global -- objects does anything with signals or the timer server, since -- by that time those servers have terminated. -- It is hard to see how that would occur -- However, a better solution might be to do all this finalization -- using the global finalization chain. procedure Finalize_Global_Tasks is Self_ID : constant Task_Id := STPO.Self; Ignore : Boolean; begin if Self_ID.Deferral_Level = 0 then -- ??? -- In principle, we should be able to predict whether -- abort is already deferred here (and it should not be deferred -- yet but in practice it seems Finalize_Global_Tasks is being -- called sometimes, from RTS code for exceptions, with abort already -- deferred. Initialization.Defer_Abort_Nestable (Self_ID); -- Never undefer again!!! end if; -- This code is only executed by the environment task pragma Assert (Self_ID = Environment_Task); -- Set Environment_Task'Callable to false to notify library-level tasks -- that it is waiting for them (cf 5619-003). Self_ID.Callable := False; -- Exit level 2 master, for normal tasks in library-level packages Complete_Master; -- Force termination of "independent" library-level server tasks Lock_RTS; Abort_Dependents (Self_ID); if not Single_Lock then Unlock_RTS; end if; -- We need to explicitely wait for the task to be terminated here -- because on true concurrent system, we may end this procedure -- before the tasks are really terminated. Write_Lock (Self_ID); loop exit when Utilities.Independent_Task_Count = 0; -- We used to yield here, but this did not take into account -- low priority tasks that would cause dead lock in some cases. -- See 8126-020. Timed_Sleep (Self_ID, 0.01, System.OS_Primitives.Relative, Self_ID.Common.State, Ignore, Ignore); end loop; -- ??? On multi-processor environments, it seems that the above loop -- isn't sufficient, so we need to add an additional delay. Timed_Sleep (Self_ID, 0.01, System.OS_Primitives.Relative, Self_ID.Common.State, Ignore, Ignore); Unlock (Self_ID); if Single_Lock then Unlock_RTS; end if; -- Complete the environment task Vulnerable_Complete_Task (Self_ID); -- Handle normal task termination by the environment task, but only -- for the normal task termination. In the case of Abnormal and -- Unhandled_Exception they must have been handled before, and the -- task termination soft link must have been changed so the task -- termination routine is not executed twice. SSL.Task_Termination_Handler.all (Ada.Exceptions.Null_Occurrence); -- Finalize the global list for controlled objects if needed SSL.Finalize_Global_List.all; -- Reset the soft links to non-tasking SSL.Abort_Defer := SSL.Abort_Defer_NT'Access; SSL.Abort_Undefer := SSL.Abort_Undefer_NT'Access; SSL.Lock_Task := SSL.Task_Lock_NT'Access; SSL.Unlock_Task := SSL.Task_Unlock_NT'Access; SSL.Get_Jmpbuf_Address := SSL.Get_Jmpbuf_Address_NT'Access; SSL.Set_Jmpbuf_Address := SSL.Set_Jmpbuf_Address_NT'Access; SSL.Get_Sec_Stack_Addr := SSL.Get_Sec_Stack_Addr_NT'Access; SSL.Set_Sec_Stack_Addr := SSL.Set_Sec_Stack_Addr_NT'Access; SSL.Check_Abort_Status := SSL.Check_Abort_Status_NT'Access; SSL.Get_Stack_Info := SSL.Get_Stack_Info_NT'Access; -- Don't bother trying to finalize Initialization.Global_Task_Lock -- and System.Task_Primitives.RTS_Lock. end Finalize_Global_Tasks; --------------- -- Free_Task -- --------------- procedure Free_Task (T : Task_Id) is Self_Id : constant Task_Id := Self; begin if T.Common.State = Terminated then -- It is not safe to call Abort_Defer or Write_Lock at this stage Initialization.Task_Lock (Self_Id); Lock_RTS; Initialization.Remove_From_All_Tasks_List (T); Unlock_RTS; Initialization.Task_Unlock (Self_Id); System.Task_Primitives.Operations.Finalize_TCB (T); -- If the task is not terminated, then we simply ignore the call. This -- happens when a user program attempts an unchecked deallocation on -- a non-terminated task. else null; end if; end Free_Task; ------------------ -- Task_Wrapper -- ------------------ -- The task wrapper is a procedure that is called first for each task -- task body, and which in turn calls the compiler-generated task body -- procedure. The wrapper's main job is to do initialization for the task. -- It also has some locally declared objects that server as per-task local -- data. Task finalization is done by Complete_Task, which is called from -- an at-end handler that the compiler generates. procedure Task_Wrapper (Self_ID : Task_Id) is use type System.Parameters.Size_Type; use type SSE.Storage_Offset; use System.Standard_Library; use System.Stack_Usage; Bottom_Of_Stack : aliased Integer; Secondary_Stack_Size : constant SSE.Storage_Offset := Self_ID.Common.Compiler_Data.Pri_Stack_Info.Size * SSE.Storage_Offset (Parameters.Sec_Stack_Ratio) / 100; Secondary_Stack : aliased SSE.Storage_Array (1 .. Secondary_Stack_Size); pragma Warnings (Off); Secondary_Stack_Address : System.Address := Secondary_Stack'Address; Small_Overflow_Guard : constant := 4 * 1024; Big_Overflow_Guard : constant := 16 * 1024; Small_Stack_Limit : constant := 64 * 1024; -- ??? These three values are experimental, and seems to work on most -- platforms. They still need to be analyzed further. Size : Natural := Natural (Self_ID.Common.Compiler_Data.Pri_Stack_Info.Size); pragma Warnings (On); -- Address of secondary stack. In the fixed secondary stack case, this -- value is not modified, causing a warning, hence the bracketing with -- Warnings (Off/On). SEH_Table : aliased SSE.Storage_Array (1 .. 8); -- Structured Exception Registration table (2 words) procedure Install_SEH_Handler (Addr : System.Address); pragma Import (C, Install_SEH_Handler, "__gnat_install_SEH_handler"); -- Install the SEH (Structured Exception Handling) handler Cause : Cause_Of_Termination := Normal; -- Indicates the reason why this task terminates. Normal corresponds to -- a task terminating due to completing the last statement of its body, -- or as a result of waiting on a terminate alternative. If the task -- terminates because it is being aborted then Cause will be set to -- Abnormal. If the task terminates because of an exception raised by -- the execution of its task body, then Cause is set to -- Unhandled_Exception. EO : Exception_Occurrence; -- If the task terminates because of an exception raised by the -- execution of its task body, then EO will contain the associated -- exception occurrence. Otherwise, it will contain Null_Occurrence. TH : Termination_Handler := null; -- Pointer to the protected procedure to be executed upon task -- termination. procedure Search_Fall_Back_Handler (ID : Task_Id); -- Procedure that searches recursively a fall-back handler through the -- master relationship. If the handler is found, its pointer is stored -- in TH. procedure Search_Fall_Back_Handler (ID : Task_Id) is begin -- If there is a fall back handler, store its pointer for later -- execution. if ID.Common.Fall_Back_Handler /= null then TH := ID.Common.Fall_Back_Handler; -- Otherwise look for a fall back handler in the parent elsif ID.Common.Parent /= null then Search_Fall_Back_Handler (ID.Common.Parent); -- Otherwise, do nothing else return; end if; end Search_Fall_Back_Handler; begin pragma Assert (Self_ID.Deferral_Level = 1); -- Assume a size of the stack taken at this stage if Size < Small_Stack_Limit then Size := Size - Small_Overflow_Guard; else Size := Size - Big_Overflow_Guard; end if; if not Parameters.Sec_Stack_Dynamic then Self_ID.Common.Compiler_Data.Sec_Stack_Addr := Secondary_Stack'Address; SST.SS_Init (Secondary_Stack_Address, Integer (Secondary_Stack'Last)); Size := Size - Natural (Secondary_Stack_Size); end if; if System.Stack_Usage.Is_Enabled then STPO.Lock_RTS; Initialize_Analyzer (Self_ID.Common.Analyzer, Self_ID.Common.Task_Image (1 .. Self_ID.Common.Task_Image_Len), Size, SSE.To_Integer (Bottom_Of_Stack'Address)); STPO.Unlock_RTS; Fill_Stack (Self_ID.Common.Analyzer); end if; -- Set the guard page at the bottom of the stack. The call to unprotect -- the page is done in Terminate_Task Stack_Guard (Self_ID, True); -- Initialize low-level TCB components, that cannot be initialized -- by the creator. Enter_Task sets Self_ID.Known_Tasks_Index and -- also Self_ID.LL.Thread Enter_Task (Self_ID); -- We setup the SEH (Structured Exception Handling) handler if supported -- on the target. Install_SEH_Handler (SEH_Table'Address); -- Initialize exception occurrence Save_Occurrence (EO, Ada.Exceptions.Null_Occurrence); -- We lock RTS_Lock to wait for activator to finish activating the rest -- of the chain, so that everyone in the chain comes out in priority -- order. -- This also protects the value of -- Self_ID.Common.Activator.Common.Wait_Count. Lock_RTS; Unlock_RTS; if not System.Restrictions.Abort_Allowed then -- If Abort is not allowed, reset the deferral level since it will -- not get changed by the generated code. Keeping a default value -- of one would prevent some operations (e.g. select or delay) to -- proceed successfully. Self_ID.Deferral_Level := 0; end if; begin -- We are separating the following portion of the code in order to -- place the exception handlers in a different block. In this way, -- we do not call Set_Jmpbuf_Address (which needs Self) before we -- set Self in Enter_Task -- Call the task body procedure -- The task body is called with abort still deferred. That -- eliminates a dangerous window, for which we had to patch-up in -- Terminate_Task. -- During the expansion of the task body, we insert an RTS-call -- to Abort_Undefer, at the first point where abort should be -- allowed. Self_ID.Common.Task_Entry_Point (Self_ID.Common.Task_Arg); Initialization.Defer_Abort_Nestable (Self_ID); exception -- We can't call Terminate_Task in the exception handlers below, -- since there may be (e.g. in the case of GCC exception handling) -- clean ups associated with the exception handler that need to -- access task specific data. -- Defer abort so that this task can't be aborted while exiting when Standard'Abort_Signal => Initialization.Defer_Abort_Nestable (Self_ID); -- Update the cause that motivated the task termination so that -- the appropriate information is passed to the task termination -- procedure. Task termination as a result of waiting on a -- terminate alternative is a normal termination, although it is -- implemented using the abort mechanisms. if Self_ID.Terminate_Alternative then Cause := Normal; else Cause := Abnormal; end if; when others => -- ??? Using an E : others here causes CD2C11A to fail on -- DEC Unix, see 7925-005. Initialization.Defer_Abort_Nestable (Self_ID); -- Perform the task specific exception tracing duty. We handle -- these outputs here and not in the common notification routine -- because we need access to tasking related data and we don't -- want to drag dependencies against tasking related units in the -- the common notification units. Additionally, no trace is ever -- triggered from the common routine for the Unhandled_Raise case -- in tasks, since an exception never appears unhandled in this -- context because of this handler. if Exception_Trace = Unhandled_Raise then Trace_Unhandled_Exception_In_Task (Self_ID); end if; -- Update the cause that motivated the task termination so that -- the appropriate information is passed to the task termination -- procedure, as well as the associated Exception_Occurrence. Cause := Unhandled_Exception; Save_Occurrence (EO, SSL.Get_Current_Excep.all.all); end; -- Look for a task termination handler. This code is for all tasks but -- the environment task. The task termination code for the environment -- task is executed by SSL.Task_Termination_Handler. if Single_Lock then Lock_RTS; end if; Write_Lock (Self_ID); if Self_ID.Common.Specific_Handler /= null then TH := Self_ID.Common.Specific_Handler; else -- Look for a fall-back handler following the master relationship -- for the task. Search_Fall_Back_Handler (Self_ID); end if; Unlock (Self_ID); if Single_Lock then Unlock_RTS; end if; -- Execute the task termination handler if we found it if TH /= null then TH.all (Cause, Self_ID, EO); end if; if System.Stack_Usage.Is_Enabled then Compute_Result (Self_ID.Common.Analyzer); Report_Result (Self_ID.Common.Analyzer); end if; Terminate_Task (Self_ID); end Task_Wrapper; -------------------- -- Terminate_Task -- -------------------- -- Before we allow the thread to exit, we must clean up. This is a -- a delicate job. We must wake up the task's master, who may immediately -- try to deallocate the ATCB out from under the current task WHILE IT IS -- STILL EXECUTING. -- To avoid this, the parent task must be blocked up to the latest -- statement executed. The trouble is that we have another step that we -- also want to postpone to the very end, i.e., calling SSL.Destroy_TSD. -- We have to postpone that until the end because compiler-generated code -- is likely to try to access that data at just about any point. -- We can't call Destroy_TSD while we are holding any other locks, because -- it locks Global_Task_Lock, and our deadlock prevention rules require -- that to be the outermost lock. Our first "solution" was to just lock -- Global_Task_Lock in addition to the other locks, and force the parent to -- also lock this lock between its wakeup and its freeing of the ATCB. See -- Complete_Task for the parent-side of the code that has the matching -- calls to Task_Lock and Task_Unlock. That was not really a solution, -- since the operation Task_Unlock continued to access the ATCB after -- unlocking, after which the parent was observed to race ahead, deallocate -- the ATCB, and then reallocate it to another task. The call to -- Undefer_Abortion in Task_Unlock by the "terminated" task was overwriting -- the data of the new task that reused the ATCB! To solve this problem, we -- introduced the new operation Final_Task_Unlock. procedure Terminate_Task (Self_ID : Task_Id) is Environment_Task : constant Task_Id := STPO.Environment_Task; Master_of_Task : Integer; begin Debug.Task_Termination_Hook; if Runtime_Traces then Send_Trace_Info (T_Terminate); end if; -- Since GCC cannot allocate stack chunks efficiently without reordering -- some of the allocations, we have to handle this unexpected situation -- here. We should normally never have to call Vulnerable_Complete_Task -- here. See 6602-003 for more details. if Self_ID.Common.Activator /= null then Vulnerable_Complete_Task (Self_ID); end if; Initialization.Task_Lock (Self_ID); if Single_Lock then Lock_RTS; end if; Master_of_Task := Self_ID.Master_of_Task; -- Check if the current task is an independent task If so, decrement -- the Independent_Task_Count value. if Master_of_Task = 2 then if Single_Lock then Utilities.Independent_Task_Count := Utilities.Independent_Task_Count - 1; else Write_Lock (Environment_Task); Utilities.Independent_Task_Count := Utilities.Independent_Task_Count - 1; Unlock (Environment_Task); end if; end if; -- Unprotect the guard page if needed Stack_Guard (Self_ID, False); Utilities.Make_Passive (Self_ID, Task_Completed => True); if Single_Lock then Unlock_RTS; end if; pragma Assert (Check_Exit (Self_ID)); SSL.Destroy_TSD (Self_ID.Common.Compiler_Data); Initialization.Final_Task_Unlock (Self_ID); -- WARNING: past this point, this thread must assume that the ATCB -- has been deallocated. It should not be accessed again. if Master_of_Task > 0 then STPO.Exit_Task; end if; end Terminate_Task; ---------------- -- Terminated -- ---------------- function Terminated (T : Task_Id) return Boolean is Self_ID : constant Task_Id := STPO.Self; Result : Boolean; begin Initialization.Defer_Abort_Nestable (Self_ID); if Single_Lock then Lock_RTS; end if; Write_Lock (T); Result := T.Common.State = Terminated; Unlock (T); if Single_Lock then Unlock_RTS; end if; Initialization.Undefer_Abort_Nestable (Self_ID); return Result; end Terminated; ---------------------------------------- -- Trace_Unhandled_Exception_In_Task -- ---------------------------------------- procedure Trace_Unhandled_Exception_In_Task (Self_Id : Task_Id) is procedure To_Stderr (S : String); pragma Import (Ada, To_Stderr, "__gnat_to_stderr"); use System.Soft_Links; use System.Standard_Library; function To_Address is new Unchecked_Conversion (Task_Id, System.Address); function Tailored_Exception_Information (E : Exception_Occurrence) return String; pragma Import (Ada, Tailored_Exception_Information, "__gnat_tailored_exception_information"); Excep : constant Exception_Occurrence_Access := SSL.Get_Current_Excep.all; begin -- This procedure is called by the task outermost handler in -- Task_Wrapper below, so only once the task stack has been fully -- unwound. The common notification routine has been called at the -- raise point already. To_Stderr ("task "); if Self_Id.Common.Task_Image_Len /= 0 then To_Stderr (Self_Id.Common.Task_Image (1 .. Self_Id.Common.Task_Image_Len)); To_Stderr ("_"); end if; To_Stderr (System.Address_Image (To_Address (Self_Id))); To_Stderr (" terminated by unhandled exception"); To_Stderr ((1 => ASCII.LF)); To_Stderr (Tailored_Exception_Information (Excep.all)); end Trace_Unhandled_Exception_In_Task; ------------------------------------ -- Vulnerable_Complete_Activation -- ------------------------------------ -- As in several other places, the locks of the activator and activated -- task are both locked here. This follows our deadlock prevention lock -- ordering policy, since the activated task must be created after the -- activator. procedure Vulnerable_Complete_Activation (Self_ID : Task_Id) is Activator : constant Task_Id := Self_ID.Common.Activator; begin pragma Debug (Debug.Trace (Self_ID, "V_Complete_Activation", 'C')); Write_Lock (Activator); Write_Lock (Self_ID); pragma Assert (Self_ID.Common.Activator /= null); -- Remove dangling reference to Activator, since a task may -- outlive its activator. Self_ID.Common.Activator := null; -- Wake up the activator, if it is waiting for a chain of tasks to -- activate, and we are the last in the chain to complete activation. if Activator.Common.State = Activator_Sleep then Activator.Common.Wait_Count := Activator.Common.Wait_Count - 1; if Activator.Common.Wait_Count = 0 then Wakeup (Activator, Activator_Sleep); end if; end if; -- The activator raises a Tasking_Error if any task it is activating -- is completed before the activation is done. However, if the reason -- for the task completion is an abort, we do not raise an exception. -- See RM 9.2(5). if not Self_ID.Callable and then Self_ID.Pending_ATC_Level /= 0 then Activator.Common.Activation_Failed := True; end if; Unlock (Self_ID); Unlock (Activator); -- After the activation, active priority should be the same -- as base priority. We must unlock the Activator first, -- though, since it should not wait if we have lower priority. if Get_Priority (Self_ID) /= Self_ID.Common.Base_Priority then Write_Lock (Self_ID); Set_Priority (Self_ID, Self_ID.Common.Base_Priority); Unlock (Self_ID); end if; end Vulnerable_Complete_Activation; -------------------------------- -- Vulnerable_Complete_Master -- -------------------------------- procedure Vulnerable_Complete_Master (Self_ID : Task_Id) is C : Task_Id; P : Task_Id; CM : constant Master_Level := Self_ID.Master_Within; T : aliased Task_Id; To_Be_Freed : Task_Id; -- This is a list of ATCBs to be freed, after we have released -- all RTS locks. This is necessary because of the locking order -- rules, since the storage manager uses Global_Task_Lock. pragma Warnings (Off); function Check_Unactivated_Tasks return Boolean; pragma Warnings (On); -- Temporary error-checking code below. This is part of the checks -- added in the new run time. Call it only inside a pragma Assert. ----------------------------- -- Check_Unactivated_Tasks -- ----------------------------- function Check_Unactivated_Tasks return Boolean is begin if not Single_Lock then Lock_RTS; end if; Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Activator = Self_ID then return False; end if; if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); if C.Common.State = Unactivated then return False; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Unlock (Self_ID); if not Single_Lock then Unlock_RTS; end if; return True; end Check_Unactivated_Tasks; -- Start of processing for Vulnerable_Complete_Master begin pragma Debug (Debug.Trace (Self_ID, "V_Complete_Master", 'C')); pragma Assert (Self_ID.Common.Wait_Count = 0); pragma Assert (Self_ID.Deferral_Level > 0); -- Count how many active dependent tasks this master currently -- has, and record this in Wait_Count. -- This count should start at zero, since it is initialized to -- zero for new tasks, and the task should not exit the -- sleep-loops that use this count until the count reaches zero. Lock_RTS; Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Activator = Self_ID then pragma Assert (C.Common.State = Unactivated); Write_Lock (C); C.Common.Activator := null; C.Common.State := Terminated; C.Callable := False; Utilities.Cancel_Queued_Entry_Calls (C); Unlock (C); end if; if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); if C.Awake_Count /= 0 then Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Self_ID.Common.State := Master_Completion_Sleep; Unlock (Self_ID); if not Single_Lock then Unlock_RTS; end if; -- Wait until dependent tasks are all terminated or ready to terminate. -- While waiting, the task may be awakened if the task's priority needs -- changing, or this master is aborted. In the latter case, we want -- to abort the dependents, and resume waiting until Wait_Count goes -- to zero. Write_Lock (Self_ID); loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; -- Here is a difference as compared to Complete_Master if Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level and then not Self_ID.Dependents_Aborted then if Single_Lock then Abort_Dependents (Self_ID); else Unlock (Self_ID); Lock_RTS; Abort_Dependents (Self_ID); Unlock_RTS; Write_Lock (Self_ID); end if; else Sleep (Self_ID, Master_Completion_Sleep); end if; end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); -- Dependents are all terminated or on terminate alternatives. -- Now, force those on terminate alternatives to terminate, by -- aborting them. pragma Assert (Check_Unactivated_Tasks); if Self_ID.Alive_Count > 1 then -- ??? -- Consider finding a way to skip the following extra steps if there -- are no dependents with terminate alternatives. This could be done -- by adding another count to the ATCB, similar to Awake_Count, but -- keeping track of tasks that are on terminate alternatives. pragma Assert (Self_ID.Common.Wait_Count = 0); -- Force any remaining dependents to terminate by aborting them if not Single_Lock then Lock_RTS; end if; Abort_Dependents (Self_ID); -- Above, when we "abort" the dependents we are simply using this -- operation for convenience. We are not required to support the full -- abort-statement semantics; in particular, we are not required to -- immediately cancel any queued or in-service entry calls. That is -- good, because if we tried to cancel a call we would need to lock -- the caller, in order to wake the caller up. Our anti-deadlock -- rules prevent us from doing that without releasing the locks on C -- and Self_ID. Releasing and retaking those locks would be wasteful -- at best, and should not be considered further without more -- detailed analysis of potential concurrent accesses to the -- ATCBs of C and Self_ID. -- Count how many "alive" dependent tasks this master currently -- has, and record this in Wait_Count. This count should start at -- zero, since it is initialized to zero for new tasks, and the -- task should not exit the sleep-loops that use this count until -- the count reaches zero. pragma Assert (Self_ID.Common.Wait_Count = 0); Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); pragma Assert (C.Awake_Count = 0); if C.Alive_Count > 0 then pragma Assert (C.Terminate_Alternative); Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Self_ID.Common.State := Master_Phase_2_Sleep; Unlock (Self_ID); if not Single_Lock then Unlock_RTS; end if; -- Wait for all counted tasks to finish terminating themselves Write_Lock (Self_ID); loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; Sleep (Self_ID, Master_Phase_2_Sleep); end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); end if; -- We don't wake up for abort here. We are already terminating just as -- fast as we can, so there is no point. -- Remove terminated tasks from the list of Self_ID's dependents, but -- don't free their ATCBs yet, because of lock order restrictions, -- which don't allow us to call "free" or "malloc" while holding any -- other locks. Instead, we put those ATCBs to be freed onto a -- temporary list, called To_Be_Freed. if not Single_Lock then Lock_RTS; end if; C := All_Tasks_List; P := null; while C /= null loop if C.Common.Parent = Self_ID and then C.Master_of_Task >= CM then if P /= null then P.Common.All_Tasks_Link := C.Common.All_Tasks_Link; else All_Tasks_List := C.Common.All_Tasks_Link; end if; T := C.Common.All_Tasks_Link; C.Common.All_Tasks_Link := To_Be_Freed; To_Be_Freed := C; C := T; else P := C; C := C.Common.All_Tasks_Link; end if; end loop; Unlock_RTS; -- Free all the ATCBs on the list To_Be_Freed -- The ATCBs in the list are no longer in All_Tasks_List, and after -- any interrupt entries are detached from them they should no longer -- be referenced. -- Global_Task_Lock (Task_Lock/Unlock) is locked in the loop below to -- avoid a race between a terminating task and its parent. The parent -- might try to deallocate the ACTB out from underneath the exiting -- task. Note that Free will also lock Global_Task_Lock, but that is -- OK, since this is the *one* lock for which we have a mechanism to -- support nested locking. See Task_Wrapper and its finalizer for more -- explanation. -- ??? -- The check "T.Common.Parent /= null ..." below is to prevent dangling -- references to terminated library-level tasks, which could -- otherwise occur during finalization of library-level objects. -- A better solution might be to hook task objects into the -- finalization chain and deallocate the ATCB when the task -- object is deallocated. However, this change is not likely -- to gain anything significant, since all this storage should -- be recovered en-masse when the process exits. while To_Be_Freed /= null loop T := To_Be_Freed; To_Be_Freed := T.Common.All_Tasks_Link; -- ??? On SGI there is currently no Interrupt_Manager, that's -- why we need to check if the Interrupt_Manager_ID is null if T.Interrupt_Entry and Interrupt_Manager_ID /= null then declare Detach_Interrupt_Entries_Index : constant Task_Entry_Index := 1; -- Corresponds to the entry index of System.Interrupts. -- Interrupt_Manager.Detach_Interrupt_Entries. -- Be sure to update this value when changing -- Interrupt_Manager specs. type Param_Type is access all Task_Id; Param : aliased Param_Type := T'Access; begin System.Tasking.Rendezvous.Call_Simple (Interrupt_Manager_ID, Detach_Interrupt_Entries_Index, Param'Address); end; end if; if (T.Common.Parent /= null and then T.Common.Parent.Common.Parent /= null) or else T.Master_of_Task > 3 then Initialization.Task_Lock (Self_ID); -- If Sec_Stack_Addr is not null, it means that Destroy_TSD -- has not been called yet (case of an unactivated task). if T.Common.Compiler_Data.Sec_Stack_Addr /= Null_Address then SSL.Destroy_TSD (T.Common.Compiler_Data); end if; Vulnerable_Free_Task (T); Initialization.Task_Unlock (Self_ID); end if; end loop; -- It might seem nice to let the terminated task deallocate its own -- ATCB. That would not cover the case of unactivated tasks. It also -- would force us to keep the underlying thread around past termination, -- since references to the ATCB are possible past termination. -- Currently, we get rid of the thread as soon as the task terminates, -- and let the parent recover the ATCB later. -- Some day, if we want to recover the ATCB earlier, at task -- termination, we could consider using "fat task IDs", that include the -- serial number with the ATCB pointer, to catch references to tasks -- that no longer have ATCBs. It is not clear how much this would gain, -- since the user-level task object would still be occupying storage. -- Make next master level up active. -- We don't need to lock the ATCB, since the value is only updated by -- each task for itself. Self_ID.Master_Within := CM - 1; end Vulnerable_Complete_Master; ------------------------------ -- Vulnerable_Complete_Task -- ------------------------------ -- Complete the calling task -- This procedure must be called with abort deferred. (That's why the -- name has "Vulnerable" in it.) It should only be called by Complete_Task -- and Finalize_Global_Tasks (for the environment task). -- The effect is similar to that of Complete_Master. Differences include -- the closing of entries here, and computation of the number of active -- dependent tasks in Complete_Master. -- We don't lock Self_ID before the call to Vulnerable_Complete_Activation, -- because that does its own locking, and because we do not need the lock -- to test Self_ID.Common.Activator. That value should only be read and -- modified by Self. procedure Vulnerable_Complete_Task (Self_ID : Task_Id) is begin pragma Assert (Self_ID.Deferral_Level > 0); pragma Assert (Self_ID = Self); pragma Assert (Self_ID.Master_Within = Self_ID.Master_of_Task + 1 or else Self_ID.Master_Within = Self_ID.Master_of_Task + 2); pragma Assert (Self_ID.Common.Wait_Count = 0); pragma Assert (Self_ID.Open_Accepts = null); pragma Assert (Self_ID.ATC_Nesting_Level = 1); pragma Debug (Debug.Trace (Self_ID, "V_Complete_Task", 'C')); if Single_Lock then Lock_RTS; end if; Write_Lock (Self_ID); Self_ID.Callable := False; -- In theory, Self should have no pending entry calls left on its -- call-stack. Each async. select statement should clean its own call, -- and blocking entry calls should defer abort until the calls are -- cancelled, then clean up. Utilities.Cancel_Queued_Entry_Calls (Self_ID); Unlock (Self_ID); if Self_ID.Common.Activator /= null then Vulnerable_Complete_Activation (Self_ID); end if; if Single_Lock then Unlock_RTS; end if; -- If Self_ID.Master_Within = Self_ID.Master_of_Task + 2 -- we may have dependent tasks for which we need to wait. -- Otherwise, we can just exit. if Self_ID.Master_Within = Self_ID.Master_of_Task + 2 then Vulnerable_Complete_Master (Self_ID); end if; end Vulnerable_Complete_Task; -------------------------- -- Vulnerable_Free_Task -- -------------------------- -- Recover all runtime system storage associated with the task T. -- This should only be called after T has terminated and will no -- longer be referenced. -- For tasks created by an allocator that fails, due to an exception, -- it is called from Expunge_Unactivated_Tasks. -- For tasks created by elaboration of task object declarations it -- is called from the finalization code of the Task_Wrapper procedure. -- It is also called from Unchecked_Deallocation, for objects that -- are or contain tasks. procedure Vulnerable_Free_Task (T : Task_Id) is begin pragma Debug (Debug.Trace (Self, "Vulnerable_Free_Task", 'C', T)); if Single_Lock then Lock_RTS; end if; Write_Lock (T); Initialization.Finalize_Attributes_Link.all (T); Unlock (T); if Single_Lock then Unlock_RTS; end if; System.Task_Primitives.Operations.Finalize_TCB (T); end Vulnerable_Free_Task; -- Package elaboration code begin -- Establish the Adafinal softlink -- This is not done inside the central RTS initialization routine -- to avoid with-ing this package from System.Tasking.Initialization. SSL.Adafinal := Finalize_Global_Tasks'Access; -- Establish soft links for subprograms that manipulate master_id's. -- This cannot be done when the RTS is initialized, because of various -- elaboration constraints. SSL.Current_Master := Stages.Current_Master'Access; SSL.Enter_Master := Stages.Enter_Master'Access; SSL.Complete_Master := Stages.Complete_Master'Access; end System.Tasking.Stages;
with aIDE.Palette.of_exceptions_subpackages; -- AdaM.Declaration.of_exception; with Ada.Text_IO; use Ada.Text_IO; with Glib; use Glib; with Glib.Error; use Glib.Error; with Glib.Object; use Glib.Object; with Gtk.Builder; use Gtk.Builder; with Gtk.Button; use Gtk.Button; with Gtk.Handlers; -- Gtk.Label; with Common_Gtk; use Common_Gtk; with Gtk.Window; use Gtk.Window; with adam.Assist; with ada.Containers.Ordered_Sets; with Ada.Containers.Vectors; with ada.Strings.Unbounded; with AdaM.a_Package; package body aIDE.Palette.of_exceptions is -- Recent Exceptions -- package recent_Exceptions is procedure register_Usage (the_Exception : in AdaM.Declaration.of_exception.view); function fetch return AdaM.Declaration.of_exception.vector; end recent_Exceptions; package body recent_Exceptions is type exception_Usage is record the_Exception : AdaM.Declaration.of_exception.view; Count : Natural; end record; function "<" (L, R : in exception_Usage) return Boolean is use type AdaM.Identifier; begin return L.the_Exception.Name < R.the_Exception.Name; end "<"; overriding function "=" (L, R : in exception_Usage) return Boolean is use type AdaM.Identifier; begin return L.the_Exception.Name = R.the_Exception.Name; end "="; package exception_Usage_Sets is new ada.Containers.Ordered_Sets (exception_Usage); the_usage_Stats : exception_Usage_Sets.Set; -- procedure register_Usage (the_Exception : in adam.Text) -- is -- use exception_Usage_Sets; -- -- the_exception_Usage : exception_Usage := (the_Exception, others => <>); -- Current : constant exception_Usage_Sets.Cursor := the_usage_Stats.find (the_exception_Usage); -- begin -- if Current /= No_Element -- then -- the_exception_Usage.Count := Element (Current).Count + 1; -- the_usage_Stats.replace_Element (Current, the_exception_Usage); -- else -- the_exception_Usage.Count := 1; -- the_usage_Stats.insert (the_exception_Usage); -- end if; -- end register_Usage; procedure register_Usage (the_Exception : in AdaM.Declaration.of_exception.view) is use exception_Usage_Sets; use type AdaM.Declaration.of_exception.view; the_exception_Usage : exception_Usage := (the_Exception, others => <>); Current : constant exception_Usage_Sets.Cursor := the_usage_Stats.find (the_exception_Usage); begin if the_Exception = null then raise program_Error with "NULLLLLLLL exception !!!"; else put_Line ("ALL FINEEEEEEEEEEEEEEEEEEEEEE"); end if; if Current /= No_Element then the_exception_Usage.Count := Element (Current).Count + 1; the_usage_Stats.replace_Element (Current, the_exception_Usage); else the_exception_Usage.Count := 1; the_usage_Stats.insert (the_exception_Usage); end if; end register_Usage; function fetch return AdaM.Declaration.of_exception.vector is use exception_Usage_Sets, ada.Containers; -- the_Lines : AdaM.text_Lines; the_Exceptions : AdaM.Declaration.of_exception.vector; package type_Usage_Vectors is new ada.Containers.Vectors (Positive, exception_Usage); use type_Usage_Vectors; the_usage_List : type_Usage_Vectors.Vector; begin declare Cursor : exception_Usage_Sets.Cursor := the_usage_Stats.First; begin while has_Element (Cursor) loop if Element (Cursor).Count > 0 then the_usage_List.append (Element (Cursor)); end if; exit when the_Exceptions.Length = 25; -- Limit results to 25 entries. next (Cursor); end loop; end; declare function "<" (L, R : in exception_Usage) return Boolean is begin return L.Count > R.Count; end "<"; package Sorter is new type_Usage_Vectors.Generic_Sorting ("<"); begin Sorter.sort (the_usage_List); end; declare use type AdaM.Declaration.of_exception.view; Cursor : type_Usage_Vectors.Cursor := the_usage_List.First; begin while has_Element (Cursor) loop if Element (Cursor).Count > 0 then if Element (Cursor).the_Exception = null then raise Program_Error with "KKKKKKKKKKKKKKKKKKKKK"; end if; the_Exceptions.append (Element (Cursor).the_Exception); end if; next (Cursor); end loop; end; return the_Exceptions; end fetch; -- function fetch return adam.text_Lines -- is -- use exception_Usage_Sets, -- ada.Containers; -- -- the_Lines : adam.text_Lines; -- -- package exception_Usage_Vectors is new ada.Containers.Vectors (Positive, exception_Usage); -- use exception_Usage_Vectors; -- -- the_usage_List : exception_Usage_Vectors.Vector; -- -- begin -- declare -- Cursor : exception_Usage_Sets.Cursor := the_usage_Stats.First; -- begin -- while has_Element (Cursor) -- loop -- if Element (Cursor).Count > 0 then -- the_usage_List.append (Element (Cursor)); -- end if; -- -- exit when the_Lines.Length = 25; -- next (Cursor); -- end loop; -- end; -- -- declare -- function "<" (L, R : in exception_Usage) return Boolean -- is -- begin -- return L.Count > R.Count; -- end "<"; -- -- package Sorter is new exception_Usage_Vectors.Generic_Sorting ("<"); -- begin -- Sorter.sort (the_usage_List); -- end; -- -- declare -- Cursor : exception_Usage_Vectors.Cursor := the_usage_List.First; -- begin -- while has_Element (Cursor) -- loop -- if Element (Cursor).Count > 0 then -- the_Lines.Append (Element (Cursor).Name); -- end if; -- -- exit when the_Lines.Length = 25; -- next (Cursor); -- end loop; -- end; -- -- return the_Lines; -- end fetch; end recent_Exceptions; -- Events -- procedure on_delete_Button_clicked (the_Button : access Gtk_Button_Record'Class; Self : in aIDE.Palette.of_exceptions.view) is pragma Unreferenced (the_Button); -- the_Label : String := the_Button.Get_Label; begin Self.Invoked_by.hide; Self.Target.my_Exception_is (Self.Slot, null); -- "free"); Self.Top.hide; end on_delete_Button_clicked; procedure on_close_Button_clicked (the_Button : access Gtk_Button_Record'Class; Self : in aIDE.Palette.of_exceptions.view) is pragma Unreferenced (the_Button); begin Self.Top.Hide; end on_close_Button_clicked; -- use gtk.Label; -- type label_Info is -- record -- -- package_Name : AdaM.Text; -- Palette : aIDE.Palette.of_exceptions.view; -- end record; package Button_Callbacks is new Gtk.Handlers.User_Callback (Gtk_Button_Record, aIDE.Palette.of_exceptions.view); -- package Label_return_Callbacks is new Gtk.Handlers.User_Return_Callback (gtk.Label.Gtk_Label_Record, -- Boolean, -- label_Info); -- Forge -- function to_exceptions_Palette return View is Self : constant Palette.of_exceptions.view := new Palette.of_exceptions.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/palette/exception_palette.glade", Error'Access); if Error /= null then raise program_Error with "Error: 'adam.Palette.exceptions.to_exceptions_Palette' ~ " & Get_Message (Error); end if; Self.Top := gtk_Window (the_Builder.get_Object ("top_Window")); Self.top_Notebook := gtk_Notebook (the_Builder.get_Object ("top_Notebook")); Self.all_Notebook := gtk_Notebook (the_Builder.get_Object ("all_Notebook")); Self.recent_Table := gtk_Table (the_Builder.get_Object ("recent_Table")); Self.delete_Button := gtk_Button (the_Builder.get_Object ("delete_Button")); Self.close_Button := gtk_Button (the_Builder.get_Object ("close_Button")); Button_Callbacks.connect (Self.delete_Button, "clicked", on_delete_Button_clicked'Access, Self); Button_Callbacks.connect (Self.close_Button, "clicked", on_close_Button_clicked'Access, Self); Self.freshen; enable_bold_Tabs_for (Self.top_Notebook); enable_bold_Tabs_for (Self.all_Notebook); return Self; end to_exceptions_Palette; -- Attributes -- function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget is begin return gtk.Widget.Gtk_Widget (Self.Top); end top_Widget; -- Operations -- procedure choice_is (Self : in out Item; --Now : in String; -- package_Name : in String; the_Exception : in AdaM.Declaration.of_exception.view) is use AdaM, AdaM.Assist; -- full_Name : constant String := package_Name & "." & Now; full_Name : constant String := String (the_Exception.full_Name); begin -- recent_Exceptions.register_Usage (+full_Name); recent_Exceptions.register_Usage (the_Exception); Self.build_recent_List; Self.Invoked_by.set_Label (String (strip_standard_Prefix (identifier_Suffix (the_Exception.full_Name, 2)))); Self.Invoked_by.set_Tooltip_Text (full_Name); Self.Target.my_Exception_is (Self.Slot, the_Exception); -- Self.Target.my_add_Exception (the_Exception); Self.Top.hide; end choice_is; procedure show (Self : in out Item; Invoked_by : in gtk_Button; Target : in adam.exception_Handler.view; Slot : in Positive) is begin Self.Invoked_by := Invoked_by; Self.Target := Target; Self.Slot := Slot; Self.Top.show_All; end show; procedure freshen (Self : in out Item) is use Adam; -- type a_Package; -- type Package_view is access all a_Package; -- -- package package_Vectors is new ada.Containers.Vectors (Positive, Package_view); -- subtype Package_vector is package_Vectors.Vector; -- -- type a_Package is -- record -- Name : adam.Text; -- Parent : Package_view; -- Children : Package_vector; -- -- Exceptions : adam.text_Lines; -- end record; -- the_Exceptions : constant adam.text_Lines := adam.Assist.known_Exceptions; -- Root : aliased a_Package; begin -- Root.Name := +"Root"; -- Clear out old notebook pages. -- while Self.all_Notebook.Get_N_Pages > 0 loop Self.all_Notebook.Get_Nth_Page (0).Destroy; end loop; -- Build the Gui tree. -- build_Gui_Tree: declare procedure build_Gui_for (the_Package : in AdaM.a_Package.view; children_Notebook : in gtk_Notebook) is the_Children : AdaM.a_Package.Vector renames the_Package.child_Packages; the_exceptions_Palette_package : constant Palette.of_exceptions_subpackages.view := aIDE.Palette.of_exceptions_subpackages.to_exceptions_Palette_package; begin -- Build the package pane. -- the_exceptions_Palette_package.Parent_is (Self'unchecked_Access); the_exceptions_Palette_package.top_Widget.Reparent (children_Notebook); children_Notebook.set_Tab_Label_Text (the_exceptions_Palette_package.top_Widget, +the_Package.Name); -- Build the exceptions sub-pane. -- for Each of the_Package.all_Exceptions loop the_exceptions_Palette_package.add_Exception (Each, the_Package); -- the_exceptions_Palette_package.add_Exception (named => Each.Name, -- package_Name => the_Package.Name); -- -- package_Name => full_Name (the_Package)); end loop; -- Configure event handling. -- -- declare -- use gtk.Label; -- the_tab_Label : constant gtk_Label -- := gtk_Label (children_Notebook.get_tab_Label (the_exceptions_Palette_package.top_Widget)); -- begin -- the_tab_Label.set_Selectable (True); -- label_return_Callbacks.connect (the_tab_Label, -- "button-release-event", -- on_tab_Label_clicked'Access, -- (package_name => the_Package.Name, -- palette => Self'unchecked_Access)); -- end; -- Build each childs Gui. -- for i in 1 .. Integer (the_Children.Length) loop build_Gui_for (the_Children.Element (i), the_exceptions_Palette_package.children_Notebook); -- Recurse. end loop; enable_bold_Tabs_for (the_exceptions_Palette_package.children_Notebook); end build_Gui_for; begin -- Recursively add sub-gui's for each package, rooted at 'Standard'. -- -- for i in 1 .. Integer (the_Environ.standard_Package.Children.Length) -- loop -- build_Gui_for (the_Environ.standard_Package.child_Packages.Element (i).all'Access, -- Self.all_Notebook); -- end loop; -- for i in 1 .. Integer (the_entity_Environ.standard_Package.child_Packages.Length) -- loop -- build_Gui_for (the_Environ.standard_Package.child_Packages.Element (i).all'Access, -- Self.all_Notebook); -- end loop; build_Gui_for (the_entity_Environ.standard_Package, Self.all_Notebook); Self.all_Notebook.Popup_enable; Self.all_Notebook.Show_All; end build_Gui_Tree; Self.build_recent_List; -- todo: This is useless til usage stats are made persistent. end freshen; procedure destroy_Callback (Widget : not null access Gtk.Widget.Gtk_Widget_Record'Class) is begin Widget.destroy; end destroy_Callback; procedure build_recent_List (Self : in out Item) is -- the_Recent : constant adam.text_Lines := recent_Exceptions.fetch; the_Recent : constant adam.Declaration.of_exception.vector := recent_Exceptions.fetch; the_Button : gtk_Button; Row, Col : Guint := 0; begin Self.recent_Table.Foreach (destroy_Callback'Access); for i in 1 .. Integer (the_Recent.Length) loop declare use adam, ada.Strings.Unbounded; -- the_Exception : adam.Text renames the_Recent.Element (i); the_Exception : constant adam.Declaration.of_exception.view := the_Recent.Element (i); begin put_Line ("Recent: " & String (the_Exception.full_Name)); put_Line ("Named : " & String (assist. Tail_of (the_Exception.full_Name))); put_Line ("package_Name: " & String (assist.strip_Tail_of (the_Exception.full_Name))); -- gtk_New (the_Button, +the_Exception); the_Button := aIDE.Palette.of_exceptions_subpackages.new_Button (for_Exception => the_Exception, Named => String (assist. Tail_of (the_Exception.full_Name)), package_Name => String (assist.strip_Tail_of (the_Exception.full_Name)), exceptions_Palette => Self'unchecked_Access, use_simple_Name => False); Self.recent_Table.attach (the_Button, Col, Col + 1, Row, Row + 1, Xoptions => 0, Yoptions => 0); the_Button.show_All; if Row = 6 then Row := 0; Col := Col + 1; else Row := Row + 1; end if; end; end loop; end build_recent_List; end aIDE.Palette.of_exceptions;
-- Copyright 2014-2017 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 is -- The goal here is to have an array whose bounds are not -- known at compile time. BT : Bounded := New_Bounded (Low => 1, High => 3); begin Do_Nothing (BT'Address); -- STOP end Foo;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>adders_io</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>in1</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>in1</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>in2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in2</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>in_out1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_out1</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>7</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>in2_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in2</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>20</item> <item>21</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name>in1_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in1</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>23</item> <item>24</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>13</id> <name>in_out1_read</name> <fileName>adders_io.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>adders_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab2</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>adders_io.c</first> <second>adders_io</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>26</item> <item>27</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>14</id> <name>tmp1</name> <fileName>adders_io.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>adders_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>adders_io.c</first> <second>adders_io</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp1_fu_57_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>28</item> <item>29</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>15</id> <name>tmp_1</name> <fileName>adders_io.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>adders_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>adders_io.c</first> <second>adders_io</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>in_out1_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>30</item> <item>31</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>16</id> <name/> <fileName>adders_io.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>adders_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>adders_io.c</first> <second>adders_io</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>83</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>17</id> <name/> <fileName>adders_io.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>adders_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>adders_io.c</first> <second>adders_io</second> </first> <second>53</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> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </consts> <blocks class_id="16" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="17" tracking_level="1" version="0" object_id="_11"> <Obj> <type>3</type> <id>18</id> <name>adders_io</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> </node_objs> </item> </blocks> <edges class_id="18" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="19" tracking_level="1" version="0" object_id="_12"> <id>21</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="19" object_id="_13"> <id>24</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="19" object_id="_14"> <id>27</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="19" object_id="_15"> <id>28</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="19" object_id="_16"> <id>29</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="19" object_id="_17"> <id>30</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="19" object_id="_18"> <id>31</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="19" object_id="_19"> <id>34</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="19" object_id="_20"> <id>35</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="19" object_id="_21"> <id>83</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="20" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="21" tracking_level="1" version="0" object_id="_22"> <mId>1</mId> <mTag>adders_io</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>18</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="23" tracking_level="1" version="0" object_id="_23"> <states class_id="24" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="25" tracking_level="1" version="0" object_id="_24"> <id>1</id> <operations class_id="26" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="27" tracking_level="1" version="0" object_id="_25"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_26"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_27"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_28"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="25" object_id="_29"> <id>2</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="27" object_id="_30"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_31"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_32"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_33"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_34"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_35"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_36"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_37"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_38"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="27" object_id="_39"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="28" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="29" tracking_level="1" version="0" object_id="_40"> <inState>1</inState> <outState>2</outState> <condition class_id="30" tracking_level="0" version="0"> <id>2</id> <sop class_id="31" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="33" tracking_level="1" version="0" object_id="_41"> <dp_component_resource class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>3</count> <item_version>0</item_version> <item class_id="35" tracking_level="0" version="0"> <first>ap_sig_bdd_51 ( or ) </first> <second class_id="36" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="37" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>in_out1_o ( + ) </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>tmp1_fu_57_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</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>5</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>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>ap_sig_ioackin_in_out1_o_ap_ack</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>1</second> </item> </second> </item> <item> <first>in1_ap_vld_in_sig</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>1</second> </item> </second> </item> <item> <first>in1_ap_vld_preg</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>1</second> </item> </second> </item> <item> <first>in1_in_sig</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>6</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>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>ap_reg_ioackin_in_out1_o_ap_ack</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>in1_ap_vld_preg</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>in1_preg</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>in_out1_read_reg_68</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>tmp1_reg_73</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> </dp_register_resource> <dp_component_map class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>2</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>in_out1_o ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp1_fu_57_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>14</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="40" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>8</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>18</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="46" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="47" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>32</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>38</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>50</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>57</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>63</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="50" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>tmp1_fu_57</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>tmp_1_fu_63</first> <second> <count>1</count> <item_version>0</item_version> <item>15</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>4</count> <item_version>0</item_version> <item> <first>in1_read_read_fu_38</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>in2_read_read_fu_32</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>in_out1_read_read_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>stg_15_write_fu_50</first> <second> <count>1</count> <item_version>0</item_version> <item>16</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="52" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>2</count> <item_version>0</item_version> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>73</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>2</count> <item_version>0</item_version> <item> <first>in_out1_read_reg_68</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>tmp1_reg_73</first> <second> <count>1</count> <item_version>0</item_version> <item>14</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="53" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>in1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </second> </item> <item> <first>in2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </second> </item> <item> <first>in_out1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="55" 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>
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A directed relationship represents a relationship between a collection of -- source model elements and a collection of target model elements. ------------------------------------------------------------------------------ limited with AMF.UML.Elements.Collections; with AMF.UML.Relationships; package AMF.UML.Directed_Relationships is pragma Preelaborate; type UML_Directed_Relationship is limited interface and AMF.UML.Relationships.UML_Relationship; type UML_Directed_Relationship_Access is access all UML_Directed_Relationship'Class; for UML_Directed_Relationship_Access'Storage_Size use 0; not overriding function Get_Source (Self : not null access constant UML_Directed_Relationship) return AMF.UML.Elements.Collections.Set_Of_UML_Element is abstract; -- Getter of DirectedRelationship::source. -- -- Specifies the sources of the DirectedRelationship. not overriding function Get_Target (Self : not null access constant UML_Directed_Relationship) return AMF.UML.Elements.Collections.Set_Of_UML_Element is abstract; -- Getter of DirectedRelationship::target. -- -- Specifies the targets of the DirectedRelationship. end AMF.UML.Directed_Relationships;
with NPC_PC; use NPC_PC; package Enemy_BST is ------------------------------- -- Name: Jon Spohn -- David Rogina -- Enemy Package Specification ------------------------------- type EnemyTree is private; --Connect enemy node to right of parent procedure ConnectRight (T : IN OUT EnemyTree; E : EnemyClass); --Connect enemy node to left of parent procedure ConnectLeft (T : IN OUT EnemyTree; E : EnemyClass); --Make Enemy function MakeNode (E : EnemyClass) RETURN EnemyTree; --Initialize enemy tree procedure Initialize (T: IN OUT EnemyTree); --Insert enemy node into tree procedure Insert (T : IN OUT EnemyTree; E : EnemyClass); --Search enemy tree for specific enemy coordinates FUNCTION Search (T: EnemyTree; X : integer; Y: integer) RETURN EnemyClass; function GetLeft(ET: EnemyTree) Return EnemyTree; function GetRight(ET : EnemyTree) return EnemyTree; function GetEnemy(ET : EnemyTree) return EnemyClass; function IsNull(ET : EnemyTree) return integer; --Find smallest leaf of parent node FUNCTION FindSmallest (T : EnemyTree) RETURN EnemyTree; --Delete enemy node PROCEDURE Delete (T : IN OUT EnemyTree; K : IN EnemyClass); private TYPE BinaryTreeNode; TYPE EnemyTree IS ACCESS BinaryTreeNode; TYPE BinaryTreeNode IS RECORD Enemy : EnemyClass; Left : EnemyTree := NULL; Right : EnemyTree := NULL; END RECORD; end Enemy_BST;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2010, AdaCore -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ with Gdbstub; procedure Stub is begin Gdbstub.Stub; end Stub;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . A S S E R T I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides support for assertions (including pragma Assert, -- pragma Debug, and Precondition/Postcondition/Predicate/Invariant aspects -- and their corresponding pragmas). -- This unit may be used directly from an application program by providing -- an appropriate WITH, and the interface can be expected to remain stable. pragma Compiler_Unit_Warning; package System.Assertions is Assert_Failure : exception; -- Exception raised when assertion fails procedure Raise_Assert_Failure (Msg : String); pragma No_Return (Raise_Assert_Failure); -- Called to raise Assert_Failure with given message end System.Assertions;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Definitions; with Program.Elements.Record_Types; with Program.Element_Visitors; package Program.Nodes.Record_Types is pragma Preelaborate; type Record_Type is new Program.Nodes.Node and Program.Elements.Record_Types.Record_Type and Program.Elements.Record_Types.Record_Type_Text with private; function Create (Abstract_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Tagged_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Limited_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Record_Definition : not null Program.Elements.Definitions .Definition_Access) return Record_Type; type Implicit_Record_Type is new Program.Nodes.Node and Program.Elements.Record_Types.Record_Type with private; function Create (Record_Definition : not null Program.Elements.Definitions .Definition_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Record_Type with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Record_Type is abstract new Program.Nodes.Node and Program.Elements.Record_Types.Record_Type with record Record_Definition : not null Program.Elements.Definitions .Definition_Access; end record; procedure Initialize (Self : aliased in out Base_Record_Type'Class); overriding procedure Visit (Self : not null access Base_Record_Type; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Record_Definition (Self : Base_Record_Type) return not null Program.Elements.Definitions.Definition_Access; overriding function Is_Record_Type_Element (Self : Base_Record_Type) return Boolean; overriding function Is_Type_Definition_Element (Self : Base_Record_Type) return Boolean; overriding function Is_Definition_Element (Self : Base_Record_Type) return Boolean; type Record_Type is new Base_Record_Type and Program.Elements.Record_Types.Record_Type_Text with record Abstract_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Tagged_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Limited_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_Record_Type_Text (Self : aliased in out Record_Type) return Program.Elements.Record_Types.Record_Type_Text_Access; overriding function Abstract_Token (Self : Record_Type) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Tagged_Token (Self : Record_Type) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Limited_Token (Self : Record_Type) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Record_Type is new Base_Record_Type with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Record_Type_Text (Self : aliased in out Implicit_Record_Type) return Program.Elements.Record_Types.Record_Type_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Record_Type) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Record_Type) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Record_Type) return Boolean; end Program.Nodes.Record_Types;
-- ----------------------------------------------------------------------------- -- smk, the smart make (http://lionel.draghi.free.fr/smk/) -- © 2018, 2019 Lionel Draghi <lionel.draghi@free.fr> -- SPDX-License-Identifier: APSL-2.0 -- ----------------------------------------------------------------------------- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- http://www.apache.org/licenses/LICENSE-2.0 -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ----------------------------------------------------------------------------- with Smk.Files.File_Lists; procedure Smk.Files.Put (File_List : File_Lists.Map; Prefix : String := ""; Print_Sources : Boolean := False; Print_Targets : Boolean := False; Print_Unused : Boolean := False); -- Print files matching one of the boolean, in a one per line way. -- If Settings.Filter_System_Files, then ignore -- /lib /usr /etc /opt etc. files
----------------------------------------------------------------------- -- json -- JSON Reader -- Copyright (C) 2010, 2011, 2014 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Text_IO; with Ada.Command_Line; with Util.Serialize.IO.JSON; with Ada.Containers; with Mapping; with Util.Serialize.Mappers.Vector_Mapper; with Util.Streams.Texts; with Util.Streams.Buffered; procedure Json is use Util.Streams.Buffered; use Ada.Strings.Unbounded; use type Mapping.Person_Access; use type Ada.Containers.Count_Type; Reader : Util.Serialize.IO.JSON.Parser; Count : constant Natural := Ada.Command_Line.Argument_Count; package Person_Vector_Mapper is new Util.Serialize.Mappers.Vector_Mapper (Vectors => Person_Vector, Element_Mapper => Person_Mapper); subtype Person_Vector_Context is Person_Vector_Mapper.Vector_Data; -- Mapping for a list of Person records (stored as a Vector). Person_Vector_Mapping : aliased Person_Vector_Mapper.Mapper; procedure Print (P : in Mapping.Person_Vector.Cursor); procedure Print (P : in Mapping.Person); procedure Print (P : in Mapping.Person) is begin Ada.Text_IO.Put_Line ("Name : " & To_String (P.Name)); Ada.Text_IO.Put_Line ("first_name : " & To_String (P.First_Name)); Ada.Text_IO.Put_Line ("last_name : " & To_String (P.Last_Name)); Ada.Text_IO.Put_Line ("Age : " & Natural'Image (P.Age)); Ada.Text_IO.Put_Line ("Street : " & To_String (P.Addr.Street)); Ada.Text_IO.Put_Line ("City : " & To_String (P.Addr.City)); Ada.Text_IO.Put_Line ("Zip : " & Natural'Image (P.Addr.Zip)); Ada.Text_IO.Put_Line ("Country : " & To_String (P.Addr.Country)); Ada.Text_IO.Put_Line ("Info : " & To_String (P.Addr.Info.Name) & "=" & To_String (P.Addr.Info.Value)); end Print; procedure Print (P : in Mapping.Person_Vector.Cursor) is begin Print (Mapping.Person_Vector.Element (P)); end Print; begin if Count = 0 then Ada.Text_IO.Put_Line ("Usage: json file..."); return; end if; Person_Vector_Mapping.Set_Mapping (Mapping.Get_Person_Mapper); Reader.Add_Mapping ("/list", Mapping.Get_Person_Vector_Mapper.all'Access); Reader.Add_Mapping ("/person", Mapping.Get_Person_Mapper.all'Access); for I in 1 .. Count loop declare S : constant String := Ada.Command_Line.Argument (I); List : aliased Mapping.Person_Vector.Vector; P : aliased Mapping.Person; begin Mapping.Person_Vector_Mapper.Set_Context (Reader, List'Unchecked_Access); Mapping.Person_Mapper.Set_Context (Reader, P'Unchecked_Access); Reader.Parse (S); -- The list now contains our elements. List.Iterate (Process => Print'Access); if List.Length = 0 then Print (P); end if; declare Output : Util.Serialize.IO.JSON.Output_Stream; begin Output.Initialize (Size => 10000); Mapping.Get_Person_Mapper.Write (Output, P); Ada.Text_IO.Put_Line ("Person: " & Util.Streams.Texts.To_String (Buffered_Stream (Output))); end; declare Output : Util.Serialize.IO.JSON.Output_Stream; begin Output.Initialize (Size => 10000); Output.Write ("{""list"":"); Mapping.Get_Person_Vector_Mapper.Write (Output, List); Output.Write ("}"); Ada.Text_IO.Put_Line ("IO:"); Ada.Text_IO.Put_Line (Util.Streams.Texts.To_String (Buffered_Stream (Output))); end; end; end loop; end Json;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- A D A . U N C H E C K E D _ D E A L L O C A T E _ S U B P O O L -- -- -- -- B o d y -- -- -- -- Copyright (C) 2011-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. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Pools.Subpools, System.Storage_Pools.Subpools.Finalization; use System.Storage_Pools.Subpools, System.Storage_Pools.Subpools.Finalization; procedure Ada.Unchecked_Deallocate_Subpool (Subpool : in out System.Storage_Pools.Subpools.Subpool_Handle) is begin Finalize_And_Deallocate (Subpool); end Ada.Unchecked_Deallocate_Subpool;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. package body Items.Test_Data is procedure Set_Up(Gnattest_T: in out Test) is pragma Unreferenced(Gnattest_T); begin null; end Set_Up; procedure Tear_Down(Gnattest_T: in out Test) is pragma Unreferenced(Gnattest_T); begin null; end Tear_Down; end Items.Test_Data;
------------------------------------------------------------------------------ -- Copyright (c) 2015-2019, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Natools.Web.Comments provides an implementation of user-posted comments -- -- like is commonly found on blogs. -- ------------------------------------------------------------------------------ with Natools.S_Expressions.Atom_Refs; with Natools.S_Expressions.Lockable; with Natools.S_Expressions.Printers; with Natools.Web.Sites; with Natools.Web.Tags; private with Ada.Calendar.Time_Zones; private with Ada.Containers.Doubly_Linked_Lists; private with Ada.Finalization; private with Natools.Constant_Indefinite_Ordered_Maps; private with Natools.References; private with Natools.Storage_Pools; private with Natools.Web.Containers; private with Natools.Web.Sites.Updates; package Natools.Web.Comments is type Comment_Ref is new Tags.Visible with private; overriding procedure Render (Exchange : in out Sites.Exchange; Object : in Comment_Ref; Expression : in out S_Expressions.Lockable.Descriptor'Class); -- Render a comment type Comment_List is tagged private; function Is_Null (Object : in Comment_List) return Boolean; -- Return whether the list is usable (even if empty) procedure Live_Load (Object : in out Comment_List; Site : in Sites.Site; Parent : in Tags.Visible_Access := null; Parent_Path : in S_Expressions.Atom_Refs.Immutable_Reference := S_Expressions.Atom_Refs.Null_Immutable_Reference); -- Load comment list from Site back-end and register all comments procedure Load (Object : in out Comment_List; Builder : in out Sites.Site_Builder; Parent : in Tags.Visible_Access := null; Parent_Path : in S_Expressions.Atom_Refs.Immutable_Reference := S_Expressions.Atom_Refs.Null_Immutable_Reference); -- Load comment list from Builder back-end and register all comments procedure Render (Exchange : in out Sites.Exchange; Object : in Comment_List; Expression : in out S_Expressions.Lockable.Descriptor'Class); -- Render a comment list procedure Respond (List : in out Comment_List; Exchange : in out Sites.Exchange; Extra_Path : in S_Expressions.Atom); -- Respond to a request for the comment list procedure Set (List : out Comment_List; Expression : in out S_Expressions.Lockable.Descriptor'Class); -- (Re)initialize List using data from Expression procedure Set (List : out Comment_List; Template : in out S_Expressions.Lockable.Descriptor'Class; Expression : in out S_Expressions.Lockable.Descriptor'Class; Path_Override : in S_Expressions.Atom_Refs.Immutable_Reference := S_Expressions.Atom_Refs.Null_Immutable_Reference); -- (Re)initialize List using data from Template overriden by Expression private package Comment_Atoms is type Enum is (Name, Mail, Link, Text, Class, Note, Title, Filter); type Set is array (Enum) of S_Expressions.Atom_Refs.Immutable_Reference; end Comment_Atoms; package Comment_Flags is type Enum is (Preprocessed, Ignored); type Set is array (Enum) of Boolean with Pack; end Comment_Flags; package List_Flags is type Enum is (Ignore_By_Default, Allow_Date_Override, Closed, Allow_Ignore); type Set is array (Enum) of Boolean with Pack; end List_Flags; type Comment_Data is record Date : Ada.Calendar.Time; Offset : Ada.Calendar.Time_Zones.Time_Offset; Id : S_Expressions.Atom_Refs.Immutable_Reference; Atoms : Comment_Atoms.Set; Flags : Comment_Flags.Set := (others => False); Parent : Tags.Visible_Access; Rank : Positive; end record; procedure Preprocess (Comment : in out Comment_Data; List : in Comment_List; Site : in Sites.Site); procedure Preprocess (Comment : in out Comment_Data; List : in Comment_List; Builder : in Sites.Site_Builder); -- Preprocess comment field contents procedure Write (Comment : in Comment_Data; Output : in out S_Expressions.Printers.Printer'Class); -- Serialize a comment into the given S_Expression stream package Comment_Maps is new Natools.Constant_Indefinite_Ordered_Maps (S_Expressions.Atom, Comment_Data, S_Expressions."<"); procedure Set_Parent (Container : in out Comment_Maps.Updatable_Map; Parent : in Tags.Visible_Access); procedure Update_Ranks (Container : in out Comment_Maps.Updatable_Map); protected type Comment_Container is procedure Initialize (Data : in Comment_Maps.Unsafe_Maps.Map; Parent : in Tags.Visible_Access); procedure Insert (Data : in Comment_Data); procedure Ignore (Id : in S_Expressions.Atom; Ref : out S_Expressions.Atom_Refs.Immutable_Reference); procedure Orphan; function Find (Id : S_Expressions.Atom_Refs.Immutable_Reference) return Comment_Maps.Cursor; function First return Comment_Maps.Cursor; function Iterate return Comment_Maps.Map_Iterator_Interfaces.Reversible_Iterator'Class; function Length return Natural; private Map : Comment_Maps.Updatable_Map; Parent : Tags.Visible_Access; end Comment_Container; package Container_Refs is new References (Comment_Container, Storage_Pools.Access_In_Default_Pool'Storage_Pool, Storage_Pools.Access_In_Default_Pool'Storage_Pool); type Comment_Ref is new Tags.Visible with record Container : Container_Refs.Reference; Id : S_Expressions.Atom_Refs.Immutable_Reference; end record; type Comment_List is new Ada.Finalization.Controlled with record Backend_Name : S_Expressions.Atom_Refs.Immutable_Reference; Backend_Path : S_Expressions.Atom_Refs.Immutable_Reference; Parent_Path : S_Expressions.Atom_Refs.Immutable_Reference; Comments : Container_Refs.Reference; Post_Filter : S_Expressions.Atom_Refs.Immutable_Reference; Tags : Containers.Atom_Array_Refs.Immutable_Reference; Text_Filters : Containers.Atom_Array_Refs.Immutable_Reference; Default_Text_Filter : S_Expressions.Atom_Refs.Immutable_Reference; Flags : List_Flags.Set := (others => False); Parent : Web.Tags.Visible_Access; end record; overriding procedure Finalize (Object : in out Comment_List); function Is_Null (Object : in Comment_List) return Boolean is (Object.Backend_Name.Is_Empty or else Object.Backend_Path.Is_Empty); type Comment_Inserter is new Sites.Updates.Site_Update with record Container : Container_Refs.Reference; Id : S_Expressions.Atom_Refs.Immutable_Reference; Tags : Containers.Atom_Array_Refs.Immutable_Reference; end record; overriding procedure Update (Self : in Comment_Inserter; Site : in out Sites.Site); package Id_Lists is new Ada.Containers.Doubly_Linked_Lists (S_Expressions.Atom_Refs.Immutable_Reference, S_Expressions.Atom_Refs."="); type Comment_Remover is new Sites.Updates.Site_Update with record Container : Container_Refs.Reference; Ids : Id_Lists.List; Tags : Containers.Atom_Array_Refs.Immutable_Reference; end record; overriding procedure Update (Self : in Comment_Remover; Site : in out Sites.Site); Empty_List : constant Comment_List := (Ada.Finalization.Controlled with Backend_Name => S_Expressions.Atom_Refs.Null_Immutable_Reference, Backend_Path => S_Expressions.Atom_Refs.Null_Immutable_Reference, Parent_Path => S_Expressions.Atom_Refs.Null_Immutable_Reference, Comments => Container_Refs.Null_Reference, Parent => null, Post_Filter => S_Expressions.Atom_Refs.Null_Immutable_Reference, Tags => Containers.Atom_Array_Refs.Null_Immutable_Reference, Text_Filters => Containers.Atom_Array_Refs.Null_Immutable_Reference, Default_Text_Filter => S_Expressions.Atom_Refs.Null_Immutable_Reference, Flags => (others => False)); end Natools.Web.Comments;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Formal_Floating_Point_Definitions; with Program.Element_Visitors; package Program.Nodes.Formal_Floating_Point_Definitions is pragma Preelaborate; type Formal_Floating_Point_Definition is new Program.Nodes.Node and Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition and Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition_Text with private; function Create (Digits_Token : not null Program.Lexical_Elements.Lexical_Element_Access; Box_Token : not null Program.Lexical_Elements.Lexical_Element_Access) return Formal_Floating_Point_Definition; type Implicit_Formal_Floating_Point_Definition is new Program.Nodes.Node and Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition with private; function Create (Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Formal_Floating_Point_Definition with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Formal_Floating_Point_Definition is abstract new Program.Nodes.Node and Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition with null record; procedure Initialize (Self : in out Base_Formal_Floating_Point_Definition'Class); overriding procedure Visit (Self : not null access Base_Formal_Floating_Point_Definition; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Is_Formal_Floating_Point_Definition (Self : Base_Formal_Floating_Point_Definition) return Boolean; overriding function Is_Formal_Type_Definition (Self : Base_Formal_Floating_Point_Definition) return Boolean; overriding function Is_Definition (Self : Base_Formal_Floating_Point_Definition) return Boolean; type Formal_Floating_Point_Definition is new Base_Formal_Floating_Point_Definition and Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition_Text with record Digits_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Box_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_Formal_Floating_Point_Definition_Text (Self : in out Formal_Floating_Point_Definition) return Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition_Text_Access; overriding function Digits_Token (Self : Formal_Floating_Point_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Box_Token (Self : Formal_Floating_Point_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Formal_Floating_Point_Definition is new Base_Formal_Floating_Point_Definition with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Formal_Floating_Point_Definition_Text (Self : in out Implicit_Formal_Floating_Point_Definition) return Program.Elements.Formal_Floating_Point_Definitions .Formal_Floating_Point_Definition_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Formal_Floating_Point_Definition) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Formal_Floating_Point_Definition) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Formal_Floating_Point_Definition) return Boolean; end Program.Nodes.Formal_Floating_Point_Definitions;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . E N U M E R A T I O N _ I O -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- In Ada 95, the package Ada.Text_IO.Enumeration_IO is a subpackage of -- Text_IO. This is for compatibility with Ada 83. In GNAT we make it a -- child package to avoid loading the necessary code if Enumeration_IO is -- not instantiated. See routine Rtsfind.Text_IO_Kludge for a description -- of how we patch up the difference in semantics so that it is invisible -- to the Ada programmer. private generic type Enum is (<>); package Ada.Text_IO.Enumeration_IO is Default_Width : Field := 0; Default_Setting : Type_Set := Upper_Case; procedure Get (File : in File_Type; Item : out Enum); procedure Get (Item : out Enum); procedure Put (File : in File_Type; Item : in Enum; Width : in Field := Default_Width; Set : in Type_Set := Default_Setting); procedure Put (Item : in Enum; Width : in Field := Default_Width; Set : in Type_Set := Default_Setting); procedure Get (From : in String; Item : out Enum; Last : out Positive); procedure Put (To : out String; Item : in Enum; Set : in Type_Set := Default_Setting); end Ada.Text_IO.Enumeration_IO;
with freetype_C.FT_GlyphSlot; package openGL.GlyphImpl -- -- Implements an openGL glyph. -- is type Item is tagged private; type View is access all Item'Class; --------- -- Types -- subtype error_Kind is freetype_C.FT_Error; no_Error : constant error_Kind; --------- -- Forge -- procedure define (Self : in out Item; glyth_Slot : in freetype_c.FT_GlyphSlot.item); -- -- glyth_Slot: The Freetype glyph to be processed. -------------- -- Attributes -- function Advance (Self : in Item) return Real; -- The advance distance for this glyph. function BBox (Self : in Item) return Bounds; -- Return the bounding box for this glyph. function Error (Self : in Item) return error_Kind; -- Return the current error code. private type Item is tagged record Advance : Vector_3; bBox : Bounds; Err : error_Kind; end record; procedure destruct (Self : in out Item); no_Error : constant error_Kind := 0; end openGL.GlyphImpl;
-- 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. separate (Latin_Utils.Dictionary_Package) package body Numeral_Entry_IO is --------------------------------------------------------------------------- -- FIXME: Why is this one set here? Num_Out_Size : constant := 5; -- NOTE: Maybe set this in spec? --------------------------------------------------------------------------- procedure Get (File : in Ada.Text_IO.File_Type; Item : out Numeral_Entry) is Spacer : Character := ' '; pragma Unreferenced (Spacer); begin Decn_Record_IO.Get (File, Item.Decl); Ada.Text_IO.Get (File, Spacer); Numeral_Sort_Type_IO.Get (File, Item.Sort); Ada.Text_IO.Get (File, Spacer); Inflections_Package.Integer_IO.Get (File, Item.Value); end Get; --------------------------------------------------------------------------- procedure Get (Item : out Numeral_Entry) is Spacer : Character := ' '; pragma Unreferenced (Spacer); begin Decn_Record_IO.Get (Item.Decl); Ada.Text_IO.Get (Spacer); Numeral_Sort_Type_IO.Get (Item.Sort); Ada.Text_IO.Get (Spacer); Inflections_Package.Integer_IO.Get (Item.Value); end Get; --------------------------------------------------------------------------- procedure Put (File : in Ada.Text_IO.File_Type; Item : in Numeral_Entry) is begin Decn_Record_IO.Put (File, Item.Decl); Ada.Text_IO.Put (File, ' '); Numeral_Sort_Type_IO.Put (File, Item.Sort); Ada.Text_IO.Put (File, ' '); Inflections_Package.Integer_IO.Put (File, Item.Value, Num_Out_Size); end Put; --------------------------------------------------------------------------- procedure Put (Item : in Numeral_Entry) is begin Decn_Record_IO.Put (Item.Decl); Ada.Text_IO.Put (' '); Numeral_Sort_Type_IO.Put (Item.Sort); Ada.Text_IO.Put (' '); Inflections_Package.Integer_IO.Put (Item.Value, Num_Out_Size); end Put; --------------------------------------------------------------------------- procedure Get (Source : in String; Target : out Numeral_Entry; Last : out Integer ) is -- Used for computing lower bound of substring Low : Integer := Source'First - 1; begin Decn_Record_IO.Get (Source (Low + 1 .. Source'Last), Target.Decl, Low); Low := Low + 1; Numeral_Sort_Type_IO.Get (Source (Low + 1 .. Source'Last), Target.Sort, Low); Low := Low + 1; Inflections_Package.Integer_IO.Get (Source (Low + 1 .. Source'Last), Target.Value, Last); end Get; --------------------------------------------------------------------------- procedure Put (Target : out String; Item : in Numeral_Entry) is -- These variables are used for computing bounds of substrings Low : Integer := Target'First - 1; High : Integer := 0; begin -- Put Decn_Record High := Low + Decn_Record_IO.Default_Width; Decn_Record_IO.Put (Target (Low + 1 .. High), Item.Decl); Low := High + 1; Target (Low) := ' '; -- Put Numeral_Sort_Type High := Low + Numeral_Sort_Type_IO.Default_Width; Numeral_Sort_Type_IO.Put (Target (Low + 1 .. High), Item.Sort); Low := High + 1; Target (Low) := ' '; -- Put Integer -- High := Low + Numeral_Value_Type_IO.Default_Width; High := Low + Num_Out_Size; Inflections_Package.Integer_IO.Put (Target (Low + 1 .. High), Item.Value); -- Fill remainder of string Target (High + 1 .. Target'Last) := (others => ' '); end Put; --------------------------------------------------------------------------- end Numeral_Entry_IO;
-- This spec has been automatically generated from cm4f.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; package Cortex_M_SVD is pragma Preelaborate; -------------------- -- Base addresses -- -------------------- NVIC_Base : constant System.Address := System'To_Address (16#E000E100#); SCB_Base : constant System.Address := System'To_Address (16#E000E000#); SysTick_Base : constant System.Address := System'To_Address (16#E000E010#); FPU_Base : constant System.Address := System'To_Address (16#E000ED88#); MPU_Base : constant System.Address := System'To_Address (16#E000ED90#); Debug_Base : constant System.Address := System'To_Address (16#E000ED00#); DWT_Base : constant System.Address := System'To_Address (16#E0001000#); end Cortex_M_SVD;
------------------------------------------------------------------------------ -- Copyright (c) 2014-2017, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Natools.S_Expressions.File_Writers is package Stream_IO renames Ada.Streams.Stream_IO; overriding procedure Finalize (Object : in out Autoclose) is begin if Stream_IO.Is_Open (Object.File) then Stream_IO.Close (Object.File); end if; end Finalize; ------------------------- -- S-Expression Writer -- ------------------------- overriding procedure Write_Raw (Output : in out Writer; Data : in Ada.Streams.Stream_Element_Array) is begin Stream_IO.Write (Output.Holder.File, Data); end Write_Raw; function Create (Name : String; Form : String := "") return Writer is begin return Result : Writer do Create (Result, Name, Form); end return; end Create; function Open (Name : String; Form : String := "") return Writer is begin return Result : Writer do Open (Result, Name, Form); end return; end Open; procedure Create (Self : in out Writer; Name : in String; Form : in String := "") is begin Finalize (Self.Holder); Stream_IO.Create (Self.Holder.File, Stream_IO.Append_File, Name, Form); end Create; procedure Open (Self : in out Writer; Name : in String; Form : in String := "") is begin Finalize (Self.Holder); Stream_IO.Open (Self.Holder.File, Stream_IO.Append_File, Name, Form); end Open; function Open_Or_Create (Name : String; Form : String := "") return Writer is begin return Result : Writer do Open_Or_Create (Result, Name, Form); end return; end Open_Or_Create; procedure Open_Or_Create (Self : in out Writer; Name : in String; Form : in String := "") is begin Finalize (Self.Holder); Open_Attempt : begin Stream_IO.Open (Self.Holder.File, Stream_IO.Append_File, Name, Form); return; exception when Stream_IO.Name_Error => null; end Open_Attempt; Stream_IO.Create (Self.Holder.File, Stream_IO.Append_File, Name, Form); end Open_Or_Create; function Name (Self : Writer) return String is begin return Stream_IO.Name (Self.Holder.File); end Name; end Natools.S_Expressions.File_Writers;
----------------------------------------------------------------------- -- gen-artifacts-docs -- Artifact for documentation -- Copyright (C) 2012, 2015, 2017, 2018, 2019, 2020, 2021 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Containers.Indefinite_Vectors; with Ada.Containers.Indefinite_Hashed_Maps; with Ada.Strings.Hash; with Ada.Text_IO; with Gen.Model.Packages; private with Util.Strings.Maps; -- with Asis; -- with Asis.Text; -- with Asis.Elements; -- with Asis.Exceptions; -- with Asis.Errors; -- with Asis.Implementation; -- with Asis.Elements; -- with Asis.Declarations; -- The <b>Gen.Artifacts.Docs</b> package is an artifact for the generation of -- application documentation. Its purpose is to scan the project source files -- and extract some interesting information for a developer's guide. The artifact -- scans the Ada source files, the XML configuration files, the XHTML files. -- -- The generated documentation is intended to be published on a web site. -- The Google Wiki style is generated by default. -- -- 1/ In the first step, the project files are scanned and the useful -- documentation is extracted. -- -- 2/ In the second step, the documentation is merged and reconciled. Links to -- documentation pages and references are setup and the final pages are generated. -- -- Ada -- --- -- The documentation starts at the first '== TITLE ==' marker and finishes before the -- package specification. -- -- XHTML -- ----- -- Same as Ada. -- -- XML Files -- ---------- -- The documentation is part of the XML and the <b>documentation</b> or <b>description</b> -- tags are extracted. package Gen.Artifacts.Docs is -- Tag marker (same as Java). TAG_CHAR : constant Character := '@'; -- Specific tags recognized when analyzing the documentation. TAG_AUTHOR : constant String := "author"; TAG_TITLE : constant String := "title"; TAG_INCLUDE : constant String := "include"; TAG_INCLUDE_CONFIG : constant String := "include-config"; TAG_INCLUDE_BEAN : constant String := "include-bean"; TAG_INCLUDE_QUERY : constant String := "include-query"; TAG_INCLUDE_PERM : constant String := "include-permission"; TAG_INCLUDE_DOC : constant String := "include-doc"; TAG_SEE : constant String := "see"; Unknown_Tag : exception; type Doc_Format is (DOC_MARKDOWN, DOC_WIKI_GOOGLE); -- ------------------------------ -- Documentation artifact -- ------------------------------ type Artifact is new Gen.Artifacts.Artifact with private; -- Prepare the model after all the configuration files have been read and before -- actually invoking the generation. overriding procedure Prepare (Handler : in out Artifact; Model : in out Gen.Model.Packages.Model_Definition'Class; Project : in out Gen.Model.Projects.Project_Definition'Class; Context : in out Generator'Class); procedure Generate (Handler : in out Artifact; Context : in out Generator'Class); -- Set the output document format to generate. procedure Set_Format (Handler : in out Artifact; Format : in Doc_Format; Footer : in Boolean); -- Load from the file a list of link definitions which can be injected in the generated doc. -- This allows to avoid polluting the Ada code with external links. procedure Read_Links (Handler : in out Artifact; Path : in String); private type Line_Kind is (L_TEXT, L_LIST, L_LIST_ITEM, L_SEE, L_INCLUDE, L_INCLUDE_CONFIG, L_INCLUDE_BEAN, L_INCLUDE_PERMISSION, L_INCLUDE_QUERY, L_INCLUDE_DOC, L_START_CODE, L_END_CODE, L_HEADER_1, L_HEADER_2, L_HEADER_3, L_HEADER_4); subtype Line_Include_Kind is Line_Kind range L_INCLUDE .. L_INCLUDE_DOC; type Line_Type (Len : Natural) is record Kind : Line_Kind := L_TEXT; Content : String (1 .. Len); end record; package Line_Vectors is new Ada.Containers.Indefinite_Vectors (Index_Type => Positive, Element_Type => Line_Type); type Line_Group_Vector is array (Line_Include_Kind) of Line_Vectors.Vector; type Doc_State is (IN_PARA, IN_SEPARATOR, IN_CODE, IN_CODE_SEPARATOR, IN_LIST); type Document_Formatter is abstract tagged record Links : Util.Strings.Maps.Map; end record; type Document_Formatter_Access is access all Document_Formatter'Class; type File_Document is record Name : UString; Title : UString; State : Doc_State := IN_PARA; Line_Number : Natural := 0; Lines : Line_Group_Vector; Was_Included : Boolean := False; Print_Footer : Boolean := True; Formatter : Document_Formatter_Access; end record; -- Get the document name from the file document (ex: <name>.wiki or <name>.md). function Get_Document_Name (Formatter : in Document_Formatter; Document : in File_Document) return String is abstract; -- Start a new document. procedure Start_Document (Formatter : in out Document_Formatter; Document : in File_Document; File : in Ada.Text_IO.File_Type) is abstract; -- Write a line in the target document formatting the line if necessary. procedure Write_Line (Formatter : in out Document_Formatter; File : in Ada.Text_IO.File_Type; Line : in Line_Type) is abstract; -- Finish the document. procedure Finish_Document (Formatter : in out Document_Formatter; Document : in File_Document; File : in Ada.Text_IO.File_Type; Source : in String) is abstract; package Doc_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => File_Document, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); -- Include the document extract represented by <b>Name</b> into the document <b>Into</b>. -- The included document is marked so that it will not be generated. procedure Include (Docs : in out Doc_Maps.Map; Source : in String; Into : in out File_Document; Name : in String; Mode : in Line_Include_Kind; Position : in Natural); -- Generate the project documentation that was collected in <b>Docs</b>. -- The documentation is merged so that the @include tags are replaced by the matching -- document extracts. procedure Generate (Handler : in out Artifact; Docs : in out Doc_Maps.Map; Dir : in String); -- Returns True if the line indicates a bullet or numbered list. function Is_List (Line : in String) return Boolean; -- Returns True if the line indicates a code sample. function Is_Code (Line : in String) return Boolean; -- Append a raw text line to the document. procedure Append_Line (Doc : in out File_Document; Line : in String); -- Look and analyze the tag defined on the line. procedure Append_Tag (Doc : in out File_Document; Tag : in String); -- Analyse the documentation line and collect the documentation text. procedure Append (Doc : in out File_Document; Line : in String); -- After having collected the documentation, terminate the document by making sure -- the opened elements are closed. procedure Finish (Doc : in out File_Document); -- Set the name associated with the document extract. procedure Set_Name (Doc : in out File_Document; Name : in String); -- Set the title associated with the document extract. procedure Set_Title (Doc : in out File_Document; Title : in String); -- Scan the files in the directory refered to by <b>Path</b> and collect the documentation -- in the <b>Docs</b> hashed map. procedure Scan_Files (Handler : in out Artifact; Path : in String; Docs : in out Doc_Maps.Map); -- Read the Ada specification/body file and collect the useful documentation. -- To keep the implementation simple, we don't use the ASIS packages to scan and extract -- the documentation. We don't need to look at the Ada specification itself. Instead, -- we assume that the Ada source follows some Ada style guidelines. procedure Read_Ada_File (Handler : in out Artifact; File : in String; Result : in out File_Document); procedure Read_Xml_File (Handler : in out Artifact; File : in String; Result : in out File_Document); -- Read some general purpose documentation files. The documentation file -- can be integrated and merged by using the @include-doc tags and it may -- contain various @ tags. procedure Read_Doc_File (Handler : in out Artifact; File : in String; Result : in out File_Document); type Artifact is new Gen.Artifacts.Artifact with record Xslt_Command : UString; Format : Doc_Format := DOC_WIKI_GOOGLE; Print_Footer : Boolean := True; Formatter : Document_Formatter_Access; end record; end Gen.Artifacts.Docs;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . G E N E R I C _ C O M P L E X _ T Y P E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-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. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Ada Cert Math specific version of a-ngcoty.adb with Ada.Numerics.Long_Long_Elementary_Functions; use Ada.Numerics.Long_Long_Elementary_Functions; package body Ada.Numerics.Generic_Complex_Types is subtype R is Real'Base; subtype LLF is Long_Long_Float; Two_Pi : constant R := R (2.0) * Pi; Half_Pi : constant R := Pi / R (2.0); --------- -- "*" -- --------- function "*" (Left, Right : Complex) return Complex is Scale : constant R := R (R'Machine_Radix) ** ((R'Machine_Emax - 1) / 2); -- In case of overflow, scale the operands by the largest power of the -- radix (to avoid rounding error), so that the square of the scale does -- not overflow itself. X : R; Y : R; begin X := Left.Re * Right.Re - Left.Im * Right.Im; Y := Left.Re * Right.Im + Left.Im * Right.Re; -- If either component overflows, try to scale (skip in fast math mode) if not Standard'Fast_Math then -- Note that the test below is written as a negation. This is to -- account for the fact that X and Y may be NaNs, because both of -- their operands could overflow. Given that all operations on NaNs -- return false, the test can only be written thus. if not (abs (X) <= R'Last) then X := Scale**2 * ((Left.Re / Scale) * (Right.Re / Scale) - (Left.Im / Scale) * (Right.Im / Scale)); end if; if not (abs (Y) <= R'Last) then Y := Scale**2 * ((Left.Re / Scale) * (Right.Im / Scale) + (Left.Im / Scale) * (Right.Re / Scale)); end if; end if; return (X, Y); end "*"; function "*" (Left, Right : Imaginary) return Real'Base is begin return -(R (Left) * R (Right)); end "*"; function "*" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re * Right, Left.Im * Right); end "*"; function "*" (Left : Real'Base; Right : Complex) return Complex is begin return (Left * Right.Re, Left * Right.Im); end "*"; function "*" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(-(Left.Im * R (Right)), Left.Re * R (Right)); end "*"; function "*" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(-(R (Left) * Right.Im), R (Left) * Right.Re); end "*"; function "*" (Left : Imaginary; Right : Real'Base) return Imaginary is begin return Left * Imaginary (Right); end "*"; function "*" (Left : Real'Base; Right : Imaginary) return Imaginary is begin return Imaginary (Left * R (Right)); end "*"; ---------- -- "**" -- ---------- function "**" (Left : Complex; Right : Integer) return Complex is Exp : Integer := Right; Factor : Complex := Left; Result : Complex := (1.0, 0.0); begin -- We use the standard logarithmic approach, Exp gets shifted right -- testing successive low order bits and Factor is the value of the -- base raised to the next power of 2. For positive exponents we -- multiply the result by this factor, for negative exponents, we -- divide by this factor. if Exp >= 0 then -- For a positive exponent, if we get a constraint error during -- this loop, it is an overflow, and the constraint error will -- simply be passed on to the caller. while Exp /= 0 loop if Exp rem 2 /= 0 then Result := Result * Factor; end if; Factor := Factor * Factor; Exp := Exp / 2; end loop; return Result; else -- Exp < 0 then -- For the negative exponent case, a constraint error during this -- calculation happens if Factor gets too large, and the proper -- response is to return 0.0, since what we essentially have is -- 1.0 / infinity, and the closest model number will be zero. begin while Exp /= 0 loop if Exp rem 2 /= 0 then Result := Result * Factor; end if; Factor := Factor * Factor; Exp := Exp / 2; end loop; return R'(1.0) / Result; exception when Constraint_Error => return (0.0, 0.0); end; end if; end "**"; function "**" (Left : Imaginary; Right : Integer) return Complex is M : constant R := R (Left) ** Right; begin case Right mod 4 is when 0 => return (M, 0.0); when 1 => return (0.0, M); when 2 => return (-M, 0.0); when 3 => return (0.0, -M); when others => raise Program_Error; end case; end "**"; --------- -- "+" -- --------- function "+" (Right : Complex) return Complex is begin return Right; end "+"; function "+" (Left, Right : Complex) return Complex is begin return Complex'(Left.Re + Right.Re, Left.Im + Right.Im); end "+"; function "+" (Right : Imaginary) return Imaginary is begin return Right; end "+"; function "+" (Left, Right : Imaginary) return Imaginary is begin return Imaginary (R (Left) + R (Right)); end "+"; function "+" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re + Right, Left.Im); end "+"; function "+" (Left : Real'Base; Right : Complex) return Complex is begin return Complex'(Left + Right.Re, Right.Im); end "+"; function "+" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(Left.Re, Left.Im + R (Right)); end "+"; function "+" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(Right.Re, R (Left) + Right.Im); end "+"; function "+" (Left : Imaginary; Right : Real'Base) return Complex is begin return Complex'(Right, R (Left)); end "+"; function "+" (Left : Real'Base; Right : Imaginary) return Complex is begin return Complex'(Left, R (Right)); end "+"; --------- -- "-" -- --------- function "-" (Right : Complex) return Complex is begin return (-Right.Re, -Right.Im); end "-"; function "-" (Left, Right : Complex) return Complex is begin return (Left.Re - Right.Re, Left.Im - Right.Im); end "-"; function "-" (Right : Imaginary) return Imaginary is begin return Imaginary (-R (Right)); end "-"; function "-" (Left, Right : Imaginary) return Imaginary is begin return Imaginary (R (Left) - R (Right)); end "-"; function "-" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re - Right, Left.Im); end "-"; function "-" (Left : Real'Base; Right : Complex) return Complex is begin return Complex'(Left - Right.Re, -Right.Im); end "-"; function "-" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(Left.Re, Left.Im - R (Right)); end "-"; function "-" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(-Right.Re, R (Left) - Right.Im); end "-"; function "-" (Left : Imaginary; Right : Real'Base) return Complex is begin return Complex'(-Right, R (Left)); end "-"; function "-" (Left : Real'Base; Right : Imaginary) return Complex is begin return Complex'(Left, -R (Right)); end "-"; --------- -- "/" -- --------- function "/" (Left, Right : Complex) return Complex is A : constant R := Left.Re; B : constant R := Left.Im; C : constant R := Right.Re; D : constant R := Right.Im; begin if C = 0.0 and then D = 0.0 then raise Constraint_Error; else return Complex'(Re => ((A * C) + (B * D)) / (C ** 2 + D ** 2), Im => ((B * C) - (A * D)) / (C ** 2 + D ** 2)); end if; end "/"; function "/" (Left, Right : Imaginary) return Real'Base is begin return R (Left) / R (Right); end "/"; function "/" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re / Right, Left.Im / Right); end "/"; function "/" (Left : Real'Base; Right : Complex) return Complex is A : constant R := Left; C : constant R := Right.Re; D : constant R := Right.Im; begin return Complex'(Re => (A * C) / (C ** 2 + D ** 2), Im => -((A * D) / (C ** 2 + D ** 2))); end "/"; function "/" (Left : Complex; Right : Imaginary) return Complex is A : constant R := Left.Re; B : constant R := Left.Im; D : constant R := R (Right); begin return (B / D, -(A / D)); end "/"; function "/" (Left : Imaginary; Right : Complex) return Complex is B : constant R := R (Left); C : constant R := Right.Re; D : constant R := Right.Im; begin return (Re => B * D / (C ** 2 + D ** 2), Im => B * C / (C ** 2 + D ** 2)); end "/"; function "/" (Left : Imaginary; Right : Real'Base) return Imaginary is begin return Imaginary (R (Left) / Right); end "/"; function "/" (Left : Real'Base; Right : Imaginary) return Imaginary is begin return Imaginary (-(Left / R (Right))); end "/"; --------- -- "<" -- --------- function "<" (Left, Right : Imaginary) return Boolean is begin return R (Left) < R (Right); end "<"; ---------- -- "<=" -- ---------- function "<=" (Left, Right : Imaginary) return Boolean is begin return R (Left) <= R (Right); end "<="; --------- -- ">" -- --------- function ">" (Left, Right : Imaginary) return Boolean is begin return R (Left) > R (Right); end ">"; ---------- -- ">=" -- ---------- function ">=" (Left, Right : Imaginary) return Boolean is begin return R (Left) >= R (Right); end ">="; ----------- -- "abs" -- ----------- function "abs" (Right : Imaginary) return Real'Base is begin return abs R (Right); end "abs"; -------------- -- Argument -- -------------- function Argument (X : Complex) return Real'Base is A : constant R := X.Re; B : constant R := X.Im; Arg : R; begin if B = 0.0 then if A >= 0.0 then return 0.0; else return R'Copy_Sign (Pi, B); end if; elsif A = 0.0 then if B >= 0.0 then return Half_Pi; else return -Half_Pi; end if; else Arg := R (Arctan (LLF (abs (B / A)))); if A > 0.0 then if B > 0.0 then return Arg; else -- B < 0.0 return -Arg; end if; else -- A < 0.0 if B >= 0.0 then return Pi - Arg; else -- B < 0.0 return -(Pi - Arg); end if; end if; end if; exception when Constraint_Error => if B > 0.0 then return Half_Pi; else return -Half_Pi; end if; end Argument; function Argument (X : Complex; Cycle : Real'Base) return Real'Base is begin if Cycle > 0.0 then return Argument (X) * Cycle / Two_Pi; else raise Argument_Error; end if; end Argument; ---------------------------- -- Compose_From_Cartesian -- ---------------------------- function Compose_From_Cartesian (Re, Im : Real'Base) return Complex is begin return (Re, Im); end Compose_From_Cartesian; function Compose_From_Cartesian (Re : Real'Base) return Complex is begin return (Re, 0.0); end Compose_From_Cartesian; function Compose_From_Cartesian (Im : Imaginary) return Complex is begin return (0.0, R (Im)); end Compose_From_Cartesian; ------------------------ -- Compose_From_Polar -- ------------------------ function Compose_From_Polar (Modulus : Real'Base; Argument : Real'Base) return Complex is begin if Modulus = 0.0 then return (0.0, 0.0); else return (Modulus * R (Cos (LLF (Argument))), Modulus * R (Sin (LLF (Argument)))); end if; end Compose_From_Polar; function Compose_From_Polar (Modulus : Real'Base; Argument : Real'Base; Cycle : Real'Base) return Complex is Arg : Real'Base; begin if Modulus = 0.0 then return (0.0, 0.0); elsif Cycle > 0.0 then if Argument = 0.0 then return (Modulus, 0.0); elsif Argument = Cycle / 4.0 then return (0.0, Modulus); elsif Argument = Cycle / 2.0 then return (-Modulus, 0.0); elsif Argument = 3.0 * Cycle / R (4.0) then return (0.0, -Modulus); else Arg := Two_Pi * Argument / Cycle; return (Modulus * R (Cos (LLF (Arg))), Modulus * R (Sin (LLF (Arg)))); end if; else raise Argument_Error; end if; end Compose_From_Polar; --------------- -- Conjugate -- --------------- function Conjugate (X : Complex) return Complex is begin return Complex'(X.Re, -X.Im); end Conjugate; -------- -- Im -- -------- function Im (X : Complex) return Real'Base is begin return X.Im; end Im; function Im (X : Imaginary) return Real'Base is begin return R (X); end Im; ------------- -- Modulus -- ------------- function Modulus (X : Complex) return Real'Base is Im2 : R; Re2 : R; begin begin Re2 := X.Re ** 2; -- To compute (a**2 + b**2) ** (0.5) when a**2 may be out of bounds, -- compute a * (1 + (b/a) **2) ** (0.5). On a machine where the -- squaring does not raise constraint_error but generates infinity, -- we can use an explicit comparison to determine whether to use -- the scaling expression. -- The scaling expression is computed in double format throughout -- in order to prevent inaccuracies on machines where not all -- immediate expressions are rounded, such as PowerPC. -- ??? same weird test, why not Re2 > R'Last ??? if not (Re2 <= R'Last) then raise Constraint_Error; end if; exception when Constraint_Error => return R (LLF (abs (X.Re)) * Sqrt (1.0 + (LLF (X.Im) / LLF (X.Re)) ** 2)); end; begin Im2 := X.Im ** 2; -- ??? same weird test if not (Im2 <= R'Last) then raise Constraint_Error; end if; exception when Constraint_Error => return R (LLF (abs (X.Im)) * Sqrt (1.0 + (LLF (X.Re) / LLF (X.Im)) ** 2)); end; -- Now deal with cases of underflow. If only one of the squares -- underflows, return the modulus of the other component. If both -- squares underflow, use scaling as above. if Re2 = 0.0 then if X.Re = 0.0 then return abs (X.Im); elsif Im2 = 0.0 then if X.Im = 0.0 then return abs (X.Re); else if abs (X.Re) > abs (X.Im) then return R (LLF (abs (X.Re)) * Sqrt (1.0 + (LLF (X.Im) / LLF (X.Re)) ** 2)); else return R (LLF (abs (X.Im)) * Sqrt (1.0 + (LLF (X.Re) / LLF (X.Im)) ** 2)); end if; end if; else return abs (X.Im); end if; elsif Im2 = 0.0 then return abs (X.Re); -- In all other cases, the naive computation will do else return R (Sqrt (LLF (Re2 + Im2))); end if; end Modulus; -------- -- Re -- -------- function Re (X : Complex) return Real'Base is begin return X.Re; end Re; ------------ -- Set_Im -- ------------ procedure Set_Im (X : in out Complex; Im : Real'Base) is begin X.Im := Im; end Set_Im; procedure Set_Im (X : out Imaginary; Im : Real'Base) is begin X := Imaginary (Im); end Set_Im; ------------ -- Set_Re -- ------------ procedure Set_Re (X : in out Complex; Re : Real'Base) is begin X.Re := Re; end Set_Re; end Ada.Numerics.Generic_Complex_Types;
generic Fraction : Float; -- How large a fraction of the execution time should be allocated -- to creating backups. with procedure Save_State; -- Should save the relevant state. package JSA.Intermediate_Backups is procedure Begin_Loop with Pre => not In_Loop; -- To be called before entering a loop performing -- heavy/long-running calculations. -- -- Sets up timers and counters. procedure End_Of_Iteration with Pre => In_Loop; -- To be called at the end of a loop performing heavy/long-running -- calculations. -- -- Will call Save_State if it is considered timely. procedure End_Loop with Pre => In_Loop; -- To be called immediately after the end of a loop performing -- heavy/long-running calculations. -- -- Will call Save_State if the last execution of End_Of_Iteration -- didn't. function In_Loop return Boolean; end JSA.Intermediate_Backups;
-- This spec has been automatically generated from STM32L151.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.DAC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_TSEL1_Field is HAL.UInt3; subtype CR_WAVE1_Field is HAL.UInt2; subtype CR_MAMP1_Field is HAL.UInt4; subtype CR_TSEL2_Field is HAL.UInt3; subtype CR_WAVE2_Field is HAL.UInt2; subtype CR_MAMP2_Field is HAL.UInt4; -- control register type CR_Register is record -- DAC channel1 enable EN1 : Boolean := False; -- DAC channel1 output buffer disable BOFF1 : Boolean := False; -- DAC channel1 trigger enable TEN1 : Boolean := False; -- DAC channel1 trigger selection TSEL1 : CR_TSEL1_Field := 16#0#; -- DAC channel1 noise/triangle wave generation enable WAVE1 : CR_WAVE1_Field := 16#0#; -- DAC channel1 mask/amplitude selector MAMP1 : CR_MAMP1_Field := 16#0#; -- DAC channel1 DMA enable DMAEN1 : Boolean := False; -- DAC channel1 DMA Underrun Interrupt enable DMAUDRIE1 : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- DAC channel2 enable EN2 : Boolean := False; -- DAC channel2 output buffer disable BOFF2 : Boolean := False; -- DAC channel2 trigger enable TEN2 : Boolean := False; -- DAC channel2 trigger selection TSEL2 : CR_TSEL2_Field := 16#0#; -- DAC channel2 noise/triangle wave generation enable WAVE2 : CR_WAVE2_Field := 16#0#; -- DAC channel2 mask/amplitude selector MAMP2 : CR_MAMP2_Field := 16#0#; -- DAC channel2 DMA enable DMAEN2 : Boolean := False; -- DAC channel2 DMA underrun interrupt enable DMAUDRIE2 : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record EN1 at 0 range 0 .. 0; BOFF1 at 0 range 1 .. 1; TEN1 at 0 range 2 .. 2; TSEL1 at 0 range 3 .. 5; WAVE1 at 0 range 6 .. 7; MAMP1 at 0 range 8 .. 11; DMAEN1 at 0 range 12 .. 12; DMAUDRIE1 at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; EN2 at 0 range 16 .. 16; BOFF2 at 0 range 17 .. 17; TEN2 at 0 range 18 .. 18; TSEL2 at 0 range 19 .. 21; WAVE2 at 0 range 22 .. 23; MAMP2 at 0 range 24 .. 27; DMAEN2 at 0 range 28 .. 28; DMAUDRIE2 at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- SWTRIGR_SWTRIG array type SWTRIGR_SWTRIG_Field_Array is array (1 .. 2) of Boolean with Component_Size => 1, Size => 2; -- Type definition for SWTRIGR_SWTRIG type SWTRIGR_SWTRIG_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SWTRIG as a value Val : HAL.UInt2; when True => -- SWTRIG as an array Arr : SWTRIGR_SWTRIG_Field_Array; end case; end record with Unchecked_Union, Size => 2; for SWTRIGR_SWTRIG_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; -- software trigger register type SWTRIGR_Register is record -- Write-only. DAC channel1 software trigger SWTRIG : SWTRIGR_SWTRIG_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SWTRIGR_Register use record SWTRIG at 0 range 0 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype DHR12R1_DACC1DHR_Field is HAL.UInt12; -- channel1 12-bit right-aligned data holding register type DHR12R1_Register is record -- DAC channel1 12-bit right-aligned data DACC1DHR : DHR12R1_DACC1DHR_Field := 16#0#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12R1_Register use record DACC1DHR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DHR12L1_DACC1DHR_Field is HAL.UInt12; -- channel1 12-bit left aligned data holding register type DHR12L1_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel1 12-bit left-aligned data DACC1DHR : DHR12L1_DACC1DHR_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 DHR12L1_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC1DHR at 0 range 4 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DHR8R1_DACC1DHR_Field is HAL.UInt8; -- channel1 8-bit right aligned data holding register type DHR8R1_Register is record -- DAC channel1 8-bit right-aligned data DACC1DHR : DHR8R1_DACC1DHR_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 DHR8R1_Register use record DACC1DHR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype DHR12R2_DACC2DHR_Field is HAL.UInt12; -- channel2 12-bit right aligned data holding register type DHR12R2_Register is record -- DAC channel2 12-bit right-aligned data DACC2DHR : DHR12R2_DACC2DHR_Field := 16#0#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12R2_Register use record DACC2DHR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DHR12L2_DACC2DHR_Field is HAL.UInt12; -- channel2 12-bit left aligned data holding register type DHR12L2_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit left-aligned data DACC2DHR : DHR12L2_DACC2DHR_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 DHR12L2_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC2DHR at 0 range 4 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DHR8R2_DACC2DHR_Field is HAL.UInt8; -- channel2 8-bit right-aligned data holding register type DHR8R2_Register is record -- DAC channel2 8-bit right-aligned data DACC2DHR : DHR8R2_DACC2DHR_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 DHR8R2_Register use record DACC2DHR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype DHR12RD_DACC1DHR_Field is HAL.UInt12; subtype DHR12RD_DACC2DHR_Field is HAL.UInt12; -- Dual DAC 12-bit right-aligned data holding register type DHR12RD_Register is record -- DAC channel1 12-bit right-aligned data DACC1DHR : DHR12RD_DACC1DHR_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit right-aligned data DACC2DHR : DHR12RD_DACC2DHR_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12RD_Register use record DACC1DHR at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; DACC2DHR at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype DHR12LD_DACC1DHR_Field is HAL.UInt12; subtype DHR12LD_DACC2DHR_Field is HAL.UInt12; -- DUAL DAC 12-bit left aligned data holding register type DHR12LD_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- DAC channel1 12-bit left-aligned data DACC1DHR : DHR12LD_DACC1DHR_Field := 16#0#; -- unspecified Reserved_16_19 : HAL.UInt4 := 16#0#; -- DAC channel2 12-bit left-aligned data DACC2DHR : DHR12LD_DACC2DHR_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DHR12LD_Register use record Reserved_0_3 at 0 range 0 .. 3; DACC1DHR at 0 range 4 .. 15; Reserved_16_19 at 0 range 16 .. 19; DACC2DHR at 0 range 20 .. 31; end record; subtype DHR8RD_DACC1DHR_Field is HAL.UInt8; subtype DHR8RD_DACC2DHR_Field is HAL.UInt8; -- DUAL DAC 8-bit right aligned data holding register type DHR8RD_Register is record -- DAC channel1 8-bit right-aligned data DACC1DHR : DHR8RD_DACC1DHR_Field := 16#0#; -- DAC channel2 8-bit right-aligned data DACC2DHR : DHR8RD_DACC2DHR_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 DHR8RD_Register use record DACC1DHR at 0 range 0 .. 7; DACC2DHR at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DOR1_DACC1DOR_Field is HAL.UInt12; -- channel1 data output register type DOR1_Register is record -- Read-only. DAC channel1 data output DACC1DOR : DOR1_DACC1DOR_Field; -- unspecified Reserved_12_31 : HAL.UInt20; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DOR1_Register use record DACC1DOR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype DOR2_DACC2DOR_Field is HAL.UInt12; -- channel2 data output register type DOR2_Register is record -- Read-only. DAC channel2 data output DACC2DOR : DOR2_DACC2DOR_Field; -- unspecified Reserved_12_31 : HAL.UInt20; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DOR2_Register use record DACC2DOR at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; -- status register type SR_Register is record -- unspecified Reserved_0_12 : HAL.UInt13 := 16#0#; -- DAC channel1 DMA underrun flag DMAUDR1 : Boolean := False; -- unspecified Reserved_14_28 : HAL.UInt15 := 16#0#; -- DAC channel2 DMA underrun flag DMAUDR2 : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record Reserved_0_12 at 0 range 0 .. 12; DMAUDR1 at 0 range 13 .. 13; Reserved_14_28 at 0 range 14 .. 28; DMAUDR2 at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Digital-to-analog converter type DAC_Peripheral is record -- control register CR : aliased CR_Register; -- software trigger register SWTRIGR : aliased SWTRIGR_Register; -- channel1 12-bit right-aligned data holding register DHR12R1 : aliased DHR12R1_Register; -- channel1 12-bit left aligned data holding register DHR12L1 : aliased DHR12L1_Register; -- channel1 8-bit right aligned data holding register DHR8R1 : aliased DHR8R1_Register; -- channel2 12-bit right aligned data holding register DHR12R2 : aliased DHR12R2_Register; -- channel2 12-bit left aligned data holding register DHR12L2 : aliased DHR12L2_Register; -- channel2 8-bit right-aligned data holding register DHR8R2 : aliased DHR8R2_Register; -- Dual DAC 12-bit right-aligned data holding register DHR12RD : aliased DHR12RD_Register; -- DUAL DAC 12-bit left aligned data holding register DHR12LD : aliased DHR12LD_Register; -- DUAL DAC 8-bit right aligned data holding register DHR8RD : aliased DHR8RD_Register; -- channel1 data output register DOR1 : aliased DOR1_Register; -- channel2 data output register DOR2 : aliased DOR2_Register; -- status register SR : aliased SR_Register; end record with Volatile; for DAC_Peripheral use record CR at 16#0# range 0 .. 31; SWTRIGR at 16#4# range 0 .. 31; DHR12R1 at 16#8# range 0 .. 31; DHR12L1 at 16#C# range 0 .. 31; DHR8R1 at 16#10# range 0 .. 31; DHR12R2 at 16#14# range 0 .. 31; DHR12L2 at 16#18# range 0 .. 31; DHR8R2 at 16#1C# range 0 .. 31; DHR12RD at 16#20# range 0 .. 31; DHR12LD at 16#24# range 0 .. 31; DHR8RD at 16#28# range 0 .. 31; DOR1 at 16#2C# range 0 .. 31; DOR2 at 16#30# range 0 .. 31; SR at 16#34# range 0 .. 31; end record; -- Digital-to-analog converter DAC_Periph : aliased DAC_Peripheral with Import, Address => System'To_Address (16#40007400#); end STM32_SVD.DAC;
package body Options is SCCS_ID : constant String := "@(#) options.ada, Version 1.2"; Rcs_ID : constant String := "$Header: options.a,v 0.1 86/04/01 15:08:15 ada Exp $"; Verbose_Option : Boolean := False; Verbose_Conflict_Option : Boolean := False; Debug_Option : Boolean := False; Interface_to_C_Option : Boolean := False; Summary_Option : Boolean := False; Loud_Option : Boolean := False; -- UMASS CODES : Error_Recovery_Extension_Option : Boolean := False; -- END OF UMASS CODES. procedure Set_Options(S: in String) is begin for I in S'First..S'Last loop case S(I) is when 'v' | 'V' => Verbose_Option := True; when 'c' | 'C' => Verbose_Conflict_Option := True; when 'd' | 'D' => Debug_Option := True; when 'i' | 'I' => Interface_to_C_Option := True; when 's' | 'S' => Summary_Option := True; when 'l' | 'L' => Loud_Option := True; -- UMASS CODES : when 'e' | 'E' => Error_Recovery_Extension_Option := True; -- END OF UMASS CODES. when others => raise Illegal_Option; end case; end loop; end Set_Options; function Verbose return Boolean is begin return Verbose_Option; end; function Verbose_Conflict return Boolean is begin return Verbose_Conflict_Option; end; function Debug return Boolean is begin return Debug_Option; end; function Interface_to_C return Boolean is begin return Interface_to_C_Option; end; function Summary return Boolean is begin return Summary_Option; end; function Loud return Boolean is begin return Loud_Option; end; -- UMASS CODES : function Error_Recovery_Extension return Boolean is begin return Error_Recovery_Extension_Option; end; -- END OF UMASS CODES. end Options;
with e_Derivs; with Ada.Numerics.Generic_Elementary_Functions; with Extended_Real; with Extended_Real.Elementary_Functions; with Extended_Real.IO; with Text_IO; use Text_IO; procedure e_deriv_tst_1 is type Real_8 is digits 15; package mth is new Ada.Numerics.Generic_Elementary_Functions (Real_8); use mth; package ext is new Extended_Real (Real_8); use ext; package fnc is new ext.Elementary_Functions (Sqrt, Log, Exp, Arcsin); use fnc; package eio is new ext.IO; -- extented IO use eio; subtype Real is e_Real; Max_Order_Of_Deriv : constant Positive := 40; package dif is new e_Derivs (Max_Order_Of_Deriv, Real, Real_8); use dif; w, Phase : Real := +1.0; Time, t : Real; FullDuration : constant Real := +1.0; No_Of_Steps : constant Integer := 100; DeltaT : Real := FullDuration / (+Real_8(No_Of_Steps)); G, H : Derivatives := (others => +0.0); Deriv0, Deriv1, Deriv2, Deriv3, Deriv4, Deriv5, Deriv6 : Real; Error : Array(Deriv_Index) of Real := (others => +0.0); Max_Error : Real; Three : constant Real := +3.0; begin -- REMEMBER, Functions return REDUCED derivatives. --********************************************************************* -- Test 1. H = Exp_d(Sin_d(t)) --********************************************************************* -- H = f(g(t)) = Exp(Sin(t)) -- d^1 H = Cos(t)*Exp(Sin(t)) -- d^2 H = (-Sin(t) + Cos(t)**2) * Exp(Sin(t)) -- d^3 H = (-Cos(t) -3*Sin(t)*Cos(t) + Cos(t)**3) * Exp(Sin(t)) -- d^4 H = ((-Cos(t) -3*Sin(t)*Cos(t) + Cos(t)**3) * Cos(t) + -- (Sin(t) - 3*Cos(t)**2 + 3*Sin(t)**2 - 3*Sin(t)*Cos(t)**2))*Exp(Sin(t)) Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; G := Sin_d (t); H := Compose (Exp_d (G(0)), G); -- Exp (Sin (t)) Deriv0 := Exp (Sin (t)); Deriv1 := Cos(t) * Exp(Sin(t)); Deriv2 := (-Sin(t) + Cos(t)**2) * Exp(Sin(t)); Deriv3 := (-Cos(t) - Three*Sin(t)*Cos(t) + Cos(t)**3) * Exp(Sin(t)); Deriv4 := ((-Cos(t) -Three*Sin(t)*Cos(t) + Cos(t)**3) * Cos(t) + (Sin(t) - Three*Cos(t)**2 + Three*Sin(t)**2 - Three*Sin(t)*Cos(t)**2))*Exp(Sin(t)); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); for I in 0..4 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 1: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 2. H = Sin_d(t**3) --********************************************************************* -- H = f(g(t)) = Sin(t**3) -- d^1 H = 3*t**2 * Cos(t**3) -- d^2 H = 6*t * Cos(t**3) - 9*t**4 * Sin(t**3) Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; G := Time ** 3; H := Compose (Sin_d (G(0)), G); -- Sin (Time**3) Deriv0 := Sin(Time**3); Deriv1 := (+3.0)*Time**2 * COS(Time**3); Deriv2 := (+6.0)*Time*Cos(Time**3) - (+9.0)*Time**4*Sin(Time**3); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); for I in 0..2 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 2: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 3. H = Sin_d(t)**5 --********************************************************************* -- H = g(t)**5 = Sin(t)**5 -- d^1 H = 5 * Cos(t) * Sin(t)**4 -- d^2 H = 20 * Cos(t)**2 * Sin(t)**3 - 5 * Sin(t)**5 -- d^3 H = -40 * Cos(t) * Sin(t)**4 + 60 * Cos(t)**3 * Sin(t)**2 -- - 25 * Cos(t) * Sin(t)**4 Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Sin_d(Time) ** 5; Deriv0 := Sin(t)**5; Deriv1 := (+5.0) * Cos(t) * Sin(t)**4 ; Deriv2 := (+20.0) * Cos(t)**2 * Sin(t)**3 - (+5.0) * Sin(t)**5; Deriv3 := (-40.0) * Cos(t) * Sin(t)**4 + (+60.0) * Cos(t)**3 * Sin(t)**2 - (+25.0) * Cos(t) * Sin(t)**4; Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); for I in 0..3 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 3: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 4. H = t**4 --********************************************************************* -- H = = t**4 -- d^1 H = 4 * t**3 -- d^2 H = 12 * t**2 -- d^3 H = 24 * t -- d^4 H = 24 -- d^5 H = 0 -- d^6 H = 0 Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := t ** 4; Deriv0 := t ** 4; Deriv1 := (+4.0) * t**3; Deriv2 := (+12.0) * t**2; Deriv3 := (+24.0) * t; Deriv4 := +24.0; Deriv5 := Zero; Deriv6 := Zero; Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); Error(5) := Abs (H(5) - Deriv5); Error(6) := Abs (H(6) - Deriv6); for I in 0..6 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 4: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 5. H = Sin_d (w * t + phase) --********************************************************************* -- H = Sin (w * t + phase) -- d^1 H = w**1 * Cos (w * t + phase) -- d^2 H = -w**2 * Sin (w * t + phase) -- d^3 H = -w**3 * Cos (w * t + phase) -- d^4 H = w**4 * Sin (w * t + phase) -- d^5 H = w**5 * Cos (w * t + phase) -- d^6 H = -w**6 * Sin (w * t + phase) Max_Error := Zero; w := +0.92345; phase := +0.34567; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Sin_d (t, w, phase); Deriv0 := Sin (w * t + phase); Deriv1 := w**1 * Cos (w * t + phase); Deriv2 := -w**2 * Sin (w * t + phase); Deriv3 := -w**3 * Cos (w * t + phase); Deriv4 := w**4 * Sin (w * t + phase); Deriv5 := w**5 * Cos (w * t + phase); Deriv6 := -w**6 * Sin (w * t + phase); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); Error(5) := Abs (H(5) - Deriv5); Error(6) := Abs (H(6) - Deriv6); for I in 0..6 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 5: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 6. H = Log_d (w * t + phase). -- This also test Reciprocal : Real -> Derivative. --********************************************************************* Max_Error := Zero; w := +0.22345; phase := +0.34567; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Log_d (t, w, phase); Deriv0 := Log (w * t + phase); Deriv1 := w**1 / (w * t + phase); Deriv2 := -w**2 / (w * t + phase)**2; Deriv3 := (+2.0) * w**3 / (w * t + phase)**3; Deriv4 := (-6.0) * w**4 / (w * t + phase)**4; Deriv5 := (+24.0) * w**5 / (w * t + phase)**5; Deriv6 := (-120.0) * w**6 / (w * t + phase)**6; Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); Error(5) := Abs (H(5) - Deriv5); Error(6) := Abs (H(6) - Deriv6); for I in 0..6 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 6: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 7. H = Cos_d (w * t + phase) --********************************************************************* Max_Error := Zero; w := +0.92345; phase := +0.34567; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Cos_d (t, w, phase); Deriv0 := Cos (w * t + phase); Deriv1 := -w**1 * Sin (w * t + phase); Deriv2 := -w**2 * Cos (w * t + phase); Deriv3 := w**3 * Sin (w * t + phase); Deriv4 := w**4 * Cos (w * t + phase); Deriv5 := -w**5 * Sin (w * t + phase); Deriv6 := -w**6 * Cos (w * t + phase); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); Error(5) := Abs (H(5) - Deriv5); Error(6) := Abs (H(6) - Deriv6); for I in 0..6 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 7: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 8. H = Sin_d / Cos_d; --********************************************************************* Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Sin_d (t) / Cos_d (t); Deriv0 := Sin(t) / Cos(t); Deriv1 := (+1.0) / Cos(t)**2; Deriv2 := (+2.0) * Sin(t) / Cos(t)**3; Deriv3 := (+2.0) / Cos(t)**2 + (+6.0) * Sin(t)**2 / Cos(t)**4; Deriv4 := (+4.0) * Sin(t) / Cos(t)**3 + (+12.0) * Sin(t) / Cos (t)**3 + (+24.0) * Sin(t)**3 / Cos(t)**5; Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); Error(4) := Abs (H(4) - Deriv4); for I in 0..4 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 8: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 9. H = Sqrt_d; --********************************************************************* Max_Error := Zero; DeltaT := One / (+(No_Of_Steps + 1)); for I in 2..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Sqrt_d (t); Deriv0 := Sqrt(t); Deriv1 := (+0.5) / Sqrt (t); Deriv2 := -(+0.5)*(+0.5)/ ((t) * Sqrt (t)); Deriv3 := (+0.5)*(+0.5)*(+0.5)*(+3.0)/ (t * t * Sqrt (t)); --Deriv4 := -(+0.5)*(+0.5)*(+0.5)*(+0.5)*(+3.0)*(+5.0)/ (t * t * t * Sqrt (t)); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); --Error(4) := Abs (H(4) - Deriv4); for I in 0..3 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 9: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 10. H = Arcsin_d; tests Compose and "/". --********************************************************************* Max_Error := Zero; DeltaT := One / (+Real_8(No_Of_Steps + 7)); for I in 1..No_Of_Steps loop Time := (+Real_8 (I)) * DeltaT; t := Time; H := Arcsin_d (t); Deriv0 := Arcsin(t); Deriv1 := One / Sqrt (One - t*t); Deriv2 := t / ((One - t*t) * Sqrt (One - t*t)); Deriv3 := One / ((One - t*t) * Sqrt (One - t*t)) + (+3.0)*t*t / ((One - t*t)*(One - t*t) * Sqrt (One - t*t)); Deriv4 := (+9.0)* t / ((One - t*t)*(One - t*t)*Sqrt (One - t*t)) + (+3.0)*(+5.0)*t*t*t / ((One - t*t)*(One - t*t)*(One - t*t)*Sqrt (One - t*t)); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); --Error(4) := Abs (H(4) - Deriv4); for I in 0..3 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 10: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 11. H = Arctan_d; tests Compose and "/". --********************************************************************* Max_Error := Zero; DeltaT := One / (+(No_Of_Steps + 7)); for I in 1..No_Of_Steps loop Time := (+Real_8(I)) * DeltaT; t := Time; H := Arctan_d (t); Deriv0 := Arcsin (t / Sqrt (One + t*t)); Deriv1 := One / (One + t*t); Deriv2 := -(+2.0) * t / ((One + t*t)**2); Deriv3 := -(+2.0) / ((One + t*t)**2) + (+8.0)*t*t / ((One + t*t)**3); Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs (H(2) - Deriv2); Error(3) := Abs (H(3) - Deriv3); for I in 0..3 loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 11: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 12. H = Exp_d (Log_d (t)) -- -- Test the reduced derivs. Un-reduced get too large. --********************************************************************* -- H = f(g(t)) = Exp_d (Log_d (t)) -- d^1 H = One -- d^2 H = Zero Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I)) * (+0.5) + (+5.0); t := Time; G := Log_d (t); H := Compose (Exp_d (G(0)), G); -- Exp (Log (t)) Deriv0 := t; Deriv1 := One; Deriv2 := Zero; --Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs ((+2.0)*H(2) - Deriv2); for I in 3..Max_Order_Of_Deriv loop Error(I) := Abs (H(I)); end loop; for I in 0..Max_Order_Of_Deriv loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 12: "); put (e_Real_Image (Max_Error, Aft => 20)); --********************************************************************* -- Test 13. H = Sin_d (Arcsin_d (t)) -- -- Test the reduced derivs. Un-reduced get too large. --********************************************************************* -- H = f(g(t)) = Sin_d (Arcsin_d (t)) -- d^1 H = One -- d^2 H = Zero Max_Error := Zero; for I in 0..No_Of_Steps loop Time := (+Real_8 (I + 1)) * DeltaT / (+Real_8 (I + 2)); t := Time; G := Arcsin_d (t); H := Compose (Sin_d (G(0)), G); -- Sin_d (Arcsin_d (t)) Deriv0 := t; Deriv1 := One; Deriv2 := Zero; --Un_Reduce (H); Error(0) := Abs (H(0) - Deriv0); Error(1) := Abs (H(1) - Deriv1); Error(2) := Abs ((+2.0)*H(2) - Deriv2); for I in 3..Max_Order_Of_Deriv loop Error(I) := Abs (H(I)); end loop; for I in 0..Max_Order_Of_Deriv loop if Error(I) > Max_Error then Max_Error := Error(I); end if; end loop; end loop; new_line; put("Max error, test 13: "); put (e_Real_Image (Max_Error, Aft => 20)); end;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . B O A R D _ P A R A M E T E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2012-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ -- This package defines board parameters for the SiFive Unleashed with Interfaces; package System.BB.Board_Parameters is pragma No_Elaboration_Code_All; pragma Pure; -------------------- -- Hardware clock -- -------------------- Clock_Scale : constant := 1; -- Scaling factor for clock frequency. This is used to provide a clock -- frequency that results in a definition of Time_Unit less than 20 -- microseconds (as Ada RM D.8 (30) requires). Decrementer_Frequency : constant Positive := 1_000_000; -- Frequency of the system clock for the decrementer timer Clock_Frequency : constant Positive := Decrementer_Frequency * Clock_Scale; -- Scaled clock frequency CLINT_Base_Address : constant := 16#0200_0000#; CLINT_Mtime_Offset : constant := 16#BFF8#; CLINT_Mtimecmp_Offset : constant := 16#4008#; -- mtimecmp for hart 1 Mtime_Base_Address : constant := CLINT_Base_Address + CLINT_Mtime_Offset; -- Address of the memory mapped mtime register Mtimecmp_Base_Address : constant := CLINT_Base_Address + CLINT_Mtimecmp_Offset; -- Address of the memory mapped mtimecmp register GDB_First_CPU_Id : constant Interfaces.Unsigned_32 := 1; pragma Export (C, GDB_First_CPU_Id, "__gnat_gdb_cpu_first_id"); -- This value is used by GDB to know the hardware id of the first CPU used -- by the run-time. On this board CPU #0 (the monitor) is not used, -- therefore the first id is 1. end System.BB.Board_Parameters;
-- Copyright 2010-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/>. with Pck; use Pck; procedure Foo is My_Shape : Circle := (X => 1, Y => 2, R => 3); X : Integer; begin X := Position_X (My_Shape); end Foo;
with Ada.Text_IO; with Ada.Text_IO.Complex_IO; with Ada.Numerics.Generic_Real_Arrays; with Ada.Numerics.Generic_Complex_Types; with Ada.Numerics.Generic_Complex_Arrays; with Ada.Numerics.Generic_Elementary_Functions; with Ada.Numerics.Generic_Complex_Elementary_Functions; with Ada_Lapack; with Ada_Lapack.Extras; use Ada.Text_IO; procedure example04 is type Real is digits 18; package Real_Arrays is new Ada.Numerics.Generic_Real_Arrays (Real); package Complex_Types is new Ada.Numerics.Generic_Complex_Types (Real); package Complex_Arrays is new Ada.Numerics.Generic_Complex_Arrays (Real_Arrays, Complex_Types); package Real_Maths is new Ada.Numerics.Generic_Elementary_Functions (Real); package Complex_Maths is new Ada.Numerics.Generic_Complex_Elementary_Functions (Complex_Types); package Real_IO is new Ada.Text_IO.Float_IO (Real); package Integer_IO is new Ada.Text_IO.Integer_IO (Integer); package Complex_IO is new Ada.Text_IO.Complex_IO (Complex_Types); package Lapack is new Ada_Lapack(Real, Complex_Types, Real_Arrays, Complex_Arrays); package Extras is new Lapack.Extras; use Lapack; use Extras; use Real_Arrays; use Complex_Types; use Complex_Arrays; use Real_IO; use Integer_IO; use Complex_IO; use Real_Maths; use Complex_Maths; matrix : Complex_Matrix (1..4,1..4); inverse : Complex_Matrix (1..4,1..4); begin matrix :=( (( 1.23, -5.50), ( 7.91, -5.38), ( -9.80, -4.86), ( -7.32, 7.57)), (( -2.14, -1.12), ( -9.92, -0.79), ( -9.18, -1.12), ( 1.37, 0.43)), (( -4.30, -7.10), ( -6.47, 2.52), ( -6.51, -2.67), ( -5.86, 7.38)), (( 1.27, 7.29), ( 8.90, 6.92), ( -8.82, 1.25), ( 5.41, 5.37)) ); inverse := MatrixInverse (matrix); Put_line ("Inverse"); for i in inverse'range(1) loop for j in inverse'range(2) loop put(" "); put(inverse(i,j),3,3,0); end loop; new_line; end loop; end example04;
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks_shared; package ewok.syscalls.cfg.gpio with spark_mode => on is procedure svc_gpio_set (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode); procedure svc_gpio_get (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode); procedure svc_gpio_unlock_exti (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode); end ewok.syscalls.cfg.gpio;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Read_Is_Classified_Object_Actions.Hash is new AMF.Elements.Generic_Hash (UML_Read_Is_Classified_Object_Action, UML_Read_Is_Classified_Object_Action_Access);
package body STM32GD.SPI.Peripheral is procedure Init is begin null; end Init; procedure Transfer (Data : in out SPI_Data_8b) is begin while SPI.SR.TXE = 0 loop null; end loop; SPI.DR.DR := UInt16 (Data (0)); while SPI.SR.RXNE = 0 loop null; end loop; Data (0) := Byte (SPI.DR.DR); end Transfer; end STM32GD.SPI.Peripheral;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.DC; with AMF.DG; with AMF.Real_Collections; with Matreshka.Internals.Strings; package AMF.Internals.Tables.DD_Attributes is function Internal_Get_Alignment (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Alignment_Kind; procedure Internal_Set_Alignment (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Alignment_Kind); -- Text => Text::alignment function Internal_Get_Background_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color; procedure Internal_Set_Background_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color); -- Canvas => Canvas::backgroundColor function Internal_Get_Background_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Background_Fill (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Canvas => Canvas::backgroundFill function Internal_Get_Bounds (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Bounds; procedure Internal_Set_Bounds (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Bounds); -- Image => Image::bounds -- Pattern => Pattern::bounds -- Rectangle => Rectangle::bounds -- Text => Text::bounds function Internal_Get_Canvas (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Canvas (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- LinearGradient => Fill::canvas -- Marker => Marker::canvas -- Pattern => Fill::canvas -- RadialGradient => Fill::canvas function Internal_Get_Center (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point; procedure Internal_Set_Center (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point); -- Circle => Circle::center -- Ellipse => Ellipse::center function Internal_Get_Center_X (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Center_X (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- RadialGradient => RadialGradient::centerX function Internal_Get_Center_Y (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Center_Y (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- RadialGradient => RadialGradient::centerY function Internal_Get_Clip_Path (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Clip_Path (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Canvas => GraphicalElement::clipPath -- Circle => GraphicalElement::clipPath -- ClipPath => GraphicalElement::clipPath -- Ellipse => GraphicalElement::clipPath -- Group => GraphicalElement::clipPath -- Image => GraphicalElement::clipPath -- Line => GraphicalElement::clipPath -- MarkedElement => GraphicalElement::clipPath -- Marker => GraphicalElement::clipPath -- Path => GraphicalElement::clipPath -- Polygon => GraphicalElement::clipPath -- Polyline => GraphicalElement::clipPath -- Rectangle => GraphicalElement::clipPath -- Text => GraphicalElement::clipPath function Internal_Get_Clipped_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Clipped_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- ClipPath => ClipPath::clippedElement function Internal_Get_Command (Self : AMF.Internals.AMF_Element) return AMF.DG.Sequence_Of_Path_Command; -- Path => Path::command function Internal_Get_Corner_Radius (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Corner_Radius (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- Rectangle => Rectangle::cornerRadius function Internal_Get_Data (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Data (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Text => Text::data function Internal_Get_End (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point; procedure Internal_Set_End (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point); -- Line => Line::end function Internal_Get_End_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_End_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Line => MarkedElement::endMarker -- MarkedElement => MarkedElement::endMarker -- Path => MarkedElement::endMarker -- Polygon => MarkedElement::endMarker -- Polyline => MarkedElement::endMarker function Internal_Get_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Fill (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Style => Style::fill function Internal_Get_Fill_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color; procedure Internal_Set_Fill_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color); -- Style => Style::fillColor function Internal_Get_Fill_Opacity (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real; procedure Internal_Set_Fill_Opacity (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real); -- Style => Style::fillOpacity function Internal_Get_Focus_X (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Focus_X (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- RadialGradient => RadialGradient::focusX function Internal_Get_Focus_Y (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Focus_Y (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- RadialGradient => RadialGradient::focusY function Internal_Get_Font_Bold (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_Font_Bold (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- Style => Style::fontBold function Internal_Get_Font_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color; procedure Internal_Set_Font_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color); -- Style => Style::fontColor function Internal_Get_Font_Italic (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_Font_Italic (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- Style => Style::fontItalic function Internal_Get_Font_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Font_Name (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Style => Style::fontName function Internal_Get_Font_Size (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real; procedure Internal_Set_Font_Size (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real); -- Style => Style::fontSize function Internal_Get_Font_Strike_Through (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_Font_Strike_Through (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- Style => Style::fontStrikeThrough function Internal_Get_Font_Underline (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean; procedure Internal_Set_Font_Underline (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean); -- Style => Style::fontUnderline function Internal_Get_Group (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Group (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Canvas => GraphicalElement::group -- Circle => GraphicalElement::group -- ClipPath => GraphicalElement::group -- Ellipse => GraphicalElement::group -- Group => GraphicalElement::group -- Image => GraphicalElement::group -- Line => GraphicalElement::group -- MarkedElement => GraphicalElement::group -- Marker => GraphicalElement::group -- Path => GraphicalElement::group -- Polygon => GraphicalElement::group -- Polyline => GraphicalElement::group -- Rectangle => GraphicalElement::group -- Text => GraphicalElement::group function Internal_Get_Is_Aspect_Ratio_Preserved (Self : AMF.Internals.AMF_Element) return Boolean; procedure Internal_Set_Is_Aspect_Ratio_Preserved (Self : AMF.Internals.AMF_Element; To : Boolean); -- Image => Image::isAspectRatioPreserved function Internal_Get_Local_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => GraphicalElement::localStyle -- Circle => GraphicalElement::localStyle -- ClipPath => GraphicalElement::localStyle -- Ellipse => GraphicalElement::localStyle -- Group => GraphicalElement::localStyle -- Image => GraphicalElement::localStyle -- Line => GraphicalElement::localStyle -- MarkedElement => GraphicalElement::localStyle -- Marker => GraphicalElement::localStyle -- Path => GraphicalElement::localStyle -- Polygon => GraphicalElement::localStyle -- Polyline => GraphicalElement::localStyle -- Rectangle => GraphicalElement::localStyle -- Text => GraphicalElement::localStyle function Internal_Get_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => Group::member -- ClipPath => Group::member -- Group => Group::member -- Marker => Group::member function Internal_Get_Mid_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Mid_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Line => MarkedElement::midMarker -- MarkedElement => MarkedElement::midMarker -- Path => MarkedElement::midMarker -- Polygon => MarkedElement::midMarker -- Polyline => MarkedElement::midMarker function Internal_Get_Packaged_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => Canvas::packagedFill function Internal_Get_Packaged_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => Canvas::packagedMarker function Internal_Get_Packaged_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => Canvas::packagedStyle function Internal_Get_Point (Self : AMF.Internals.AMF_Element) return AMF.DC.Sequence_Of_DC_Point; -- Polygon => Polygon::point -- Polyline => Polyline::point function Internal_Get_Radii (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Dimension; procedure Internal_Set_Radii (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Dimension); -- Ellipse => Ellipse::radii function Internal_Get_Radius (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Radius (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- Circle => Circle::radius -- RadialGradient => RadialGradient::radius function Internal_Get_Reference (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point; procedure Internal_Set_Reference (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point); -- Marker => Marker::reference function Internal_Get_Shared_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element; -- Canvas => GraphicalElement::sharedStyle -- Circle => GraphicalElement::sharedStyle -- ClipPath => GraphicalElement::sharedStyle -- Ellipse => GraphicalElement::sharedStyle -- Group => GraphicalElement::sharedStyle -- Image => GraphicalElement::sharedStyle -- Line => GraphicalElement::sharedStyle -- MarkedElement => GraphicalElement::sharedStyle -- Marker => GraphicalElement::sharedStyle -- Path => GraphicalElement::sharedStyle -- Polygon => GraphicalElement::sharedStyle -- Polyline => GraphicalElement::sharedStyle -- Rectangle => GraphicalElement::sharedStyle -- Text => GraphicalElement::sharedStyle function Internal_Get_Size (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Dimension; procedure Internal_Set_Size (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Dimension); -- Marker => Marker::size function Internal_Get_Source (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access; procedure Internal_Set_Source (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access); -- Image => Image::source function Internal_Get_Start (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point; procedure Internal_Set_Start (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point); -- Line => Line::start function Internal_Get_Start_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Start_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Line => MarkedElement::startMarker -- MarkedElement => MarkedElement::startMarker -- Path => MarkedElement::startMarker -- Polygon => MarkedElement::startMarker -- Polyline => MarkedElement::startMarker function Internal_Get_Stop (Self : AMF.Internals.AMF_Element) return AMF.DG.Set_Of_DG_Gradient_Stop; -- LinearGradient => Gradient::stop -- RadialGradient => Gradient::stop function Internal_Get_Stroke_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color; procedure Internal_Set_Stroke_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color); -- Style => Style::strokeColor function Internal_Get_Stroke_Dash_Length (Self : AMF.Internals.AMF_Element) return AMF.Real_Collections.Sequence_Of_Real; -- Style => Style::strokeDashLength function Internal_Get_Stroke_Opacity (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real; procedure Internal_Set_Stroke_Opacity (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real); -- Style => Style::strokeOpacity function Internal_Get_Stroke_Width (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real; procedure Internal_Set_Stroke_Width (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real); -- Style => Style::strokeWidth function Internal_Get_Tile (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element; procedure Internal_Set_Tile (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element); -- Pattern => Pattern::tile function Internal_Get_Transform (Self : AMF.Internals.AMF_Element) return AMF.DG.Sequence_Of_DG_Transform; -- Canvas => GraphicalElement::transform -- Circle => GraphicalElement::transform -- ClipPath => GraphicalElement::transform -- Ellipse => GraphicalElement::transform -- Group => GraphicalElement::transform -- Image => GraphicalElement::transform -- Line => GraphicalElement::transform -- LinearGradient => Fill::transform -- MarkedElement => GraphicalElement::transform -- Marker => GraphicalElement::transform -- Path => GraphicalElement::transform -- Pattern => Fill::transform -- Polygon => GraphicalElement::transform -- Polyline => GraphicalElement::transform -- RadialGradient => Fill::transform -- Rectangle => GraphicalElement::transform -- Text => GraphicalElement::transform function Internal_Get_X1 (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_X1 (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- LinearGradient => LinearGradient::x1 function Internal_Get_X2 (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_X2 (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- LinearGradient => LinearGradient::x2 function Internal_Get_Y1 (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Y1 (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- LinearGradient => LinearGradient::y1 function Internal_Get_Y2 (Self : AMF.Internals.AMF_Element) return AMF.Real; procedure Internal_Set_Y2 (Self : AMF.Internals.AMF_Element; To : AMF.Real); -- LinearGradient => LinearGradient::y2 end AMF.Internals.Tables.DD_Attributes;
package Renaming2_Pkg2 is type Root is private; private type Root (D : Boolean := False) is record case D is when True => N : Natural; when False => null; end case; end record; end Renaming2_Pkg2;
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks_shared; use ewok.tasks_shared; with ewok.devices_shared; use ewok.devices_shared; with ewok.exported; with ewok.exported.gpios; with ewok.gpio; with soc.gpio; with soc.usart; use soc.usart; with soc.usart.interfaces; #if CONFIG_KERNEL_PANIC_WIPE with soc; with soc.layout; use soc.layout; #end if; #if not CONFIG_KERNEL_PANIC_FREEZE with m4; with m4.scb; #end if; package body ewok.debug with spark_mode => off is kernel_usart_id : unsigned_8; TX_pin_config : aliased ewok.exported.gpios.t_gpio_config; USART1_TX_pin_config : constant ewok.exported.gpios.t_gpio_config := (settings => ewok.exported.gpios.t_gpio_settings'(others => true), kref => ewok.exported.gpios.t_gpio_ref' (pin => 6, port => soc.gpio.GPIO_PB), mode => ewok.exported.gpios.GPIO_AF, pupd => ewok.exported.gpios.GPIO_PULLUP, otype => ewok.exported.gpios.GPIO_PUSH_PULL, ospeed => ewok.exported.gpios.GPIO_HIGH_SPEED, af => ewok.exported.gpios.GPIO_AF_USART1, bsr_r => 0, bsr_s => 0, lck => 0, exti_trigger => ewok.exported.gpios.GPIO_EXTI_TRIGGER_NONE, exti_lock => ewok.exported.gpios.GPIO_EXTI_UNLOCKED, exti_handler => 16#0000_0000#); USART4_TX_pin_config : constant ewok.exported.gpios.t_gpio_config := (settings => ewok.exported.gpios.t_gpio_settings'(others => true), #if CONFIG_WOOKEY kref => ewok.exported.gpios.t_gpio_ref' (pin => 0, port => soc.gpio.GPIO_PA), #else kref => ewok.exported.gpios.t_gpio_ref' (pin => 6, port => soc.gpio.GPIO_PB), #end if; mode => ewok.exported.gpios.GPIO_AF, pupd => ewok.exported.gpios.GPIO_PULLUP, otype => ewok.exported.gpios.GPIO_PUSH_PULL, ospeed => ewok.exported.gpios.GPIO_HIGH_SPEED, af => ewok.exported.gpios.GPIO_AF_UART4, bsr_r => 0, bsr_s => 0, lck => 0, exti_trigger => ewok.exported.gpios.GPIO_EXTI_TRIGGER_NONE, exti_lock => ewok.exported.gpios.GPIO_EXTI_UNLOCKED, exti_handler => 16#0000_0000#); USART6_TX_pin_config : constant ewok.exported.gpios.t_gpio_config := (settings => ewok.exported.gpios.t_gpio_settings'(others => true), kref => ewok.exported.gpios.t_gpio_ref' (pin => 6, port => soc.gpio.GPIO_PC), mode => ewok.exported.gpios.GPIO_AF, pupd => ewok.exported.gpios.GPIO_PULLUP, otype => ewok.exported.gpios.GPIO_PUSH_PULL, ospeed => ewok.exported.gpios.GPIO_HIGH_SPEED, af => ewok.exported.gpios.GPIO_AF_USART6, bsr_r => 0, bsr_s => 0, lck => 0, exti_trigger => ewok.exported.gpios.GPIO_EXTI_TRIGGER_NONE, exti_lock => ewok.exported.gpios.GPIO_EXTI_UNLOCKED, exti_handler => 16#0000_0000#); procedure init (usart : in unsigned_8) is ok : boolean; begin kernel_usart_id := usart; case kernel_usart_id is when 1 => TX_pin_config := USART1_TX_pin_config; when 4 => TX_pin_config := USART4_TX_pin_config; when 6 => TX_pin_config := USART6_TX_pin_config; when others => raise program_error; end case; ewok.gpio.register (ID_KERNEL, ID_DEV_UNUSED, TX_pin_config'access, ok); if not ok then raise program_error; end if; ewok.gpio.config (TX_pin_config'access); soc.usart.interfaces.configure (kernel_usart_id, 115_200, DATA_9BITS, PARITY_ODD, STOP_1, ok); if not ok then raise program_error; end if; log (INFO, "EwoK: USART" & unsigned_8'image (kernel_usart_id) & " initialized"); newline; end init; procedure putc (c : character) is begin #if CONFIG_KERNEL_SERIAL soc.usart.interfaces.transmit (kernel_usart_id, character'pos (c)); #else null; #end if; end putc; procedure log (s : string; nl : boolean := true) is begin for i in s'range loop putc (s(i)); end loop; if nl then putc (ASCII.CR); putc (ASCII.LF); end if; end log; procedure log (level : t_level; s : string) is begin case level is when DEBUG => log (BG_COLOR_ORANGE & s & BG_COLOR_BLACK); when INFO => log (BG_COLOR_BLUE & s & BG_COLOR_BLACK); when WARNING => log (BG_COLOR_ORANGE & s & BG_COLOR_BLACK); when ERROR .. ALERT => log (BG_COLOR_RED & s & BG_COLOR_BLACK); end case; end log; procedure alert (s : string) is begin log (BG_COLOR_RED & s & BG_COLOR_BLACK, false); end alert; procedure newline is begin log (""); end newline; procedure panic (s : string) is begin log (BG_COLOR_RED & "panic: " & s & BG_COLOR_BLACK); #if CONFIG_KERNEL_PANIC_FREEZE loop null; end loop; #end if; #if CONFIG_KERNEL_PANIC_REBOOT m4.scb.reset; #end if; #if CONFIG_KERNEL_PANIC_WIPE declare sram : array (0 .. soc.layout.USER_RAM_SIZE) of types.byte with address => to_address(USER_RAM_BASE); begin -- Wiping the user applications in RAM before reseting. Kernel data -- and bss are not cleared because the are in use and there should -- be no sensible content in kernel data (secrets are hold by user tasks). -- TODO: Clearing IPC content sram := (others => 0); m4.scb.reset; end; #end if; end panic; end ewok.debug;
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org) -- This software is provided 'as-is', without any express or implied warranty. -- In no event will the authors be held liable for any damages arising from the use of this software. -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it freely, -- subject to the following restrictions: -- 1. The origin of this software must not be misrepresented; -- you must not claim that you wrote the original software. -- If you use this software in a product, an acknowledgment -- in the product documentation would be appreciated but is not required. -- 2. Altered source versions must be plainly marked as such, -- and must not be misrepresented as being the original software. -- 3. This notice may not be removed or altered from any source distribution. --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// with Sf.System.Time; with Sf.Audio.SoundStatus; with Sf.System.Vector3; with Sf.System.Time; package Sf.Audio.SoundStream is --////////////////////////////////////////////////////////// --/ sfSoundStreamChunk defines the data to fill by the --/ OnGetData callback --////////////////////////////////////////////////////////// type sfSoundStreamChunk is record Samples : sfInt16_Ptr; --/< Pointer to the audio samples NbSamples : aliased sfUint32; --/< Number of samples pointed by Samples end record; --/< Type of the callback used to get a sound stream data type sfSoundStreamGetDataCallback is access function (chunk : access sfSoundStreamChunk; userData : Standard.System.Address) return sfBool; --/< Type of the callback used to seek in a sound stream type sfSoundStreamSeekCallback is access procedure (time : Sf.System.Time.sfTime; userData : Standard.System.Address); --////////////////////////////////////////////////////////// --/ @brief Create a new sound stream --/ --/ @param onGetData Function called when the stream needs more data (can't be NULL) --/ @param onSeek Function called when the stream seeks (can't be NULL) --/ @param channelCount Number of channels to use (1 = mono, 2 = stereo) --/ @param sampleRate Sample rate of the sound (44100 = CD quality) --/ @param userData Data to pass to the callback functions --/ --/ @return A new sfSoundStream object --/ --////////////////////////////////////////////////////////// function create (onGetData : sfSoundStreamGetDataCallback; onSeek : sfSoundStreamSeekCallback; channelCount : sfUint32; sampleRate : sfUint32; userData : Standard.System.Address) return sfSoundStream_Ptr; --////////////////////////////////////////////////////////// --/ @brief Destroy a sound stream --/ --/ @param soundStream Sound stream to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (soundStream : sfSoundStream_Ptr); --////////////////////////////////////////////////////////// --/ @brief Start or resume playing a sound stream --/ --/ This function starts the stream if it was stopped, resumes --/ it if it was paused, and restarts it from beginning if it --/ was it already playing. --/ This function uses its own thread so that it doesn't block --/ the rest of the program while the music is played. --/ --/ @param soundStream Sound stream object --/ --////////////////////////////////////////////////////////// procedure play (soundStream : sfSoundStream_Ptr); --////////////////////////////////////////////////////////// --/ @brief Pause a sound stream --/ --/ This function pauses the stream if it was playing, --/ otherwise (stream already paused or stopped) it has no effect. --/ --/ @param soundStream Sound stream object --/ --////////////////////////////////////////////////////////// procedure pause (soundStream : sfSoundStream_Ptr); --////////////////////////////////////////////////////////// --/ @brief Stop playing a sound stream --/ --/ This function stops the stream if it was playing or paused, --/ and does nothing if it was already stopped. --/ It also resets the playing position (unlike sfSoundStream_pause). --/ --/ @param soundStream Sound stream object --/ --////////////////////////////////////////////////////////// procedure stop (soundStream : sfSoundStream_Ptr); --////////////////////////////////////////////////////////// --/ @brief Get the current status of a sound stream (stopped, paused, playing) --/ --/ @param soundStream Sound stream object --/ --/ @return Current status --/ --////////////////////////////////////////////////////////// function getStatus (soundStream : sfSoundStream_Ptr) return Sf.Audio.SoundStatus.sfSoundStatus; --////////////////////////////////////////////////////////// --/ @brief Return the number of channels of a sound stream --/ --/ 1 channel means a mono sound, 2 means stereo, etc. --/ --/ @param soundStream Sound stream object --/ --/ @return Number of channels --/ --////////////////////////////////////////////////////////// function getChannelCount (soundStream : sfSoundStream_Ptr) return sfUint32; --////////////////////////////////////////////////////////// --/ @brief Get the sample rate of a sound stream --/ --/ The sample rate is the number of audio samples played per --/ second. The higher, the better the quality. --/ --/ @param soundStream Sound stream object --/ --/ @return Sample rate, in number of samples per second --/ --////////////////////////////////////////////////////////// function getSampleRate (soundStream : sfSoundStream_Ptr) return sfUint32; --////////////////////////////////////////////////////////// --/ @brief Set the pitch of a sound stream --/ --/ The pitch represents the perceived fundamental frequency --/ of a sound; thus you can make a stream more acute or grave --/ by changing its pitch. A side effect of changing the pitch --/ is to modify the playing speed of the stream as well. --/ The default value for the pitch is 1. --/ --/ @param soundStream Sound stream object --/ @param pitch New pitch to apply to the stream --/ --////////////////////////////////////////////////////////// procedure setPitch (soundStream : sfSoundStream_Ptr; pitch : float); --////////////////////////////////////////////////////////// --/ @brief Set the volume of a sound stream --/ --/ The volume is a value between 0 (mute) and 100 (full volume). --/ The default value for the volume is 100. --/ --/ @param soundStream Sound stream object --/ @param volume Volume of the stream --/ --////////////////////////////////////////////////////////// procedure setVolume (soundStream : sfSoundStream_Ptr; volume : float); --////////////////////////////////////////////////////////// --/ @brief Set the 3D position of a sound stream in the audio scene --/ --/ Only streams with one channel (mono streams) can be --/ spatialized. --/ The default position of a stream is (0, 0, 0). --/ --/ @param soundStream Sound stream object --/ @param position Position of the stream in the scene --/ --////////////////////////////////////////////////////////// procedure setPosition (soundStream : sfSoundStream_Ptr; position : Sf.System.Vector3.sfVector3f); --////////////////////////////////////////////////////////// --/ @brief Make a sound stream's position relative to the listener or absolute --/ --/ Making a stream relative to the listener will ensure that it will always --/ be played the same way regardless the position of the listener. --/ This can be useful for non-spatialized streams, streams that are --/ produced by the listener, or streams attached to it. --/ The default value is false (position is absolute). --/ --/ @param soundStream Sound stream object --/ @param relative sfTrue to set the position relative, sfFalse to set it absolute --/ --////////////////////////////////////////////////////////// procedure setRelativeToListener (soundStream : sfSoundStream_Ptr; relative : sfBool); --////////////////////////////////////////////////////////// --/ @brief Set the minimum distance of a sound stream --/ --/ The "minimum distance" of a stream is the maximum --/ distance at which it is heard at its maximum volume. Further --/ than the minimum distance, it will start to fade out according --/ to its attenuation factor. A value of 0 ("inside the head --/ of the listener") is an invalid value and is forbidden. --/ The default value of the minimum distance is 1. --/ --/ @param soundStream Sound stream object --/ @param distance New minimum distance of the stream --/ --////////////////////////////////////////////////////////// procedure setMinDistance (soundStream : sfSoundStream_Ptr; distance : float); --////////////////////////////////////////////////////////// --/ @brief Set the attenuation factor of a sound stream --/ --/ The attenuation is a multiplicative factor which makes --/ the stream more or less loud according to its distance --/ from the listener. An attenuation of 0 will produce a --/ non-attenuated stream, i.e. its volume will always be the same --/ whether it is heard from near or from far. On the other hand, --/ an attenuation value such as 100 will make the stream fade out --/ very quickly as it gets further from the listener. --/ The default value of the attenuation is 1. --/ --/ @param soundStream Sound stream object --/ @param attenuation New attenuation factor of the stream --/ --////////////////////////////////////////////////////////// procedure setAttenuation (soundStream : sfSoundStream_Ptr; attenuation : float); --////////////////////////////////////////////////////////// --/ @brief Change the current playing position of a sound stream --/ --/ The playing position can be changed when the stream is --/ either paused or playing. --/ --/ @param soundStream Sound stream object --/ @param timeOffset New playing position --/ --////////////////////////////////////////////////////////// procedure setPlayingOffset (soundStream : sfSoundStream_Ptr; timeOffset : Sf.System.Time.sfTime); --////////////////////////////////////////////////////////// --/ @brief Set whether or not a sound stream should loop after reaching the end --/ --/ If set, the stream will restart from beginning after --/ reaching the end and so on, until it is stopped or --/ sfSoundStream_setLoop(stream, sfFalse) is called. --/ The default looping state for sound streams is false. --/ --/ @param soundStream Sound stream object --/ @param inLoop sfTrue to play in loop, sfFalse to play once --/ --////////////////////////////////////////////////////////// procedure setLoop (soundStream : sfSoundStream_Ptr; inLoop : sfBool); --////////////////////////////////////////////////////////// --/ @brief Get the pitch of a sound stream --/ --/ @param soundStream Sound stream object --/ --/ @return Pitch of the stream --/ --////////////////////////////////////////////////////////// function getPitch (soundStream : sfSoundStream_Ptr) return float; --////////////////////////////////////////////////////////// --/ @brief Get the volume of a sound stream --/ --/ @param soundStream Sound stream object --/ --/ @return Volume of the stream, in the range [0, 100] --/ --////////////////////////////////////////////////////////// function getVolume (soundStream : sfSoundStream_Ptr) return float; --////////////////////////////////////////////////////////// --/ @brief Get the 3D position of a sound stream in the audio scene --/ --/ @param soundStream Sound stream object --/ --/ @return Position of the stream in the world --/ --////////////////////////////////////////////////////////// function getPosition (soundStream : sfSoundStream_Ptr) return Sf.System.Vector3.sfVector3f; --////////////////////////////////////////////////////////// --/ @brief Tell whether a sound stream's position is relative to the --/ listener or is absolute --/ --/ @param soundStream Sound stream object --/ --/ @return sfTrue if the position is relative, sfFalse if it's absolute --/ --////////////////////////////////////////////////////////// function isRelativeToListener (soundStream : sfSoundStream_Ptr) return sfBool; --////////////////////////////////////////////////////////// --/ @brief Get the minimum distance of a sound stream --/ --/ @param soundStream Sound stream object --/ --/ @return Minimum distance of the stream --/ --////////////////////////////////////////////////////////// function getMinDistance (soundStream : sfSoundStream_Ptr) return float; --////////////////////////////////////////////////////////// --/ @brief Get the attenuation factor of a sound stream --/ --/ @param soundStream Sound stream object --/ --/ @return Attenuation factor of the stream --/ --////////////////////////////////////////////////////////// function getAttenuation (soundStream : sfSoundStream_Ptr) return float; --////////////////////////////////////////////////////////// --/ @brief Tell whether or not a sound stream is in loop mode --/ --/ @param soundStream Sound stream object --/ --/ @return sfTrue if the music is looping, sfFalse otherwise --/ --////////////////////////////////////////////////////////// function getLoop (soundStream : sfSoundStream_Ptr) return sfBool; --////////////////////////////////////////////////////////// --/ @brief Get the current playing position of a sound stream --/ --/ @param soundStream Sound stream object --/ --/ @return Current playing position --/ --////////////////////////////////////////////////////////// function getPlayingOffset (soundStream : sfSoundStream_Ptr) return Sf.System.Time.sfTime; private pragma Convention (C, sfSoundStreamGetDataCallback); pragma Convention (C, sfSoundStreamSeekCallback); pragma Convention (C_Pass_By_Copy, sfSoundStreamChunk); pragma Import (C, create, "sfSoundStream_create"); pragma Import (C, destroy, "sfSoundStream_destroy"); pragma Import (C, play, "sfSoundStream_play"); pragma Import (C, pause, "sfSoundStream_pause"); pragma Import (C, stop, "sfSoundStream_stop"); pragma Import (C, getStatus, "sfSoundStream_getStatus"); pragma Import (C, getChannelCount, "sfSoundStream_getChannelCount"); pragma Import (C, getSampleRate, "sfSoundStream_getSampleRate"); pragma Import (C, setPitch, "sfSoundStream_setPitch"); pragma Import (C, setVolume, "sfSoundStream_setVolume"); pragma Import (C, setPosition, "sfSoundStream_setPosition"); pragma Import (C, setRelativeToListener, "sfSoundStream_setRelativeToListener"); pragma Import (C, setMinDistance, "sfSoundStream_setMinDistance"); pragma Import (C, setAttenuation, "sfSoundStream_setAttenuation"); pragma Import (C, setPlayingOffset, "sfSoundStream_setPlayingOffset"); pragma Import (C, setLoop, "sfSoundStream_setLoop"); pragma Import (C, getPitch, "sfSoundStream_getPitch"); pragma Import (C, getVolume, "sfSoundStream_getVolume"); pragma Import (C, getPosition, "sfSoundStream_getPosition"); pragma Import (C, isRelativeToListener, "sfSoundStream_isRelativeToListener"); pragma Import (C, getMinDistance, "sfSoundStream_getMinDistance"); pragma Import (C, getAttenuation, "sfSoundStream_getAttenuation"); pragma Import (C, getLoop, "sfSoundStream_getLoop"); pragma Import (C, getPlayingOffset, "sfSoundStream_getPlayingOffset"); end Sf.Audio.SoundStream;
-- Copyright 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Ordinary_Fixed_Point_Types is function Create (Delta_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Delta_Expression : not null Program.Elements.Expressions .Expression_Access; Real_Range : not null Program.Elements.Real_Range_Specifications .Real_Range_Specification_Access) return Ordinary_Fixed_Point_Type is begin return Result : Ordinary_Fixed_Point_Type := (Delta_Token => Delta_Token, Delta_Expression => Delta_Expression, Real_Range => Real_Range, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Delta_Expression : not null Program.Elements.Expressions .Expression_Access; Real_Range : not null Program.Elements.Real_Range_Specifications .Real_Range_Specification_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Ordinary_Fixed_Point_Type is begin return Result : Implicit_Ordinary_Fixed_Point_Type := (Delta_Expression => Delta_Expression, Real_Range => Real_Range, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Delta_Expression (Self : Base_Ordinary_Fixed_Point_Type) return not null Program.Elements.Expressions.Expression_Access is begin return Self.Delta_Expression; end Delta_Expression; overriding function Real_Range (Self : Base_Ordinary_Fixed_Point_Type) return not null Program.Elements.Real_Range_Specifications .Real_Range_Specification_Access is begin return Self.Real_Range; end Real_Range; overriding function Delta_Token (Self : Ordinary_Fixed_Point_Type) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Delta_Token; end Delta_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Ordinary_Fixed_Point_Type) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Ordinary_Fixed_Point_Type) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Ordinary_Fixed_Point_Type) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Ordinary_Fixed_Point_Type'Class) is begin Set_Enclosing_Element (Self.Delta_Expression, Self'Unchecked_Access); Set_Enclosing_Element (Self.Real_Range, Self'Unchecked_Access); null; end Initialize; overriding function Is_Ordinary_Fixed_Point_Type_Element (Self : Base_Ordinary_Fixed_Point_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Ordinary_Fixed_Point_Type_Element; overriding function Is_Type_Definition_Element (Self : Base_Ordinary_Fixed_Point_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Type_Definition_Element; overriding function Is_Definition_Element (Self : Base_Ordinary_Fixed_Point_Type) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Definition_Element; overriding procedure Visit (Self : not null access Base_Ordinary_Fixed_Point_Type; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Ordinary_Fixed_Point_Type (Self); end Visit; overriding function To_Ordinary_Fixed_Point_Type_Text (Self : aliased in out Ordinary_Fixed_Point_Type) return Program.Elements.Ordinary_Fixed_Point_Types .Ordinary_Fixed_Point_Type_Text_Access is begin return Self'Unchecked_Access; end To_Ordinary_Fixed_Point_Type_Text; overriding function To_Ordinary_Fixed_Point_Type_Text (Self : aliased in out Implicit_Ordinary_Fixed_Point_Type) return Program.Elements.Ordinary_Fixed_Point_Types .Ordinary_Fixed_Point_Type_Text_Access is pragma Unreferenced (Self); begin return null; end To_Ordinary_Fixed_Point_Type_Text; end Program.Nodes.Ordinary_Fixed_Point_Types;
pragma Ada_2012; package body TLSF.Proof.Relation is function Relate(Container : R; From, To : Element_Type) return R is Len : constant Count_Type := Length(Container); A : constant Arrow := (From, To); begin if Contains(Container, A) then return Container; else pragma Assert (not Contains(Container, A)); declare New_Container : constant R := Add(Container, A); New_Len : constant Count_Type := Length(New_Container); begin pragma Assert (Contains(Container => Container, Item => A)); pragma Assert (New_Len > Len); return New_Container; end; end if; end Relate; end TLSF.Proof.Relation;
<?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>on_structure_corner</name> <ret_bitwidth>4</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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>scenario_nr_struct</name> <fileName></fileName> <fileDirectory></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> <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>scenario_structure_c</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>80</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>60</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>5</id> <name>y_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>78</item> <item>79</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>x_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>80</item> <item>81</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>scenario_nr_struct_l</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/dorin</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>82</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>83</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>10</id> <name>i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>85</item> <item>86</item> <item>87</item> <item>88</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>11</id> <name>i_cast</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>89</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>12</id> <name>tmp</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</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>90</item> <item>91</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>13</id> <name>i_7</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>92</item> <item>94</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>95</item> <item>96</item> <item>97</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>16</id> <name>tmp_s</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>99</item> <item>100</item> <item>102</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_268</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</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>103</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>18</id> <name>scenario_structure_c</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>104</item> <item>106</item> <item>107</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_269</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>108</item> <item>110</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_270</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>21</id> <name>scenario_structure_c_19</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>116</item> <item>117</item> <item>118</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_271</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>121</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_272</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>122</item> <item>123</item> <item>124</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>24</id> <name>scenario_structure_c_20</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>125</item> <item>126</item> <item>127</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_273</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>128</item> <item>130</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_274</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>131</item> <item>132</item> <item>133</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>27</id> <name>scenario_structure_c_21</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>134</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_275</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>137</item> <item>139</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>29</id> <name>tmp_276</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>30</id> <name>scenario_structure_c_22</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>143</item> <item>144</item> <item>145</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_277</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>146</item> <item>148</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_278</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>149</item> <item>150</item> <item>151</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>33</id> <name>scenario_structure_c_23</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>154</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>34</id> <name>tmp_279</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</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> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_280</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>160</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>36</id> <name>scenario_structure_c_24</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>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="_35"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp_281</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>164</item> <item>166</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_282</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>167</item> <item>168</item> <item>169</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>39</id> <name>scenario_structure_c_25</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>172</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>40</id> <name>scenario_structure_c_26</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>173</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_144</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</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>174</item> <item>175</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</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>176</item> <item>177</item> <item>178</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>44</id> <name>scenario_structure_c_27</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>179</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_145</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</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>180</item> <item>181</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>46</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>57</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>182</item> <item>183</item> <item>184</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>48</id> <name>scenario_structure_c_28</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_146</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</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>186</item> <item>187</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>50</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</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>188</item> <item>189</item> <item>190</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>52</id> <name>scenario_structure_c_29</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>191</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_147</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</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>192</item> <item>193</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>54</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>59</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>194</item> <item>195</item> <item>196</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>56</id> <name>scenario_structure_c_30</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>197</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_148</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</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>198</item> <item>199</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>58</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>200</item> <item>201</item> <item>202</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>60</id> <name>scenario_structure_c_31</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>203</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_149</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</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>204</item> <item>205</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>62</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>208</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>64</id> <name>scenario_structure_c_32</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>209</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_150</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</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>210</item> <item>211</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>66</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>68</id> <name>scenario_structure_c_33</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_151</name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</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>216</item> <item>217</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>70</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>220</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>72</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>55</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>221</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <item>223</item> <item>224</item> <item>226</item> <item>227</item> <item>229</item> <item>230</item> <item>232</item> <item>233</item> <item>235</item> <item>236</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName>wave2/.apc/main.c</fileName> <fileDirectory>/home/dorin</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>on_structure_corner</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dorin</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>wave2/.apc/main.c</first> <second>on_structure_corner</second> </first> <second>67</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>237</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_65"> <Value> <Obj> <type>2</type> <id>84</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</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>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>31</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>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>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_68"> <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>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_69"> <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>34</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>113</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>30</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_71"> <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>34</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_72"> <Value> <Obj> <type>2</type> <id>129</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_73"> <Value> <Obj> <type>2</type> <id>138</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>147</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_75"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>34</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_76"> <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>34</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>222</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_78"> <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>4</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>228</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>231</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_81"> <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>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_82"> <Obj> <type>3</type> <id>9</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>5</item> <item>6</item> <item>7</item> <item>8</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>15</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>43</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>27</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_85"> <Obj> <type>3</type> <id>47</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>44</item> <item>45</item> <item>46</item> </node_objs> </item> <item class_id_reference="18" object_id="_86"> <Obj> <type>3</type> <id>51</id> <name>._crit_edge1</name> <fileName></fileName> <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>48</item> <item>49</item> <item>50</item> </node_objs> </item> <item class_id_reference="18" object_id="_87"> <Obj> <type>3</type> <id>55</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>54</item> </node_objs> </item> <item class_id_reference="18" object_id="_88"> <Obj> <type>3</type> <id>59</id> <name>._crit_edge4</name> <fileName></fileName> <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>56</item> <item>57</item> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_89"> <Obj> <type>3</type> <id>63</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>60</item> <item>61</item> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_90"> <Obj> <type>3</type> <id>67</id> <name>._crit_edge7</name> <fileName></fileName> <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>64</item> <item>65</item> <item>66</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>71</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>68</item> <item>69</item> <item>70</item> </node_objs> </item> <item class_id_reference="18" object_id="_92"> <Obj> <type>3</type> <id>73</id> <name>._crit_edge10</name> <fileName></fileName> <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>72</item> </node_objs> </item> <item class_id_reference="18" object_id="_93"> <Obj> <type>3</type> <id>76</id> <name>._crit_edge</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>74</item> <item>75</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>151</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_94"> <id>79</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>81</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>82</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>83</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>85</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>86</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>87</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>88</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>89</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>90</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>91</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>92</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>95</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>96</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>97</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>100</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>103</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>104</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>107</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>108</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>110</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>114</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>115</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>116</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>117</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>118</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>119</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>123</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>124</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>125</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>126</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>127</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>128</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>130</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>132</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>133</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>134</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>135</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>136</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>137</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>139</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>141</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>142</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>143</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>144</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>145</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>146</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>148</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>150</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>151</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>152</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>153</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>154</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>155</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>159</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>160</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>161</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>162</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>163</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>164</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>168</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>169</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>170</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>171</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>172</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>173</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>174</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>175</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>176</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>177</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>178</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>179</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>180</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>181</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>182</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>183</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>184</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>185</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>186</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>187</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>188</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>189</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>190</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>191</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>192</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>193</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>194</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>195</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>196</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>197</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>198</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>199</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>200</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>201</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>202</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>203</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>204</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>205</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>206</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>207</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>208</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>209</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>210</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>211</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>212</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>213</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>214</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>215</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>216</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>217</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>218</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>219</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>220</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>221</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>223</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>224</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>226</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>227</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>229</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>230</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>232</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>233</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>235</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>236</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>237</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>238</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>239</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>240</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>241</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>242</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>243</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>244</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>245</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>246</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>247</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>248</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>249</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>250</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>251</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>252</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>253</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>254</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>255</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>256</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>257</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>15</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="_245"> <mId>1</mId> <mTag>on_structure_corner</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_246"> <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>9</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="_247"> <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>10</count> <item_version>0</item_version> <item>15</item> <item>43</item> <item>47</item> <item>51</item> <item>55</item> <item>59</item> <item>63</item> <item>67</item> <item>71</item> <item>73</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_248"> <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="24" tracking_level="1" version="0" object_id="_249"> <states class_id="25" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_250"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_251"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_252"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_253"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_254"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_255"> <id>2</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_256"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_257"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_258"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_259"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>40</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_265"> <id>3</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_266"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_279"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>40</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_288"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>44</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_291"> <id>4</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_292"> <id>44</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_293"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>48</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_296"> <id>5</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_297"> <id>48</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_298"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>52</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_301"> <id>6</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_302"> <id>52</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_303"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>56</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_306"> <id>7</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_307"> <id>56</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_308"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>60</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_311"> <id>8</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_312"> <id>60</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_313"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>64</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_316"> <id>9</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_317"> <id>64</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_318"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>68</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>10</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>68</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_323"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_328"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>45</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="_329"> <inState>2</inState> <outState>3</outState> <condition> <id>46</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>12</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_330"> <inState>2</inState> <outState>10</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_331"> <inState>3</inState> <outState>4</outState> <condition> <id>49</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_332"> <inState>4</inState> <outState>5</outState> <condition> <id>52</id> <sop> <count>2</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_333"> <inState>4</inState> <outState>10</outState> <condition> <id>51</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>2</count> <item_version>0</item_version> <item> <first> <first>41</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_334"> <inState>5</inState> <outState>6</outState> <condition> <id>54</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_335"> <inState>6</inState> <outState>7</outState> <condition> <id>57</id> <sop> <count>2</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_336"> <inState>6</inState> <outState>10</outState> <condition> <id>56</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>2</count> <item_version>0</item_version> <item> <first> <first>49</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_337"> <inState>7</inState> <outState>8</outState> <condition> <id>59</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_338"> <inState>8</inState> <outState>9</outState> <condition> <id>62</id> <sop> <count>2</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_339"> <inState>8</inState> <outState>10</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>2</count> <item_version>0</item_version> <item> <first> <first>57</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_340"> <inState>9</inState> <outState>10</outState> <condition> <id>64</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_341"> <inState>10</inState> <outState>2</outState> <condition> <id>67</id> <sop> <count>16</count> <item_version>0</item_version> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>41</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>49</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>57</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>65</first> <second>0</second> </first> <second>1</second> </item> </item> <item> <count>5</count> <item_version>0</item_version> <item> <first> <first>12</first> <second>0</second> </first> <second>0</second> </item> <item> <first> <first>45</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>53</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>69</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>60</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>5</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</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>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>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>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>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>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>57</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>65</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>9</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>9</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>55</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>59</first> <second> <first>5</first> <second>6</second> </second> </item> <item> <first>63</first> <second> <first>6</first> <second>7</second> </second> </item> <item> <first>67</first> <second> <first>7</first> <second>8</second> </second> </item> <item> <first>71</first> <second> <first>8</first> <second>9</second> </second> </item> <item> <first>73</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>76</first> <second> <first>9</first> <second>9</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>35</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>54</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>67</first> <second> <count>16</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>48</item> <item>48</item> <item>52</item> <item>52</item> <item>56</item> <item>56</item> <item>60</item> <item>60</item> <item>64</item> <item>64</item> <item>68</item> <item>68</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>79</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>93</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>100</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>107</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>114</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>126</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>157</first> <second> <count>4</count> <item_version>0</item_version> <item>41</item> <item>49</item> <item>57</item> <item>65</item> </second> </item> <item> <first>162</first> <second> <count>4</count> <item_version>0</item_version> <item>45</item> <item>53</item> <item>61</item> <item>69</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>175</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>186</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>218</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>232</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>241</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>246</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>255</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>260</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>274</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="47" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>grp_fu_157</first> <second> <count>4</count> <item_version>0</item_version> <item>41</item> <item>49</item> <item>57</item> <item>65</item> </second> </item> <item> <first>grp_fu_162</first> <second> <count>4</count> <item_version>0</item_version> <item>45</item> <item>53</item> <item>61</item> <item>69</item> </second> </item> <item> <first>i_7_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>i_cast_fu_171</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>i_phi_fu_126</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_0_phi_fu_140</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>scenario_structure_c_19_gep_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>scenario_structure_c_20_gep_fu_79</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>scenario_structure_c_21_gep_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>scenario_structure_c_22_gep_fu_93</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>scenario_structure_c_23_gep_fu_100</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>scenario_structure_c_24_gep_fu_107</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>scenario_structure_c_25_gep_fu_114</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>scenario_structure_c_gep_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_268_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_269_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_270_fu_204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_271_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_272_fu_218</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_273_fu_227</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_274_fu_232</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_275_fu_241</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_276_fu_246</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_277_fu_255</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_278_fu_260</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_279_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_280_fu_274</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_281_fu_283</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_282_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_fu_175</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_s_fu_186</first> <second> <count>1</count> <item_version>0</item_version> <item>16</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>3</count> <item_version>0</item_version> <item> <first>scenario_nr_struct_l_load_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>x_read_read_fu_54</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>y_read_read_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first class_id="51" tracking_level="0" version="0"> <first>scenario_structure_c</first> <second>0</second> </first> <second> <count>16</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>48</item> <item>48</item> <item>52</item> <item>52</item> <item>56</item> <item>56</item> <item>60</item> <item>60</item> <item>64</item> <item>64</item> <item>68</item> <item>68</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>23</count> <item_version>0</item_version> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>297</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>302</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>307</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>312</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>321</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>332</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>376</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>380</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>384</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>388</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>392</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>396</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>23</count> <item_version>0</item_version> <item> <first>i_7_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>i_reg_122</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_0_reg_133</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>scenario_nr_struct_l_reg_307</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>scenario_structure_c_19_reg_337</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>scenario_structure_c_20_reg_342</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>scenario_structure_c_21_reg_347</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>scenario_structure_c_22_reg_352</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>scenario_structure_c_23_reg_357</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>scenario_structure_c_24_reg_362</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>scenario_structure_c_25_reg_367</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>scenario_structure_c_reg_332</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_144_reg_372</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_145_reg_376</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_146_reg_380</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_147_reg_384</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_148_reg_388</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_149_reg_392</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_150_reg_396</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_reg_312</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_s_reg_321</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>x_read_reg_302</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>y_read_reg_297</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>i_reg_122</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_0_reg_133</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="52" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>scenario_nr_struct</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>scenario_structure_c(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>16</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>48</item> <item>48</item> <item>52</item> <item>52</item> <item>56</item> <item>56</item> <item>60</item> <item>60</item> <item>64</item> <item>64</item> <item>68</item> <item>68</item> </second> </item> </second> </item> <item> <first>x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> </second> </item> <item> <first>y</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="54" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>4</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
----------------------------------------------------------------------- -- search-tokens -- Search engine token representation -- Copyright (C) 2020 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body Search.Tokens is function Get_Value (Token : in Token_Type) return String is begin if Token.Is_Null then return ""; else return Token.Value.Value; end if; end Get_Value; end Search.Tokens;
-- This spec has been automatically generated from STM32F105xx.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; with System; package STM32.I2C is pragma Preelaborate; --------------- -- Registers -- --------------- ------------------ -- CR1_Register -- ------------------ subtype CR1_PE_Field is STM32.Bit; subtype CR1_SMBUS_Field is STM32.Bit; subtype CR1_SMBTYPE_Field is STM32.Bit; subtype CR1_ENARP_Field is STM32.Bit; subtype CR1_ENPEC_Field is STM32.Bit; subtype CR1_ENGC_Field is STM32.Bit; subtype CR1_NOSTRETCH_Field is STM32.Bit; subtype CR1_START_Field is STM32.Bit; subtype CR1_STOP_Field is STM32.Bit; subtype CR1_ACK_Field is STM32.Bit; subtype CR1_POS_Field is STM32.Bit; subtype CR1_PEC_Field is STM32.Bit; subtype CR1_ALERT_Field is STM32.Bit; subtype CR1_SWRST_Field is STM32.Bit; -- Control register 1 type CR1_Register is record -- Peripheral enable PE : CR1_PE_Field := 16#0#; -- SMBus mode SMBUS : CR1_SMBUS_Field := 16#0#; -- unspecified Reserved_2_2 : STM32.Bit := 16#0#; -- SMBus type SMBTYPE : CR1_SMBTYPE_Field := 16#0#; -- ARP enable ENARP : CR1_ENARP_Field := 16#0#; -- PEC enable ENPEC : CR1_ENPEC_Field := 16#0#; -- General call enable ENGC : CR1_ENGC_Field := 16#0#; -- Clock stretching disable (Slave mode) NOSTRETCH : CR1_NOSTRETCH_Field := 16#0#; -- Start generation START : CR1_START_Field := 16#0#; -- Stop generation STOP : CR1_STOP_Field := 16#0#; -- Acknowledge enable ACK : CR1_ACK_Field := 16#0#; -- Acknowledge/PEC Position (for data reception) POS : CR1_POS_Field := 16#0#; -- Packet error checking PEC : CR1_PEC_Field := 16#0#; -- SMBus alert ALERT : CR1_ALERT_Field := 16#0#; -- unspecified Reserved_14_14 : STM32.Bit := 16#0#; -- Software reset SWRST : CR1_SWRST_Field := 16#0#; -- unspecified Reserved_16_31 : STM32.Short := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR1_Register use record PE at 0 range 0 .. 0; SMBUS at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; SMBTYPE at 0 range 3 .. 3; ENARP at 0 range 4 .. 4; ENPEC at 0 range 5 .. 5; ENGC at 0 range 6 .. 6; NOSTRETCH at 0 range 7 .. 7; START at 0 range 8 .. 8; STOP at 0 range 9 .. 9; ACK at 0 range 10 .. 10; POS at 0 range 11 .. 11; PEC at 0 range 12 .. 12; ALERT at 0 range 13 .. 13; Reserved_14_14 at 0 range 14 .. 14; SWRST at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ------------------ -- CR2_Register -- ------------------ subtype CR2_FREQ_Field is STM32.UInt6; subtype CR2_ITERREN_Field is STM32.Bit; subtype CR2_ITEVTEN_Field is STM32.Bit; subtype CR2_ITBUFEN_Field is STM32.Bit; subtype CR2_DMAEN_Field is STM32.Bit; subtype CR2_LAST_Field is STM32.Bit; -- Control register 2 type CR2_Register is record -- Peripheral clock frequency FREQ : CR2_FREQ_Field := 16#0#; -- unspecified Reserved_6_7 : STM32.UInt2 := 16#0#; -- Error interrupt enable ITERREN : CR2_ITERREN_Field := 16#0#; -- Event interrupt enable ITEVTEN : CR2_ITEVTEN_Field := 16#0#; -- Buffer interrupt enable ITBUFEN : CR2_ITBUFEN_Field := 16#0#; -- DMA requests enable DMAEN : CR2_DMAEN_Field := 16#0#; -- DMA last transfer LAST : CR2_LAST_Field := 16#0#; -- unspecified Reserved_13_31 : STM32.UInt19 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR2_Register use record FREQ at 0 range 0 .. 5; Reserved_6_7 at 0 range 6 .. 7; ITERREN at 0 range 8 .. 8; ITEVTEN at 0 range 9 .. 9; ITBUFEN at 0 range 10 .. 10; DMAEN at 0 range 11 .. 11; LAST at 0 range 12 .. 12; Reserved_13_31 at 0 range 13 .. 31; end record; ------------------- -- OAR1_Register -- ------------------- subtype OAR1_ADD0_Field is STM32.Bit; subtype OAR1_ADD7_Field is STM32.UInt7; subtype OAR1_ADD10_Field is STM32.UInt2; subtype OAR1_ADDMODE_Field is STM32.Bit; -- Own address register 1 type OAR1_Register is record -- Interface address ADD0 : OAR1_ADD0_Field := 16#0#; -- Interface address ADD7 : OAR1_ADD7_Field := 16#0#; -- Interface address ADD10 : OAR1_ADD10_Field := 16#0#; -- unspecified Reserved_10_14 : STM32.UInt5 := 16#0#; -- Addressing mode (slave mode) ADDMODE : OAR1_ADDMODE_Field := 16#0#; -- unspecified Reserved_16_31 : STM32.Short := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OAR1_Register use record ADD0 at 0 range 0 .. 0; ADD7 at 0 range 1 .. 7; ADD10 at 0 range 8 .. 9; Reserved_10_14 at 0 range 10 .. 14; ADDMODE at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ------------------- -- OAR2_Register -- ------------------- subtype OAR2_ENDUAL_Field is STM32.Bit; subtype OAR2_ADD2_Field is STM32.UInt7; -- Own address register 2 type OAR2_Register is record -- Dual addressing mode enable ENDUAL : OAR2_ENDUAL_Field := 16#0#; -- Interface address ADD2 : OAR2_ADD2_Field := 16#0#; -- unspecified Reserved_8_31 : STM32.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OAR2_Register use record ENDUAL at 0 range 0 .. 0; ADD2 at 0 range 1 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; ----------------- -- DR_Register -- ----------------- subtype DR_DR_Field is STM32.Byte; -- Data register type DR_Register is record -- 8-bit data register DR : DR_DR_Field := 16#0#; -- unspecified Reserved_8_31 : STM32.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DR_Register use record DR at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; ------------------ -- SR1_Register -- ------------------ subtype SR1_SB_Field is STM32.Bit; subtype SR1_ADDR_Field is STM32.Bit; subtype SR1_BTF_Field is STM32.Bit; subtype SR1_ADD10_Field is STM32.Bit; subtype SR1_STOPF_Field is STM32.Bit; subtype SR1_RxNE_Field is STM32.Bit; subtype SR1_TxE_Field is STM32.Bit; subtype SR1_BERR_Field is STM32.Bit; subtype SR1_ARLO_Field is STM32.Bit; subtype SR1_AF_Field is STM32.Bit; subtype SR1_OVR_Field is STM32.Bit; subtype SR1_PECERR_Field is STM32.Bit; subtype SR1_TIMEOUT_Field is STM32.Bit; subtype SR1_SMBALERT_Field is STM32.Bit; -- Status register 1 type SR1_Register is record -- Read-only. Start bit (Master mode) SB : SR1_SB_Field := 16#0#; -- Read-only. Address sent (master mode)/matched (slave mode) ADDR : SR1_ADDR_Field := 16#0#; -- Read-only. Byte transfer finished BTF : SR1_BTF_Field := 16#0#; -- Read-only. 10-bit header sent (Master mode) ADD10 : SR1_ADD10_Field := 16#0#; -- Read-only. Stop detection (slave mode) STOPF : SR1_STOPF_Field := 16#0#; -- unspecified Reserved_5_5 : STM32.Bit := 16#0#; -- Read-only. Data register not empty (receivers) RxNE : SR1_RxNE_Field := 16#0#; -- Read-only. Data register empty (transmitters) TxE : SR1_TxE_Field := 16#0#; -- Bus error BERR : SR1_BERR_Field := 16#0#; -- Arbitration lost (master mode) ARLO : SR1_ARLO_Field := 16#0#; -- Acknowledge failure AF : SR1_AF_Field := 16#0#; -- Overrun/Underrun OVR : SR1_OVR_Field := 16#0#; -- PEC Error in reception PECERR : SR1_PECERR_Field := 16#0#; -- unspecified Reserved_13_13 : STM32.Bit := 16#0#; -- Timeout or Tlow error TIMEOUT : SR1_TIMEOUT_Field := 16#0#; -- SMBus alert SMBALERT : SR1_SMBALERT_Field := 16#0#; -- unspecified Reserved_16_31 : STM32.Short := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR1_Register use record SB at 0 range 0 .. 0; ADDR at 0 range 1 .. 1; BTF at 0 range 2 .. 2; ADD10 at 0 range 3 .. 3; STOPF at 0 range 4 .. 4; Reserved_5_5 at 0 range 5 .. 5; RxNE at 0 range 6 .. 6; TxE at 0 range 7 .. 7; BERR at 0 range 8 .. 8; ARLO at 0 range 9 .. 9; AF at 0 range 10 .. 10; OVR at 0 range 11 .. 11; PECERR at 0 range 12 .. 12; Reserved_13_13 at 0 range 13 .. 13; TIMEOUT at 0 range 14 .. 14; SMBALERT at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ------------------ -- SR2_Register -- ------------------ subtype SR2_MSL_Field is STM32.Bit; subtype SR2_BUSY_Field is STM32.Bit; subtype SR2_TRA_Field is STM32.Bit; subtype SR2_GENCALL_Field is STM32.Bit; subtype SR2_SMBDEFAULT_Field is STM32.Bit; subtype SR2_SMBHOST_Field is STM32.Bit; subtype SR2_DUALF_Field is STM32.Bit; subtype SR2_PEC_Field is STM32.Byte; -- Status register 2 type SR2_Register is record -- Read-only. Master/slave MSL : SR2_MSL_Field; -- Read-only. Bus busy BUSY : SR2_BUSY_Field; -- Read-only. Transmitter/receiver TRA : SR2_TRA_Field; -- unspecified Reserved_3_3 : STM32.Bit; -- Read-only. General call address (Slave mode) GENCALL : SR2_GENCALL_Field; -- Read-only. SMBus device default address (Slave mode) SMBDEFAULT : SR2_SMBDEFAULT_Field; -- Read-only. SMBus host header (Slave mode) SMBHOST : SR2_SMBHOST_Field; -- Read-only. Dual flag (Slave mode) DUALF : SR2_DUALF_Field; -- Read-only. acket error checking register PEC : SR2_PEC_Field; -- unspecified Reserved_16_31 : STM32.Short; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR2_Register use record MSL at 0 range 0 .. 0; BUSY at 0 range 1 .. 1; TRA at 0 range 2 .. 2; Reserved_3_3 at 0 range 3 .. 3; GENCALL at 0 range 4 .. 4; SMBDEFAULT at 0 range 5 .. 5; SMBHOST at 0 range 6 .. 6; DUALF at 0 range 7 .. 7; PEC at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ------------------ -- CCR_Register -- ------------------ subtype CCR_CCR_Field is STM32.UInt12; subtype CCR_DUTY_Field is STM32.Bit; subtype CCR_F_S_Field is STM32.Bit; -- Clock control register type CCR_Register is record -- Clock control register in Fast/Standard mode (Master mode) CCR : CCR_CCR_Field := 16#0#; -- unspecified Reserved_12_13 : STM32.UInt2 := 16#0#; -- Fast mode duty cycle DUTY : CCR_DUTY_Field := 16#0#; -- I2C master mode selection F_S : CCR_F_S_Field := 16#0#; -- unspecified Reserved_16_31 : STM32.Short := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CCR_Register use record CCR at 0 range 0 .. 11; Reserved_12_13 at 0 range 12 .. 13; DUTY at 0 range 14 .. 14; F_S at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -------------------- -- TRISE_Register -- -------------------- subtype TRISE_TRISE_Field is STM32.UInt6; -- TRISE register type TRISE_Register is record -- Maximum rise time in Fast/Standard mode (Master mode) TRISE : TRISE_TRISE_Field := 16#2#; -- unspecified Reserved_6_31 : STM32.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TRISE_Register use record TRISE at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Inter integrated circuit type I2C_Peripheral is record -- Control register 1 CR1 : CR1_Register; -- Control register 2 CR2 : CR2_Register; -- Own address register 1 OAR1 : OAR1_Register; -- Own address register 2 OAR2 : OAR2_Register; -- Data register DR : DR_Register; -- Status register 1 SR1 : SR1_Register; -- Status register 2 SR2 : SR2_Register; -- Clock control register CCR : CCR_Register; -- TRISE register TRISE : TRISE_Register; end record with Volatile; for I2C_Peripheral use record CR1 at 0 range 0 .. 31; CR2 at 4 range 0 .. 31; OAR1 at 8 range 0 .. 31; OAR2 at 12 range 0 .. 31; DR at 16 range 0 .. 31; SR1 at 20 range 0 .. 31; SR2 at 24 range 0 .. 31; CCR at 28 range 0 .. 31; TRISE at 32 range 0 .. 31; end record; -- Inter integrated circuit I2C1_Periph : aliased I2C_Peripheral with Import, Address => I2C1_Base; -- Inter integrated circuit I2C2_Periph : aliased I2C_Peripheral with Import, Address => I2C2_Base; end STM32.I2C;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . D I R E C T O R I E S . V A L I D I T Y -- -- -- -- B o d y -- -- (POSIX Version) -- -- -- -- Copyright (C) 2004-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the POSIX version of this package package body Ada.Directories.Validity is --------------------------------- -- Is_Path_Name_Case_Sensitive -- --------------------------------- function Is_Path_Name_Case_Sensitive return Boolean is begin return True; end Is_Path_Name_Case_Sensitive; ------------------------ -- Is_Valid_Path_Name -- ------------------------ function Is_Valid_Path_Name (Name : String) return Boolean is begin -- A path name cannot be empty and cannot contain any NUL character if Name'Length = 0 then return False; else for J in Name'Range loop if Name (J) = ASCII.NUL then return False; end if; end loop; end if; -- If Name does not contain any NUL character, it is valid return True; end Is_Valid_Path_Name; -------------------------- -- Is_Valid_Simple_Name -- -------------------------- function Is_Valid_Simple_Name (Name : String) return Boolean is begin -- A file name cannot be empty and cannot contain a slash ('/') or -- the NUL character. if Name'Length = 0 then return False; else for J in Name'Range loop if Name (J) = '/' or else Name (J) = ASCII.NUL then return False; end if; end loop; end if; -- If Name does not contain any slash or NUL, it is valid return True; end Is_Valid_Simple_Name; ------------- -- Windows -- ------------- function Windows return Boolean is begin return False; end Windows; end Ada.Directories.Validity;
package body Ada.Enumeration is pragma Suppress (All_Checks); package body Arithmetic is function "+" (Left : Enum; Right : Distance) return Enum is begin return Enum'Val (Enum'Pos (Left) + Right); end "+"; function "+" (Left : Distance; Right : Enum) return Enum is begin return Enum'Val (Left + Enum'Pos (Right)); end "+"; function "-" (Left : Enum; Right : Distance) return Enum is begin return Enum'Val (Enum'Pos (Left) - Right); end "-"; function "-" (Left, Right : Enum) return Distance is begin return Enum'Pos (Left) - Enum'Pos (Right); end "-"; procedure Increment (Ref : in out Enum) is begin Ref := Enum'Succ (Ref); end Increment; procedure Decrement (Ref : in out Enum) is begin Ref := Enum'Pred (Ref); end Decrement; end Arithmetic; end Ada.Enumeration;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . F L O A T _ R A N D O M -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- 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.Numerics.Float_Random is -- Basic facilities type Generator is limited private; subtype Uniformly_Distributed is Float range 0.0 .. 1.0; function Random (Gen : Generator) return Uniformly_Distributed; procedure Reset (Gen : Generator); procedure Reset (Gen : Generator; Initiator : Integer); -- Advanced facilities type State is private; procedure Save (Gen : Generator; To_State : out State); procedure Reset (Gen : Generator; From_State : State); Max_Image_Width : constant := 80; function Image (Of_State : State) return String; function Value (Coded_State : String) return State; private pragma Inline (Random); pragma Inline (Save); type Int_32 is range -2 ** 31 .. 2** 31 - 1; type Longer_Float is digits 14; type State is record X1, X2, P, Q, X : Int_32; Scale : Longer_Float; end record; Initial_State : constant State := (X1 => 2999 ** 2, -- Square mod p X2 => 1439 ** 2, -- Square mod q P => 94_833_359, -- see Blum, Blum & Shub Q => 47_416_679, -- see Blum, Blum & Shub X => 1, -- see Blum, Blum & Shub Scale => 1.0 / (94_833_359.0 * 47_416_679.0)); type Pointer is access State; function Create return Pointer; type Generator is record Point : Pointer := new State' (Initial_State); end record; end Ada.Numerics.Float_Random;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . L O N G _ L O N G _ F L O A T _ E X P O N -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2012, 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 an instantiation of the exponentiation operator -- between two long long floats. with Ada.Numerics.Long_Long_Elementary_Functions; package System.Long_Long_Float_Expon is function Expon_LLF (Left, Right : Long_Long_Float) return Long_Long_Float renames Ada.Numerics.Long_Long_Elementary_Functions."**"; end System.Long_Long_Float_Expon;
package body impact.d3.union_Find is --- Forge -- procedure destruct (Self : in out Item) is begin Self.Free; end destruct; --- Attributes -- function getNumElements (Self : in Item) return Natural is begin return Natural (Self.m_elements.Length); end getNumElements; function isRoot (Self : in Item; x : in Integer) return Boolean is begin return x = Self.m_elements.Element (x).m_id; end isRoot; function getElement (Self : in Item; index : in Integer) return access btElement is begin return Self.m_elements.Element (index); end getElement; function find (Self : in Item; p, q : in Integer) return Boolean is begin return Self.find (p) = Self.find (q); end find; function find (Self : in Item; index : in Integer) return Integer -- nb: index is 0 based island index (atm) is -- btAssert(x < m_N); -- btAssert(x >= 0); x : Integer := index; elementPtr : btElement_view; -- kkk : Integer := Self.m_elements.Element (x+1).m_id; begin while x /= Self.m_elements.Element (x).m_id loop -- Not really a reason not to use path compression, and it flattens the trees/improves find performance dramatically. if USE_PATH_COMPRESSION then -- put_Line ("KKK: " & integer'Image (Self.m_elements.Element (x).m_id)); elementPtr := Self.m_elements.Element (Self.m_elements.Element (x).m_id); Self.m_elements.Element (x).m_id := elementPtr.m_id; x := elementPtr.m_id; else x := Self.m_elements.Element (x).m_id; end if; -- btAssert(x < m_N); -- btAssert(x >= 0); end loop; return x; end find; --- Operations -- -- This is a special operation, destroying the content of impact.d3.union_Find. -- -- It sorts the elements, based on island id, in order to make it easy to iterate over islands. -- procedure sortIslands (Self : in out Item) is numElements : constant Integer := Integer (Self.m_elements.Length); -- First store the original body index, and islandId. function "<" (L, R : in btElement_view) return Boolean is begin return l.m_id < r.m_id; end; package Sorter is new btElement_Vectors.Generic_Sorting ("<"); begin -- for i in 1 .. numElements for i in 0 .. numElements - 1 loop Self.m_elements.Element (i).m_id := Self.find (i); if not STATIC_SIMULATION_ISLAND_OPTIMIZATION then Self.m_elements.Element (i).m_sz := i; end if; end loop; -- Sort the vector using predicate and std::sort -- Sorter.sort (Self.m_elements); -- .quickSort (impact.d3.union_FindElementSortPredicate); end sortIslands; procedure reset (Self : in out Item; N : in Integer) is begin Self.allocate (N + 0); -- for i in 1 .. N for i in 0 .. N - 1 loop Self.m_elements.Element (i).m_id := i; Self.m_elements.Element (i).m_sz := 1; end loop; end reset; procedure allocate (Self : in out Item; N : in Integer) is use ada.Containers; begin Self.Free; -- Self.m_elements.set_Length (Count_type (N)); for i in 1 .. N loop Self.m_elements.append (new btElement); end loop; end allocate; procedure Free (Self : in out Item) is the_Element : btElement_view; begin for Each in 0 .. Integer (Self.m_elements.Length) - 1 loop the_Element := Self.m_elements.Element (Each); free (the_Element); end loop; Self.m_elements.clear; end Free; procedure unite (Self : in out Item; p, q : in Integer) is i : constant Integer := Self.find (p); j : constant Integer := Self.find (q); begin if i = j then return; end if; if not USE_PATH_COMPRESSION then -- weighted quick union, this keeps the 'trees' balanced, and keeps performance of unite O( log(n) ) if Self.m_elements.Element (i).m_sz < Self.m_elements.Element (j).m_sz then Self.m_elements.Element (i).m_id := j; Self.m_elements.Element (j).m_sz := Self.m_elements.Element (j).m_sz + Self.m_elements.Element (i).m_sz - 0; else Self.m_elements.Element (j).m_id := i; Self.m_elements.Element (i).m_sz := Self.m_elements.Element (i).m_sz + Self.m_elements.Element (j).m_sz - 0; end if; else Self.m_elements.Element (i).m_id := j; Self.m_elements.Element (j).m_sz := Self.m_elements.Element (j).m_sz + Self.m_elements.Element (i).m_sz - 0; end if; end unite; end impact.d3.union_Find;
<?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/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>singleGUV</name> <ret_bitwidth>32</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>subimg</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>subimg</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>32</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>u</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>u</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>v</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>v</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>inv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inv</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>cosMat</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>cosMat</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</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>79</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>G</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>G</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>inv_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inv</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>97</item> <item>98</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>v_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>v</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>100</item> <item>101</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>u_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>u</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>102</item> <item>103</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>v_cast2_cast</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>v_cast2_cast_fu_212_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>104</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>tmp_18</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_18_fu_215_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>106</item> <item>107</item> <item>109</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>tmp_19_cast</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_19_cast_fu_222_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>110</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>u_cast1_cast</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>u_cast1_cast_fu_226_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>111</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>tmp_19</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_19_fu_229_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>114</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>15</id> <name>tmp_21_cast</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_21_cast_fu_236_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>16</id> <name>tmp</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>C:\Users\Venci\Videos\Project</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_173_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>116</item> <item>118</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_i</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>al</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>al</second> </first> <second>62</second> </item> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i_fu_179_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>121</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_4</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_fu_196_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>122</item> <item>124</item> <item>126</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_i1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>al</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>al</second> </first> <second>62</second> </item> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i1_fu_185_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>127</item> <item>128</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_6</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_6_fu_204_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>129</item> <item>131</item> <item>133</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>21</id> <name>tmp_7</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>134</item> <item>135</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>22</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>137</item> <item>138</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>23</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>139</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>25</id> <name>x_assign</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>141</item> <item>142</item> <item>143</item> <item>144</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>26</id> <name>x_assign_cast2_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>x_assign_cast2_cast_fu_240_p1</rtlName> <coreName/> </Obj> <bitwidth>8</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> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_20</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_20_fu_244_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>146</item> <item>147</item> <item>148</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_23_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_23_cast_fu_252_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>149</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>29</id> <name>tmp_21</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_21_fu_256_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>151</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_24_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_24_cast_fu_261_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>152</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>31</id> <name>cosMat_addr</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>153</item> <item>154</item> <item>155</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_22</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_22_fu_266_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>156</item> <item>157</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_25_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_25_cast_fu_271_p1</rtlName> <coreName/> </Obj> <bitwidth>32</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> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>34</id> <name>cosMat_addr_1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</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> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>35</id> <name>exitcond1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond1_fu_276_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>162</item> <item>164</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>37</id> <name>x</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName>x_fu_282_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>165</item> <item>167</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>38</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>168</item> <item>169</item> <item>170</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>40</id> <name>cosMat_load</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>171</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_s</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>172</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_i2</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>al</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>al</second> </first> <second>62</second> </item> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i2_fu_288_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>173</item> <item>174</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_2</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_2_fu_294_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>175</item> <item>176</item> <item>177</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>44</id> <name>cosMat_load_2</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_3</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>179</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>46</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>48</id> <name>x_assign_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> <item>184</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>49</id> <name>x_assign_1_cast1_cas</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>x_assign_1_cast1_cas_fu_301_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_23</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_23_fu_305_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>186</item> <item>187</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>51</id> <name>tmp_26_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_26_cast_fu_310_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>188</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>52</id> <name>subimg_addr</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>189</item> <item>190</item> <item>191</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_24</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_24_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>192</item> <item>193</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_27_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_27_cast_fu_320_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>194</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>55</id> <name>cosMat_addr_2</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_25</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_25_fu_325_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>198</item> <item>199</item> <item>200</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_29_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_29_cast_fu_333_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>201</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_26</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_26_fu_337_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_30_cast</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_30_cast_fu_342_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>204</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>60</id> <name>cosMat_addr_3</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>205</item> <item>206</item> <item>207</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>61</id> <name>exitcond</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_347_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>208</item> <item>209</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>63</id> <name>y</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>y</originalName> <rtlName>y_fu_353_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>210</item> <item>211</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>64</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>66</id> <name>G_load_1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>215</item> <item>273</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>67</id> <name>subimg_load</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_8</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>217</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_9</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>218</item> <item>219</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp_1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>220</item> <item>221</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>71</id> <name>cosMat_load_1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>222</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_5</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>223</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_10</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>224</item> <item>225</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_11</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>226</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_i3</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>al</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>al</second> </first> <second>62</second> </item> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i3_fu_359_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>227</item> <item>228</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_12</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_fu_365_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>229</item> <item>230</item> <item>231</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_13</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>78</id> <name>tmp_14</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>234</item> <item>235</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_15</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>236</item> <item>237</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>80</id> <name>cosMat_load_3</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>238</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp_16</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_fpext_cud_U1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>239</item> </oprand_edges> <opcode>fpext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_17</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dmul_6eOg_U3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>240</item> <item>241</item> </oprand_edges> <opcode>dmul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>83</id> <name>G_2_in_v</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>G_2_in_v_fu_373_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>242</item> <item>243</item> <item>244</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>84</id> <name>G_2_in</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>DCT_8x8_2D_dadd_6dEe_U2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>245</item> <item>246</item> </oprand_edges> <opcode>dadd</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>85</id> <name>G_1</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName>G</originalName> <rtlName>DCT_8x8_2D_fptrunbkb_U0</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>247</item> </oprand_edges> <opcode>fptrunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>86</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>271</item> <item>274</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>87</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>250</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>89</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>140</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>91</id> <name>G_load</name> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>251</item> <item>272</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>92</id> <name/> <fileName>definition.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>singleGUV</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Venci\Videos\Project</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>definition.cpp</first> <second>singleGUV</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>252</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_85"> <Value> <Obj> <type>2</type> <id>94</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>1</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>108</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="_87"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>120</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>0</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>123</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>1</const_type> <content>0.176777</content> </item> <item class_id_reference="16" object_id="_90"> <Value> <Obj> <type>2</type> <id>125</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>1</const_type> <content>0.25</content> </item> <item class_id_reference="16" object_id="_91"> <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>64</bitwidth> </Value> <const_type>1</const_type> <content>0.707107</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>132</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>1</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>136</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>1</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_94"> <Value> <Obj> <type>2</type> <id>163</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>166</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> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_96"> <Obj> <type>3</type> <id>24</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>18</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> </node_objs> </item> <item class_id_reference="18" object_id="_97"> <Obj> <type>3</type> <id>39</id> <name>.loopexit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <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>37</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_98"> <Obj> <type>3</type> <id>47</id> <name>.preheader.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> </node_objs> </item> <item class_id_reference="18" object_id="_99"> <Obj> <type>3</type> <id>65</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>16</count> <item_version>0</item_version> <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>63</item> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_100"> <Obj> <type>3</type> <id>88</id> <name>_ifconv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>22</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_101"> <Obj> <type>3</type> <id>90</id> <name>.loopexit.loopexit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>89</item> </node_objs> </item> <item class_id_reference="18" object_id="_102"> <Obj> <type>3</type> <id>93</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>2</count> <item_version>0</item_version> <item>91</item> <item>92</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>150</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_103"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>98</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>101</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>103</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>104</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>107</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>109</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>110</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>111</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>113</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>114</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>115</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>116</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>119</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>122</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>124</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>127</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>128</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>129</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>133</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>134</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>135</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>137</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>138</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>139</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>140</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>141</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>142</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>143</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>144</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>145</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>147</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>148</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>149</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>150</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>151</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>152</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>153</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>154</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>155</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>156</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>157</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>158</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>159</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>160</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>161</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>162</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>164</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>165</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>167</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>168</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>169</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>170</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>171</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>172</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>173</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>174</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>175</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>176</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>177</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>178</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>179</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>180</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>181</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>182</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>183</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>184</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>185</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>186</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>187</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>188</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>189</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>190</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>191</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>192</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>193</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>194</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>195</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>196</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>197</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>199</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>200</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>201</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>202</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>203</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>204</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>205</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>206</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>207</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>208</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>209</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>210</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>211</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>212</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>213</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>214</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>215</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>216</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>217</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>218</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>219</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>220</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>221</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>222</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>223</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>224</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>225</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>226</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>227</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>228</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>229</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>230</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>231</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>232</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>233</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>234</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>235</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>236</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>237</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>238</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>239</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>240</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>241</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>242</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>243</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>244</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>245</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>246</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>247</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>248</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>249</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>250</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>251</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>252</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>263</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>264</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>265</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>266</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>267</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>268</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>269</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>270</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>271</id> <edge_type>4</edge_type> <source_obj>66</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>272</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>273</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>274</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>86</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_253"> <mId>1</mId> <mTag>singleGUV</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1437</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_254"> <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>24</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_255"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>1432</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_256"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>47</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_257"> <mId>5</mId> <mTag>Loop 1.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>65</item> <item>88</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>176</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_258"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>90</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"/> </item> <item class_id_reference="22" object_id="_259"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>93</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"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_260"> <states class_id="25" tracking_level="0" version="0"> <count>29</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_261"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_262"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_270"> <id>2</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_271"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>21</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_274"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_275"> <id>21</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_276"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_277"> <id>21</id> <stage>2</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_278"> <id>5</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_279"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>21</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_286"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_287"> <id>6</id> <operations> <count>19</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_288"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>40</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_303"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>44</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_305"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_307"> <id>7</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_308"> <id>40</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_309"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_311"> <id>44</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_312"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_314"> <id>8</id> <operations> <count>20</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_315"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>67</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_333"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_335"> <id>9</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_336"> <id>67</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_337"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>77</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_340"> <id>10</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_341"> <id>69</id> <stage>4</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_342"> <id>77</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_343"> <id>11</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_344"> <id>69</id> <stage>3</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_345"> <id>77</id> <stage>2</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_346"> <id>12</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_347"> <id>69</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_348"> <id>77</id> <stage>1</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_349"> <id>13</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_350"> <id>69</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_351"> <id>78</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_352"> <id>14</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_353"> <id>70</id> <stage>4</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_354"> <id>78</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_355"> <id>15</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_356"> <id>70</id> <stage>3</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_357"> <id>78</id> <stage>2</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_358"> <id>16</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_359"> <id>70</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_360"> <id>71</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_361"> <id>78</id> <stage>1</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_362"> <id>17</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_363"> <id>70</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_364"> <id>71</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_365"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_366"> <id>79</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_367"> <id>18</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_368"> <id>73</id> <stage>4</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_369"> <id>79</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_370"> <id>19</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_371"> <id>73</id> <stage>3</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_372"> <id>79</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_373"> <id>80</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_374"> <id>20</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_375"> <id>73</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_376"> <id>79</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_377"> <id>80</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_378"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_379"> <id>21</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_380"> <id>73</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_381"> <id>82</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_382"> <id>22</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_383"> <id>82</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_384"> <id>23</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_385"> <id>82</id> <stage>2</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_386"> <id>24</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_387"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_388"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_389"> <id>82</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_390"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_391"> <id>25</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_392"> <id>84</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_393"> <id>26</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_394"> <id>84</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_395"> <id>27</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_396"> <id>84</id> <stage>2</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_397"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_398"> <id>84</id> <stage>1</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_399"> <id>29</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_400"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_401"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_402"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>30</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_403"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>37</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="_404"> <inState>2</inState> <outState>3</outState> <condition> <id>38</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_405"> <inState>3</inState> <outState>4</outState> <condition> <id>39</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_406"> <inState>4</inState> <outState>5</outState> <condition> <id>40</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_407"> <inState>5</inState> <outState>6</outState> <condition> <id>42</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_408"> <inState>6</inState> <outState>7</outState> <condition> <id>43</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>35</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_409"> <inState>7</inState> <outState>8</outState> <condition> <id>46</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_410"> <inState>8</inState> <outState>9</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>61</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_411"> <inState>9</inState> <outState>10</outState> <condition> <id>49</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_412"> <inState>10</inState> <outState>11</outState> <condition> <id>50</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_413"> <inState>11</inState> <outState>12</outState> <condition> <id>51</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_414"> <inState>12</inState> <outState>13</outState> <condition> <id>52</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_415"> <inState>13</inState> <outState>14</outState> <condition> <id>53</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_416"> <inState>14</inState> <outState>15</outState> <condition> <id>54</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_417"> <inState>15</inState> <outState>16</outState> <condition> <id>55</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_418"> <inState>16</inState> <outState>17</outState> <condition> <id>56</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_419"> <inState>17</inState> <outState>18</outState> <condition> <id>57</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_420"> <inState>18</inState> <outState>19</outState> <condition> <id>58</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_421"> <inState>19</inState> <outState>20</outState> <condition> <id>59</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_422"> <inState>20</inState> <outState>21</outState> <condition> <id>60</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_423"> <inState>21</inState> <outState>22</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_424"> <inState>22</inState> <outState>23</outState> <condition> <id>62</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_425"> <inState>23</inState> <outState>24</outState> <condition> <id>63</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_426"> <inState>24</inState> <outState>25</outState> <condition> <id>64</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_427"> <inState>25</inState> <outState>26</outState> <condition> <id>65</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_428"> <inState>26</inState> <outState>27</outState> <condition> <id>66</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_429"> <inState>27</inState> <outState>28</outState> <condition> <id>67</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_430"> <inState>28</inState> <outState>29</outState> <condition> <id>68</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_431"> <inState>29</inState> <outState>8</outState> <condition> <id>70</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_432"> <inState>8</inState> <outState>6</outState> <condition> <id>72</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>61</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_433"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>DCT_8x8_2D_dadd_6dEe_U2 (DCT_8x8_2D_dadd_6dEe)</first> <second class_id="39" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>DSP48E</first> <second>3</second> </item> <item> <first>FF</first> <second>430</second> </item> <item> <first>LUT</first> <second>1130</second> </item> </second> </item> <item> <first>DCT_8x8_2D_dmul_6eOg_U3 (DCT_8x8_2D_dmul_6eOg)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>11</second> </item> <item> <first>FF</first> <second>275</second> </item> <item> <first>LUT</first> <second>558</second> </item> </second> </item> <item> <first>DCT_8x8_2D_fpext_cud_U1 (DCT_8x8_2D_fpext_cud)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>0</second> </item> <item> <first>FF</first> <second>100</second> </item> <item> <first>LUT</first> <second>138</second> </item> </second> </item> <item> <first>DCT_8x8_2D_fptrunbkb_U0 (DCT_8x8_2D_fptrunbkb)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>0</second> </item> <item> <first>FF</first> <second>128</second> </item> <item> <first>LUT</first> <second>277</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>19</count> <item_version>0</item_version> <item> <first>G_2_in_v_fu_373_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>(2P2)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>exitcond1_fu_276_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond_fu_347_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>tmp_12_fu_365_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>62</second> </item> <item> <first>(2P2)</first> <second>62</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>62</second> </item> </second> </item> <item> <first>tmp_21_fu_256_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_22_fu_266_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_23_fu_305_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_24_fu_315_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_26_fu_337_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_2_fu_294_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>62</second> </item> <item> <first>(2P2)</first> <second>62</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>62</second> </item> </second> </item> <item> <first>tmp_4_fu_196_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>62</second> </item> <item> <first>(2P2)</first> <second>62</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>62</second> </item> </second> </item> <item> <first>tmp_6_fu_204_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>62</second> </item> <item> <first>(2P2)</first> <second>62</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>62</second> </item> </second> </item> <item> <first>tmp_fu_173_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>tmp_i1_fu_185_p2 ( icmp ) </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>2</second> </item> </second> </item> <item> <first>tmp_i2_fu_288_p2 ( icmp ) </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>2</second> </item> </second> </item> <item> <first>tmp_i3_fu_359_p2 ( icmp ) </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>2</second> </item> </second> </item> <item> <first>tmp_i_fu_179_p2 ( icmp ) </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>2</second> </item> </second> </item> <item> <first>x_fu_282_p2 ( + ) </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>y_fu_353_p2 ( + ) </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> </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>8</count> <item_version>0</item_version> <item> <first>G_fu_42</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>30</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>30</second> </item> <item> <first>LUT</first> <second>24</second> </item> </second> </item> <item> <first>cosMat_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>30</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>grp_fu_135_p0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>grp_fu_144_p0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>6</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>384</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>grp_fu_144_p1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>6</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>384</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>x_assign_1_reg_121</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>x_assign_reg_110</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>27</count> <item_version>0</item_version> <item> <first>G_2_in_reg_530</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>G_2_in_v_reg_525</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>G_fu_42</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>29</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>29</second> </item> </second> </item> <item> <first>cosMat_addr_2_reg_492</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>cosMat_addr_3_reg_497</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>reg_152</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>reg_157</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>reg_163</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>reg_168</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_16_reg_520</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_19_cast_reg_434</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>4</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_21_cast_reg_444</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>4</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_23_cast_reg_454</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>4</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_2_reg_482</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>52</second> </item> <item> <first>FF</first> <second>12</second> </item> </second> </item> <item> <first>tmp_7_reg_449</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_i1_reg_414</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_i2_reg_477</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_i3_reg_510</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_i_reg_409</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_reg_404</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>u_cast1_cast_reg_439</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>4</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>v_cast2_cast_reg_429</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>4</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>x_assign_1_reg_121</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>x_assign_reg_110</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>x_reg_472</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>y_reg_505</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>DCT_8x8_2D_dadd_6dEe_U2 (DCT_8x8_2D_dadd_6dEe)</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>DCT_8x8_2D_dmul_6eOg_U3 (DCT_8x8_2D_dmul_6eOg)</first> <second> <count>8</count> <item_version>0</item_version> <item>21</item> <item>69</item> <item>70</item> <item>73</item> <item>77</item> <item>78</item> <item>79</item> <item>82</item> </second> </item> <item> <first>DCT_8x8_2D_fpext_cud_U1 (DCT_8x8_2D_fpext_cud)</first> <second> <count>6</count> <item_version>0</item_version> <item>41</item> <item>45</item> <item>68</item> <item>72</item> <item>74</item> <item>81</item> </second> </item> <item> <first>DCT_8x8_2D_fptrunbkb_U0 (DCT_8x8_2D_fptrunbkb)</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> </dp_component_map> <dp_expression_map> <count>19</count> <item_version>0</item_version> <item> <first>G_2_in_v_fu_373_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>exitcond1_fu_276_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>exitcond_fu_347_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_12_fu_365_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_21_fu_256_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_22_fu_266_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_23_fu_305_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_24_fu_315_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_26_fu_337_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_2_fu_294_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_4_fu_196_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_6_fu_204_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_fu_173_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_i1_fu_185_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_i2_fu_288_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_i3_fu_359_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_i_fu_179_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>x_fu_282_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>y_fu_353_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>63</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>79</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>6</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>4</first> <second>0</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>5</first> <second>0</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>5</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>41</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>68</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>3</second> </second> </item> <item> <first>70</first> <second> <first>13</first> <second>3</second> </second> </item> <item> <first>71</first> <second> <first>15</first> <second>1</second> </second> </item> <item> <first>72</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>17</first> <second>3</second> </second> </item> <item> <first>74</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>8</first> <second>3</second> </second> </item> <item> <first>78</first> <second> <first>12</first> <second>3</second> </second> </item> <item> <first>79</first> <second> <first>16</first> <second>3</second> </second> </item> <item> <first>80</first> <second> <first>18</first> <second>1</second> </second> </item> <item> <first>81</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>20</first> <second>3</second> </second> </item> <item> <first>83</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>24</first> <second>3</second> </second> </item> <item> <first>85</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>24</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>4</second> </second> </item> <item> <first>39</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>47</first> <second> <first>5</first> <second>6</second> </second> </item> <item> <first>65</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>88</first> <second> <first>7</first> <second>28</second> </second> </item> <item> <first>90</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>93</first> <second> <first>5</first> <second>5</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>56</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>42</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>46</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>71</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>78</first> <second> <count>8</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>71</item> <item>71</item> <item>80</item> <item>80</item> </second> </item> <item> <first>84</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>91</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>105</first> <second> <count>2</count> <item_version>0</item_version> <item>67</item> <item>67</item> </second> </item> <item> <first>114</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>125</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>135</first> <second> <count>6</count> <item_version>0</item_version> <item>41</item> <item>45</item> <item>68</item> <item>72</item> <item>81</item> <item>74</item> </second> </item> <item> <first>140</first> <second> <count>4</count> <item_version>0</item_version> <item>84</item> <item>84</item> <item>84</item> <item>84</item> </second> </item> <item> <first>144</first> <second> <count>32</count> <item_version>0</item_version> <item>21</item> <item>21</item> <item>21</item> <item>21</item> <item>77</item> <item>77</item> <item>77</item> <item>77</item> <item>69</item> <item>69</item> <item>69</item> <item>69</item> <item>78</item> <item>78</item> <item>78</item> <item>78</item> <item>70</item> <item>70</item> <item>70</item> <item>70</item> <item>79</item> <item>79</item> <item>79</item> <item>79</item> <item>73</item> <item>73</item> <item>73</item> <item>73</item> <item>82</item> <item>82</item> <item>82</item> <item>82</item> </second> </item> <item> <first>148</first> <second> <count>2</count> <item_version>0</item_version> <item>91</item> <item>66</item> </second> </item> <item> <first>173</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>179</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>196</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>215</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>222</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>240</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>244</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>252</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>266</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>271</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>276</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>282</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>305</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>310</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>315</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>320</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>325</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>353</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>359</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>365</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>373</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>380</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>46</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>G_1_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>G_2_in_v_fu_373</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>G_fu_42</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>cosMat_addr_1_gep_fu_71</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>cosMat_addr_2_gep_fu_91</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>cosMat_addr_3_gep_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>cosMat_addr_gep_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>exitcond1_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>exitcond_fu_347</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>grp_fu_135</first> <second> <count>6</count> <item_version>0</item_version> <item>41</item> <item>45</item> <item>68</item> <item>72</item> <item>81</item> <item>74</item> </second> </item> <item> <first>subimg_addr_gep_fu_84</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_12_fu_365</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_18_fu_215</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_19_cast_fu_222</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_19_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>tmp_20_fu_244</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>tmp_21_cast_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp_21_fu_256</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_22_fu_266</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_23_cast_fu_252</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_23_fu_305</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_24_cast_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp_24_fu_315</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_25_cast_fu_271</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_25_fu_325</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_26_cast_fu_310</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_26_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_27_cast_fu_320</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_29_cast_fu_333</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_2_fu_294</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_30_cast_fu_342</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_4_fu_196</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_6_fu_204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_fu_173</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_i1_fu_185</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_i2_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_i3_fu_359</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_i_fu_179</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>u_cast1_cast_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>v_cast2_cast_fu_212</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>x_assign_1_cast1_cas_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>x_assign_1_phi_fu_125</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>x_assign_cast2_cast_fu_240</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>x_assign_phi_fu_114</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>x_fu_282</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>y_fu_353</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_fu_140</first> <second> <count>4</count> <item_version>0</item_version> <item>84</item> <item>84</item> <item>84</item> <item>84</item> </second> </item> <item> <first>grp_fu_144</first> <second> <count>32</count> <item_version>0</item_version> <item>21</item> <item>21</item> <item>21</item> <item>21</item> <item>77</item> <item>77</item> <item>77</item> <item>77</item> <item>69</item> <item>69</item> <item>69</item> <item>69</item> <item>78</item> <item>78</item> <item>78</item> <item>78</item> <item>70</item> <item>70</item> <item>70</item> <item>70</item> <item>79</item> <item>79</item> <item>79</item> <item>79</item> <item>73</item> <item>73</item> <item>73</item> <item>73</item> <item>82</item> <item>82</item> <item>82</item> <item>82</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>6</count> <item_version>0</item_version> <item> <first>StgValue_141_store_fu_380</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>StgValue_37_store_fu_191</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>grp_load_fu_148</first> <second> <count>2</count> <item_version>0</item_version> <item>91</item> <item>66</item> </second> </item> <item> <first>inv_read_read_fu_46</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>u_read_read_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>v_read_read_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>1</count> <item_version>0</item_version> <item> <first>ap_return</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> </return_ports> <dp_mem_port_nodes class_id="55" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first class_id="57" tracking_level="0" version="0"> <first>cosMat</first> <second>0</second> </first> <second> <count>8</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>71</item> <item>71</item> <item>80</item> <item>80</item> </second> </item> <item> <first> <first>subimg</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>67</item> <item>67</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>34</count> <item_version>0</item_version> <item> <first>110</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>121</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>152</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>45</item> </second> </item> <item> <first>157</first> <second> <count>3</count> <item_version>0</item_version> <item>68</item> <item>72</item> <item>74</item> </second> </item> <item> <first>163</first> <second> <count>3</count> <item_version>0</item_version> <item>77</item> <item>78</item> <item>79</item> </second> </item> <item> <first>168</first> <second> <count>3</count> <item_version>0</item_version> <item>69</item> <item>70</item> <item>73</item> </second> </item> <item> <first>385</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>392</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>409</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>449</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>454</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>459</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>464</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>477</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>482</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>487</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>492</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>497</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>505</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>515</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>520</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>525</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>530</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>34</count> <item_version>0</item_version> <item> <first>G_2_in_reg_530</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>G_2_in_v_reg_525</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>G_reg_385</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>cosMat_addr_1_reg_464</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>cosMat_addr_2_reg_492</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>cosMat_addr_3_reg_497</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>cosMat_addr_reg_459</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>reg_152</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>45</item> </second> </item> <item> <first>reg_157</first> <second> <count>3</count> <item_version>0</item_version> <item>68</item> <item>72</item> <item>74</item> </second> </item> <item> <first>reg_163</first> <second> <count>3</count> <item_version>0</item_version> <item>77</item> <item>78</item> <item>79</item> </second> </item> <item> <first>reg_168</first> <second> <count>3</count> <item_version>0</item_version> <item>69</item> <item>70</item> <item>73</item> </second> </item> <item> <first>subimg_addr_reg_487</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_12_reg_515</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_16_reg_520</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp_19_cast_reg_434</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_21_cast_reg_444</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp_23_cast_reg_454</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_2_reg_482</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_4_reg_419</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_6_reg_424</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_7_reg_449</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>tmp_i1_reg_414</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_i2_reg_477</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_i3_reg_510</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_i_reg_409</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_reg_404</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>u_cast1_cast_reg_439</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>u_read_reg_398</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>v_cast2_cast_reg_429</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>v_read_reg_392</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>x_assign_1_reg_121</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>x_assign_reg_110</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>x_reg_472</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>y_reg_505</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>110</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>121</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>x_assign_1_reg_121</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>x_assign_reg_110</first> <second> <count>1</count> <item_version>0</item_version> <item>25</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>cosMat(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>8</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>44</item> <item>44</item> <item>71</item> <item>71</item> <item>80</item> <item>80</item> </second> </item> </second> </item> <item> <first>inv</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </second> </item> <item> <first>subimg(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>2</count> <item_version>0</item_version> <item>67</item> <item>67</item> </second> </item> </second> </item> <item> <first>u</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </second> </item> <item> <first>v</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>8</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>5</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Ada.Unchecked_Conversion; package Tkmrpc.Request.Ike.Tkm_Version.Convert is function To_Request is new Ada.Unchecked_Conversion ( Source => Tkm_Version.Request_Type, Target => Request.Data_Type); function From_Request is new Ada.Unchecked_Conversion ( Source => Request.Data_Type, Target => Tkm_Version.Request_Type); end Tkmrpc.Request.Ike.Tkm_Version.Convert;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . M D 5 -- -- -- -- S p e c -- -- -- -- XXXXXXXXX (C) 2002-2008, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package implements the MD5 Message-Digest Algorithm as described in -- RFC 1321. The complete text of RFC 1321 can be found at: -- -- http://www.ietf.org/rfc/rfc1321.txt -- -- The implementation is derived from the RSA Data Security, Inc. MD5 -- Message-Digest Algorithm, as described in RFC 1321. with Ada.Streams; with Interfaces; package GNAT.MD5 is type Context is private; -- This type is the four-word (16 byte) MD buffer, as described in -- RFC 1321 (3.3). Its initial value is Initial_Context below. Initial_Context : constant Context; -- Initial value of a Context object. May be used to reinitialize -- a Context value by simple assignment of this value to the object. procedure Update (C : in out Context; Input : String); procedure Wide_Update (C : in out Context; Input : Wide_String); procedure Update (C : in out Context; Input : Ada.Streams.Stream_Element_Array); -- Modify the Context C. If C has the initial value Initial_Context, -- then, after a call to one of these procedures, Digest (C) will return -- the Message-Digest of Input. -- -- These procedures may be called successively with the same context and -- different inputs, and these several successive calls will produce -- the same final context as a call with the concatenation of the inputs. subtype Message_Digest is String (1 .. 32); -- The string type returned by function Digest function Digest (C : Context) return Message_Digest; -- Extracts the Message-Digest from a context. This function should be -- used after one or several calls to Update. function Digest (S : String) return Message_Digest; function Wide_Digest (W : Wide_String) return Message_Digest; function Digest (A : Ada.Streams.Stream_Element_Array) return Message_Digest; -- These functions are equivalent to the corresponding Update (or -- Wide_Update) on a default initialized Context, followed by Digest -- on the resulting Context. private -- Magic numbers Initial_A : constant := 16#67452301#; Initial_B : constant := 16#EFCDAB89#; Initial_C : constant := 16#98BADCFE#; Initial_D : constant := 16#10325476#; type Context is record A : Interfaces.Unsigned_32 := Initial_A; B : Interfaces.Unsigned_32 := Initial_B; C : Interfaces.Unsigned_32 := Initial_C; D : Interfaces.Unsigned_32 := Initial_D; Buffer : String (1 .. 64) := (others => ASCII.NUL); Last : Natural := 0; Length : Natural := 0; end record; Initial_Context : constant Context := (A => Initial_A, B => Initial_B, C => Initial_C, D => Initial_D, Buffer => (others => ASCII.NUL), Last => 0, Length => 0); end GNAT.MD5;
with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with System; package dlfcn_h is function dlopen (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : int) return System.Address; -- /usr/include/dlfcn.h:57:14 pragma Import (C, dlopen, "dlopen"); function dlclose (arg1 : System.Address) return int; -- /usr/include/dlfcn.h:61:12 pragma Import (C, dlclose, "dlclose"); function dlsym (arg1 : System.Address; arg2 : Interfaces.C.Strings.chars_ptr) return System.Address; -- /usr/include/dlfcn.h:65:14 pragma Import (C, dlsym, "dlsym"); function dlerror return Interfaces.C.Strings.chars_ptr; -- /usr/include/dlfcn.h:83:14 pragma Import (C, dlerror, "dlerror"); end dlfcn_h;
-- -- Copyright (C) 2016 secunet Security Networks AG -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.GFX.GMA.Power_And_Clocks_Ironlake; private package HW.GFX.GMA.Power_And_Clocks renames HW.GFX.GMA.Power_And_Clocks_Ironlake;
with Ada.Text_IO; use Ada.Text_IO; package body Radar_Internals is T : Natural := 0; procedure Time_Step (Radar_Angle : Float; Time_To_Arrival : Float; John_Connor_Status : String) is E_T_A_H : Integer := Integer (Float'Floor (Time_To_Arrival / 3600.0)); E_T_A_M : Integer := Integer (Float'Floor (Time_To_Arrival / 60.0)) mod 60; E_T_A_S : Integer := Integer (Float'Rounding (Time_To_Arrival)) mod 60; begin Put_Line ("T =" & Natural'Image(T) & " " & "ETA" & Integer'Image (E_T_A_H) & "h" & Integer'Image (E_T_A_M) & "m" & Integer'Image (E_T_A_S) & "s" & " " & "John Connor is " & John_Connor_Status); T := T + 1; end Time_Step; end Radar_Internals;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_spi.h -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief Header file of SPI HAL module. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides definitions for the STM32F4 (ARM Cortex M4F -- from ST Microelectronics) Serial Peripheral Interface (SPI) facility. private with STM32_SVD.SPI; with HAL.SPI; package STM32.SPI is type Internal_SPI_Port is private; type SPI_Port (Periph : not null access Internal_SPI_Port) is limited new HAL.SPI.SPI_Port with private; type SPI_Data_Direction is (D2Lines_FullDuplex, D2Lines_RxOnly, D1Line_Rx, D1Line_Tx); type SPI_Mode is (Master, Slave); type SPI_CLock_Polarity is (High, Low); type SPI_CLock_Phase is (P1Edge, P2Edge); type SPI_Slave_Management is (Software_Managed, Hardware_Managed); type SPI_Slave_NSS is (External_NSS, Internal_NSS); type SPI_Baud_Rate_Prescaler is (BRP_2, BRP_4, BRP_8, BRP_16, BRP_32, BRP_64, BRP_128, BRP_256); type SPI_First_Bit is (MSB, LSB); type SPI_Configuration is record Direction : SPI_Data_Direction; Mode : SPI_Mode; Data_Size : HAL.SPI.SPI_Data_Size; Clock_Polarity : SPI_CLock_Polarity; Clock_Phase : SPI_CLock_Phase; Slave_Management : SPI_Slave_Management; Slave_Internal : SPI_Slave_NSS; Baud_Rate_Prescaler : SPI_Baud_Rate_Prescaler; First_Bit : SPI_First_Bit; CRC_Poly : UInt16; Transmit_DMA : Boolean; Receive_DMA : Boolean; Fifo_Level : Boolean; -- When RXNE assserts: 1 For 8bit, 0 for 16bit end record; procedure Configure (This : in out SPI_Port; Conf : SPI_Configuration); procedure Enable (This : in out SPI_Port); procedure Disable (This : in out SPI_Port); function Enabled (This : SPI_Port) return Boolean; procedure Send (This : in out SPI_Port; Data : UInt16); function Data (This : SPI_Port) return UInt16 with Inline; procedure Send (This : in out SPI_Port; Data : UInt8); function Data (This : SPI_Port) return UInt8 with Inline; function Is_Busy (This : SPI_Port) return Boolean with Inline; function Rx_Is_Empty (This : SPI_Port) return Boolean with Inline; function Tx_Is_Empty (This : SPI_Port) return Boolean with Inline; function Busy (This : SPI_Port) return Boolean with Inline; -- function Channel_Side_Indicated (This : SPI_Port) return Boolean -- with Inline; -- function Underrun_Indicated (This : SPI_Port) return Boolean -- with Inline; function CRC_Error_Indicated (This : SPI_Port) return Boolean with Inline; function Mode_Fault_Indicated (This : SPI_Port) return Boolean with Inline; function Overrun_Indicated (This : SPI_Port) return Boolean with Inline; function Frame_Fmt_Error_Indicated (This : SPI_Port) return Boolean with Inline; procedure Clear_Overrun (This : SPI_Port); procedure Reset_CRC (This : in out SPI_Port); function CRC_Enabled (This : SPI_Port) return Boolean; function Is_Data_Frame_16bit (This : SPI_Port) return Boolean; function Current_Mode (This : SPI_Port) return SPI_Mode; function Current_Data_Direction (This : SPI_Port) return SPI_Data_Direction; -- The following I/O routines implement the higher level functionality for -- CRC and data direction, among others. procedure Flush_Fifo (This : in out SPI_Port); type UInt8_Buffer is array (Natural range <>) of UInt8 with Alignment => 2; -- The alignment is set to 2 because we treat component pairs as half_word -- values when sending/receiving in 16-bit mode. -- Blocking overriding function Data_Size (This : SPI_Port) return HAL.SPI.SPI_Data_Size; overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); procedure Transmit (This : in out SPI_Port; Outgoing : UInt8); overriding procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); overriding procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); overriding procedure Transmit_Receive (This : in out SPI_Port; Outgoing : HAL.SPI.SPI_Data_8b; Incoming : out HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); procedure Receive (This : in out SPI_Port; Incoming : out UInt8); procedure Transmit_Receive (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive); procedure Transmit_Receive (This : in out SPI_Port; Outgoing : UInt8; Incoming : out UInt8); -- TODO: add the other higher-level HAL routines for interrupts and DMA private type Internal_SPI_Port is new STM32_SVD.SPI.SPI_Peripheral; type SPI_Port (Periph : not null access Internal_SPI_Port) is limited new HAL.SPI.SPI_Port with null record; procedure Send_Receive_16bit_Mode (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive); procedure Send_Receive_8bit_Mode (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive); procedure Send_16bit_Mode (This : in out SPI_Port; Outgoing : HAL.SPI.SPI_Data_16b); procedure Send_8bit_Mode (This : in out SPI_Port; Outgoing : HAL.SPI.SPI_Data_8b); procedure Receive_16bit_Mode (This : in out SPI_Port; Incoming : out HAL.SPI.SPI_Data_16b); procedure Receive_8bit_Mode (This : in out SPI_Port; Incoming : out HAL.SPI.SPI_Data_8b); end STM32.SPI;
-- Ascon_Definitions -- Some type / subtype definitions in common use in the Ascon code. -- As some uses of these types are in generic parameters, it is not possible -- to hide them. -- Copyright (c) 2016-2018, James Humphry - see LICENSE file for details pragma Restrictions(No_Implementation_Attributes, No_Implementation_Identifiers, No_Implementation_Units, No_Obsolescent_Features); package Ascon_Definitions with Pure, SPARK_Mode => On is subtype Rate_Bits is Integer with Static_Predicate => Rate_Bits in 64 | 128; subtype Round_Count is Integer range 1..12; subtype Round_Offset is Integer range 0..11; end Ascon_Definitions;
-- Institution: Technische Universitaet Muenchen -- Department: Realtime Computer Systems (RCS) -- Project: StratoX -- -- Authors: Martin Becker (becker@rcs.ei.tum.de> with HIL.Config; with HIL.Timers; with HIL.Devices.Timers; -- @summary -- Target-independent specification for simple HIL of Piezo Buzzer package body HIL.Buzzer is procedure Initialize is begin case HIL.Config.BUZZER_PORT is when HIL.Config.BUZZER_USE_AUX5 => HIL.Timers.Initialize (HIL.Devices.Timers.Timer_Buzzer_Aux); when HIL.Config.BUZZER_USE_PORT => HIL.Timers.Initialize (HIL.Devices.Timers.Timer_Buzzer_Port); end case; end Initialize; procedure Enable is begin case HIL.Config.BUZZER_PORT is when HIL.Config.BUZZER_USE_AUX5 => HIL.Timers.Enable (t => HIL.Devices.Timers.Timer_Buzzer_Aux, ch => HIL.Devices.Timers.Timerchannel_Buzzer_Aux); when HIL.Config.BUZZER_USE_PORT => HIL.Timers.Enable (t => HIL.Devices.Timers.Timer_Buzzer_Port, ch => HIL.Devices.Timers.Timerchannel_Buzzer_Port); end case; end Enable; procedure Disable is begin case HIL.Config.BUZZER_PORT is when HIL.Config.BUZZER_USE_AUX5 => HIL.Timers.Disable (t => HIL.Devices.Timers.Timer_Buzzer_Aux, ch => HIL.Devices.Timers.Timerchannel_Buzzer_Aux); when HIL.Config.BUZZER_USE_PORT => HIL.Timers.Disable (t => HIL.Devices.Timers.Timer_Buzzer_Port, ch => HIL.Devices.Timers.Timerchannel_Buzzer_Port); end case; end Disable; procedure Set_Frequency (Frequency : Units.Frequency_Type) is begin case HIL.Config.BUZZER_PORT is when HIL.Config.BUZZER_USE_AUX5 => HIL.Timers.Configure_OC_Toggle (This => HIL.Devices.Timers.Timer_Buzzer_Aux, Channel => HIL.Devices.Timers.Timerchannel_Buzzer_Aux, Frequency => Frequency); when HIL.Config.BUZZER_USE_PORT => HIL.Timers.Configure_OC_Toggle (This => HIL.Devices.Timers.Timer_Buzzer_Port, Channel => HIL.Devices.Timers.Timerchannel_Buzzer_Port, Frequency => Frequency); end case; end Set_Frequency; end HIL.Buzzer;
with Ada.Text_IO; use Ada.Text_IO; procedure Adventofcode.Day_3.Main is Slope : Slope_Type; Result : Long_Long_Integer; begin Slope.Read ("src/day-3/input"); Put_Line (Slope.Race (3, 1)'Img); Result := Slope.Race (1, 1) * Slope.Race (3, 1) * Slope.Race (5, 1) * Slope.Race (7, 1) * Slope.Race (1, 2); Put_Line (Result'Img); end Adventofcode.Day_3.Main;
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of ada.ads file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Containers; function Ada.Strings.Wide_Unbounded.Wide_Hash (Key : in Unbounded_Wide_String) return Ada.Containers.Hash_Type; pragma Preelaborate (Wide_Hash);
package body Animals is function Legs (A : Animal) return Natural is (A.Number_Of_Legs); function Wings (A : Animal) return Natural is (A.Number_Of_Wings); procedure Add_Wings (A : in out Animal; N : Positive) is begin A.Number_Of_Wings := A.Wings + 2 * N; end Add_Wings; procedure Add_Legs (A : in out Animal; N : Positive) is begin A.Number_Of_Legs := A.Number_Of_Legs + 2 * N; end Add_Legs; end Animals;
-- This package was generated by the Ada_Drivers_Library project wizard script package ADL_Config is Architecture : constant String := "ARM"; -- From board definition Board : constant String := "NRF52_DK"; -- From command line Boot_Memory : constant String := "flash"; -- From default value CPU_Core : constant String := "ARM Cortex-M4F"; -- From mcu definition Device_Family : constant String := "nRF52"; -- From board definition Device_Name : constant String := "nRF52832xxAA"; -- From board definition Has_Custom_Memory_Area_1 : constant Boolean := False; -- From default value Has_Ravenscar_Full_Runtime : constant String := "False"; -- From board definition Has_Ravenscar_SFP_Runtime : constant String := "False"; -- From board definition Has_ZFP_Runtime : constant String := "True"; -- From board definition Max_Mount_Name_Length : constant := 128; -- From default value Max_Mount_Points : constant := 2; -- From default value Max_Path_Length : constant := 1024; -- From default value Number_Of_Interrupts : constant := 128; -- From MCU definition Runtime_Name : constant String := "zfp-cortex-m4f"; -- From default value Runtime_Name_Suffix : constant String := "cortex-m4f"; -- From board definition Runtime_Profile : constant String := "zfp"; -- From command line Use_Startup_Gen : constant Boolean := True; -- From command line Vendor : constant String := "Nordic"; -- From board definition end ADL_Config;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- W A R N S W -- -- -- -- B o d y -- -- -- -- Copyright (C) 1999-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. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Err_Vars; use Err_Vars; with Opt; use Opt; with Output; use Output; package body Warnsw is -- Local Subprograms procedure All_Warnings (Setting : Boolean); -- Sets all warnings off if Setting = False, and on if Setting = True procedure WA_Warnings; -- Turn on all warnings set by -gnatwa (also used by -gnatw.g) ------------------ -- All_Warnings -- ------------------ procedure All_Warnings (Setting : Boolean) is begin Address_Clause_Overlay_Warnings := Setting; Check_Unreferenced := Setting; Check_Unreferenced_Formals := Setting; Check_Withs := Setting; Constant_Condition_Warnings := Setting; Elab_Warnings := Setting; Implementation_Unit_Warnings := Setting; Ineffective_Inline_Warnings := Setting; List_Body_Required_Info := Setting; List_Inherited_Aspects := Setting; Warn_On_Ada_2005_Compatibility := Setting; Warn_On_Ada_2012_Compatibility := Setting; Warn_On_All_Unread_Out_Parameters := Setting; Warn_On_Assertion_Failure := Setting; Warn_On_Assumed_Low_Bound := Setting; Warn_On_Atomic_Synchronization := Setting; Warn_On_Bad_Fixed_Value := Setting; Warn_On_Biased_Representation := Setting; Warn_On_Constant := Setting; Warn_On_Deleted_Code := Setting; Warn_On_Dereference := Setting; Warn_On_Export_Import := Setting; Warn_On_Hiding := Setting; Warn_On_Modified_Unread := Setting; Warn_On_No_Value_Assigned := Setting; Warn_On_Non_Local_Exception := Setting; Warn_On_Object_Renames_Function := Setting; Warn_On_Obsolescent_Feature := Setting; Warn_On_Overlap := Setting; Warn_On_Overridden_Size := Setting; Warn_On_Parameter_Order := Setting; Warn_On_Questionable_Missing_Parens := Setting; Warn_On_Record_Holes := Setting; Warn_On_Redundant_Constructs := Setting; Warn_On_Reverse_Bit_Order := Setting; Warn_On_Size_Alignment := Setting; Warn_On_Standard_Redefinition := Setting; Warn_On_Suspicious_Contract := Setting; Warn_On_Suspicious_Modulus_Value := Setting; Warn_On_Unchecked_Conversion := Setting; Warn_On_Unordered_Enumeration_Type := Setting; Warn_On_Unrecognized_Pragma := Setting; Warn_On_Unrepped_Components := Setting; Warn_On_Warnings_Off := Setting; end All_Warnings; ---------------------- -- Restore_Warnings -- ---------------------- procedure Restore_Warnings (W : Warning_Record) is begin Address_Clause_Overlay_Warnings := W.Address_Clause_Overlay_Warnings; Check_Unreferenced := W.Check_Unreferenced; Check_Unreferenced_Formals := W.Check_Unreferenced_Formals; Check_Withs := W.Check_Withs; Constant_Condition_Warnings := W.Constant_Condition_Warnings; Elab_Warnings := W.Elab_Warnings; Elab_Info_Messages := W.Elab_Info_Messages; Implementation_Unit_Warnings := W.Implementation_Unit_Warnings; Ineffective_Inline_Warnings := W.Ineffective_Inline_Warnings; List_Body_Required_Info := W.List_Body_Required_Info; List_Inherited_Aspects := W.List_Inherited_Aspects; No_Warn_On_Non_Local_Exception := W.No_Warn_On_Non_Local_Exception; Warning_Doc_Switch := W.Warning_Doc_Switch; Warn_On_Ada_2005_Compatibility := W.Warn_On_Ada_2005_Compatibility; Warn_On_Ada_2012_Compatibility := W.Warn_On_Ada_2012_Compatibility; Warn_On_All_Unread_Out_Parameters := W.Warn_On_All_Unread_Out_Parameters; Warn_On_Assertion_Failure := W.Warn_On_Assertion_Failure; Warn_On_Assumed_Low_Bound := W.Warn_On_Assumed_Low_Bound; Warn_On_Atomic_Synchronization := W.Warn_On_Atomic_Synchronization; Warn_On_Bad_Fixed_Value := W.Warn_On_Bad_Fixed_Value; Warn_On_Biased_Representation := W.Warn_On_Biased_Representation; Warn_On_Constant := W.Warn_On_Constant; Warn_On_Deleted_Code := W.Warn_On_Deleted_Code; Warn_On_Dereference := W.Warn_On_Dereference; Warn_On_Export_Import := W.Warn_On_Export_Import; Warn_On_Hiding := W.Warn_On_Hiding; Warn_On_Modified_Unread := W.Warn_On_Modified_Unread; Warn_On_No_Value_Assigned := W.Warn_On_No_Value_Assigned; Warn_On_Non_Local_Exception := W.Warn_On_Non_Local_Exception; Warn_On_Object_Renames_Function := W.Warn_On_Object_Renames_Function; Warn_On_Obsolescent_Feature := W.Warn_On_Obsolescent_Feature; Warn_On_Overlap := W.Warn_On_Overlap; Warn_On_Overridden_Size := W.Warn_On_Overridden_Size; Warn_On_Parameter_Order := W.Warn_On_Parameter_Order; Warn_On_Questionable_Missing_Parens := W.Warn_On_Questionable_Missing_Parens; Warn_On_Record_Holes := W.Warn_On_Record_Holes; Warn_On_Redundant_Constructs := W.Warn_On_Redundant_Constructs; Warn_On_Reverse_Bit_Order := W.Warn_On_Reverse_Bit_Order; Warn_On_Size_Alignment := W.Warn_On_Size_Alignment; Warn_On_Standard_Redefinition := W.Warn_On_Standard_Redefinition; Warn_On_Suspicious_Contract := W.Warn_On_Suspicious_Contract; Warn_On_Unchecked_Conversion := W.Warn_On_Unchecked_Conversion; Warn_On_Unordered_Enumeration_Type := W.Warn_On_Unordered_Enumeration_Type; Warn_On_Unrecognized_Pragma := W.Warn_On_Unrecognized_Pragma; Warn_On_Unrepped_Components := W.Warn_On_Unrepped_Components; Warn_On_Warnings_Off := W.Warn_On_Warnings_Off; end Restore_Warnings; ------------------- -- Save_Warnings -- ------------------- function Save_Warnings return Warning_Record is W : Warning_Record; begin W.Address_Clause_Overlay_Warnings := Address_Clause_Overlay_Warnings; W.Check_Unreferenced := Check_Unreferenced; W.Check_Unreferenced_Formals := Check_Unreferenced_Formals; W.Check_Withs := Check_Withs; W.Constant_Condition_Warnings := Constant_Condition_Warnings; W.Elab_Info_Messages := Elab_Info_Messages; W.Elab_Warnings := Elab_Warnings; W.Implementation_Unit_Warnings := Implementation_Unit_Warnings; W.Ineffective_Inline_Warnings := Ineffective_Inline_Warnings; W.List_Body_Required_Info := List_Body_Required_Info; W.List_Inherited_Aspects := List_Inherited_Aspects; W.No_Warn_On_Non_Local_Exception := No_Warn_On_Non_Local_Exception; W.Warning_Doc_Switch := Warning_Doc_Switch; W.Warn_On_Ada_2005_Compatibility := Warn_On_Ada_2005_Compatibility; W.Warn_On_Ada_2012_Compatibility := Warn_On_Ada_2012_Compatibility; W.Warn_On_All_Unread_Out_Parameters := Warn_On_All_Unread_Out_Parameters; W.Warn_On_Assertion_Failure := Warn_On_Assertion_Failure; W.Warn_On_Assumed_Low_Bound := Warn_On_Assumed_Low_Bound; W.Warn_On_Atomic_Synchronization := Warn_On_Atomic_Synchronization; W.Warn_On_Bad_Fixed_Value := Warn_On_Bad_Fixed_Value; W.Warn_On_Biased_Representation := Warn_On_Biased_Representation; W.Warn_On_Constant := Warn_On_Constant; W.Warn_On_Deleted_Code := Warn_On_Deleted_Code; W.Warn_On_Dereference := Warn_On_Dereference; W.Warn_On_Export_Import := Warn_On_Export_Import; W.Warn_On_Hiding := Warn_On_Hiding; W.Warn_On_Modified_Unread := Warn_On_Modified_Unread; W.Warn_On_No_Value_Assigned := Warn_On_No_Value_Assigned; W.Warn_On_Non_Local_Exception := Warn_On_Non_Local_Exception; W.Warn_On_Object_Renames_Function := Warn_On_Object_Renames_Function; W.Warn_On_Obsolescent_Feature := Warn_On_Obsolescent_Feature; W.Warn_On_Overlap := Warn_On_Overlap; W.Warn_On_Overridden_Size := Warn_On_Overridden_Size; W.Warn_On_Parameter_Order := Warn_On_Parameter_Order; W.Warn_On_Questionable_Missing_Parens := Warn_On_Questionable_Missing_Parens; W.Warn_On_Record_Holes := Warn_On_Record_Holes; W.Warn_On_Redundant_Constructs := Warn_On_Redundant_Constructs; W.Warn_On_Reverse_Bit_Order := Warn_On_Reverse_Bit_Order; W.Warn_On_Size_Alignment := Warn_On_Size_Alignment; W.Warn_On_Standard_Redefinition := Warn_On_Standard_Redefinition; W.Warn_On_Suspicious_Contract := Warn_On_Suspicious_Contract; W.Warn_On_Unchecked_Conversion := Warn_On_Unchecked_Conversion; W.Warn_On_Unordered_Enumeration_Type := Warn_On_Unordered_Enumeration_Type; W.Warn_On_Unrecognized_Pragma := Warn_On_Unrecognized_Pragma; W.Warn_On_Unrepped_Components := Warn_On_Unrepped_Components; W.Warn_On_Warnings_Off := Warn_On_Warnings_Off; return W; end Save_Warnings; ---------------------------- -- Set_Dot_Warning_Switch -- ---------------------------- function Set_Dot_Warning_Switch (C : Character) return Boolean is begin case C is when 'a' => Warn_On_Assertion_Failure := True; when 'A' => Warn_On_Assertion_Failure := False; when 'b' => Warn_On_Biased_Representation := True; when 'B' => Warn_On_Biased_Representation := False; when 'c' => Warn_On_Unrepped_Components := True; when 'C' => Warn_On_Unrepped_Components := False; when 'd' => Warning_Doc_Switch := True; when 'D' => Warning_Doc_Switch := False; when 'e' => All_Warnings (True); when 'f' => Warn_On_Elab_Access := True; when 'F' => Warn_On_Elab_Access := False; when 'g' => Set_GNAT_Mode_Warnings; when 'h' => Warn_On_Record_Holes := True; when 'H' => Warn_On_Record_Holes := False; when 'i' => Warn_On_Overlap := True; when 'I' => Warn_On_Overlap := False; when 'k' => Warn_On_Standard_Redefinition := True; when 'K' => Warn_On_Standard_Redefinition := False; when 'l' => List_Inherited_Aspects := True; when 'L' => List_Inherited_Aspects := False; when 'm' => Warn_On_Suspicious_Modulus_Value := True; when 'M' => Warn_On_Suspicious_Modulus_Value := False; when 'n' => Warn_On_Atomic_Synchronization := True; when 'N' => Warn_On_Atomic_Synchronization := False; when 'o' => Warn_On_All_Unread_Out_Parameters := True; when 'O' => Warn_On_All_Unread_Out_Parameters := False; when 'p' => Warn_On_Parameter_Order := True; when 'P' => Warn_On_Parameter_Order := False; when 'r' => Warn_On_Object_Renames_Function := True; when 'R' => Warn_On_Object_Renames_Function := False; when 's' => Warn_On_Overridden_Size := True; when 'S' => Warn_On_Overridden_Size := False; when 't' => Warn_On_Suspicious_Contract := True; when 'T' => Warn_On_Suspicious_Contract := False; when 'u' => Warn_On_Unordered_Enumeration_Type := True; when 'U' => Warn_On_Unordered_Enumeration_Type := False; when 'v' => Warn_On_Reverse_Bit_Order := True; when 'V' => Warn_On_Reverse_Bit_Order := False; when 'w' => Warn_On_Warnings_Off := True; when 'W' => Warn_On_Warnings_Off := False; when 'x' => Warn_On_Non_Local_Exception := True; when 'X' => Warn_On_Non_Local_Exception := False; No_Warn_On_Non_Local_Exception := True; when 'y' => List_Body_Required_Info := True; when 'Y' => List_Body_Required_Info := False; when 'z' => Warn_On_Size_Alignment := True; when 'Z' => Warn_On_Size_Alignment := False; when others => if Ignore_Unrecognized_VWY_Switches then Write_Line ("unrecognized switch -gnatw." & C & " ignored"); else return False; end if; end case; return True; end Set_Dot_Warning_Switch; ---------------------------- -- Set_GNAT_Mode_Warnings -- ---------------------------- procedure Set_GNAT_Mode_Warnings is begin -- Set -gnatwa warnings and no others All_Warnings (False); WA_Warnings; -- These warnings are added to the -gnatwa set Address_Clause_Overlay_Warnings := True; Warn_On_Overridden_Size := True; -- These warnings are removed from the -gnatwa set Implementation_Unit_Warnings := False; Warn_On_Non_Local_Exception := False; No_Warn_On_Non_Local_Exception := True; Warn_On_Reverse_Bit_Order := False; Warn_On_Size_Alignment := False; Warn_On_Unrepped_Components := False; end Set_GNAT_Mode_Warnings; ------------------------ -- Set_Warning_Switch -- ------------------------ function Set_Warning_Switch (C : Character) return Boolean is begin case C is when 'a' => WA_Warnings; when 'A' => All_Warnings (False); No_Warn_On_Non_Local_Exception := True; when 'b' => Warn_On_Bad_Fixed_Value := True; when 'B' => Warn_On_Bad_Fixed_Value := False; when 'c' => Constant_Condition_Warnings := True; when 'C' => Constant_Condition_Warnings := False; when 'd' => Warn_On_Dereference := True; when 'D' => Warn_On_Dereference := False; when 'e' => Warning_Mode := Treat_As_Error; when 'f' => Check_Unreferenced_Formals := True; when 'F' => Check_Unreferenced_Formals := False; when 'g' => Warn_On_Unrecognized_Pragma := True; when 'G' => Warn_On_Unrecognized_Pragma := False; when 'h' => Warn_On_Hiding := True; when 'H' => Warn_On_Hiding := False; when 'i' => Implementation_Unit_Warnings := True; when 'I' => Implementation_Unit_Warnings := False; when 'j' => Warn_On_Obsolescent_Feature := True; when 'J' => Warn_On_Obsolescent_Feature := False; when 'k' => Warn_On_Constant := True; when 'K' => Warn_On_Constant := False; when 'l' => Elab_Warnings := True; when 'L' => Elab_Warnings := False; when 'm' => Warn_On_Modified_Unread := True; when 'M' => Warn_On_Modified_Unread := False; when 'n' => Warning_Mode := Normal; when 'o' => Address_Clause_Overlay_Warnings := True; when 'O' => Address_Clause_Overlay_Warnings := False; when 'p' => Ineffective_Inline_Warnings := True; when 'P' => Ineffective_Inline_Warnings := False; when 'q' => Warn_On_Questionable_Missing_Parens := True; when 'Q' => Warn_On_Questionable_Missing_Parens := False; when 'r' => Warn_On_Redundant_Constructs := True; when 'R' => Warn_On_Redundant_Constructs := False; when 's' => Warning_Mode := Suppress; when 't' => Warn_On_Deleted_Code := True; when 'T' => Warn_On_Deleted_Code := False; when 'u' => Check_Unreferenced := True; Check_Withs := True; Check_Unreferenced_Formals := True; when 'U' => Check_Unreferenced := False; Check_Withs := False; Check_Unreferenced_Formals := False; when 'v' => Warn_On_No_Value_Assigned := True; when 'V' => Warn_On_No_Value_Assigned := False; when 'w' => Warn_On_Assumed_Low_Bound := True; when 'W' => Warn_On_Assumed_Low_Bound := False; when 'x' => Warn_On_Export_Import := True; when 'X' => Warn_On_Export_Import := False; when 'y' => Warn_On_Ada_2005_Compatibility := True; Warn_On_Ada_2012_Compatibility := True; when 'Y' => Warn_On_Ada_2005_Compatibility := False; Warn_On_Ada_2012_Compatibility := False; when 'z' => Warn_On_Unchecked_Conversion := True; when 'Z' => Warn_On_Unchecked_Conversion := False; when others => if Ignore_Unrecognized_VWY_Switches then Write_Line ("unrecognized switch -gnatw" & C & " ignored"); else return False; end if; end case; return True; end Set_Warning_Switch; ----------------- -- WA_Warnings -- ----------------- procedure WA_Warnings is begin Check_Unreferenced := True; -- -gnatwf/-gnatwu Check_Unreferenced_Formals := True; -- -gnatwf/-gnatwu Check_Withs := True; -- -gnatwu Constant_Condition_Warnings := True; -- -gnatwc Implementation_Unit_Warnings := True; -- -gnatwi Ineffective_Inline_Warnings := True; -- -gnatwp Warn_On_Ada_2005_Compatibility := True; -- -gnatwy Warn_On_Ada_2012_Compatibility := True; -- -gnatwy Warn_On_Assertion_Failure := True; -- -gnatw.a Warn_On_Assumed_Low_Bound := True; -- -gnatww Warn_On_Bad_Fixed_Value := True; -- -gnatwb Warn_On_Biased_Representation := True; -- -gnatw.b Warn_On_Constant := True; -- -gnatwk Warn_On_Export_Import := True; -- -gnatwx Warn_On_Modified_Unread := True; -- -gnatwm Warn_On_No_Value_Assigned := True; -- -gnatwv Warn_On_Non_Local_Exception := True; -- -gnatw.x Warn_On_Object_Renames_Function := True; -- -gnatw.r Warn_On_Obsolescent_Feature := True; -- -gnatwj Warn_On_Overlap := True; -- -gnatw.i Warn_On_Parameter_Order := True; -- -gnatw.p Warn_On_Questionable_Missing_Parens := True; -- -gnatwq Warn_On_Redundant_Constructs := True; -- -gnatwr Warn_On_Reverse_Bit_Order := True; -- -gnatw.v Warn_On_Size_Alignment := True; -- -gnatw.z Warn_On_Suspicious_Contract := True; -- -gnatw.t Warn_On_Suspicious_Modulus_Value := True; -- -gnatw.m Warn_On_Unchecked_Conversion := True; -- -gnatwz Warn_On_Unrecognized_Pragma := True; -- -gnatwg Warn_On_Unrepped_Components := True; -- -gnatw.c end WA_Warnings; end Warnsw;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . P A R T -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Implements the parsing of project files into a tree with Prj.Tree; use Prj.Tree; package Prj.Part is procedure Parse (In_Tree : Project_Node_Tree_Ref; Project : out Project_Node_Id; Project_File_Name : String; Always_Errout_Finalize : Boolean; Packages_To_Check : String_List_Access := All_Packages; Store_Comments : Boolean := False); -- Parse project file and all its imported project files and create a tree. -- Return the node for the project (or Empty_Node if parsing failed). If -- Always_Errout_Finalize is True, Errout.Finalize is called in all cases, -- Otherwise, Errout.Finalize is only called if there are errors (but not -- if there are only warnings). Packages_To_Check indicates the packages -- where any unknown attribute produces an error. For other packages, an -- unknown attribute produces a warning. When Store_Comments is True, -- comments are stored in the parse tree. end Prj.Part;
-- { dg-do compile } -- { dg-options "-Wuninitialized" } pragma Warnings (Off); function Warn9 return Integer is I : Integer; begin return I; end;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ S M E M -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Einfo; use Einfo; with Errout; use Errout; with Namet; use Namet; with Sem_Aux; use Sem_Aux; with Sinfo; use Sinfo; with Snames; use Snames; package body Sem_Smem is function Contains_Access_Type (T : Entity_Id) return Boolean; -- This function determines if type T is an access type, or contains -- a component (array, record, protected type cases) that contains -- an access type (recursively defined in the appropriate manner). ---------------------- -- Check_Shared_Var -- ---------------------- procedure Check_Shared_Var (Id : Entity_Id; T : Entity_Id; N : Node_Id) is begin -- We cannot tolerate aliased variables, because they might be -- modified via an aliased pointer, and we could not detect that -- this was happening (to update the corresponding shared memory -- file), so we must disallow all use of Aliased if Aliased_Present (N) then Error_Msg_N ("aliased variables " & "not supported in Shared_Passive partitions", N); -- We can't support access types at all, since they are local -- pointers that cannot in any simple way be transmitted to other -- partitions. elsif Is_Access_Type (T) then Error_Msg_N ("access type variables " & "not supported in Shared_Passive partitions", Id); -- We cannot tolerate types that contain access types, same reasons elsif Contains_Access_Type (T) then Error_Msg_N ("types containing access components " & "not supported in Shared_Passive partitions", Id); -- Objects with default-initialized types will be rejected when -- the initialization code is generated. However we must flag tasks -- earlier on, to prevent expansion of stream attributes that is -- bound to fail. elsif Has_Task (T) then Error_Msg_N ("Shared_Passive partitions cannot contain tasks", Id); -- Currently we do not support unconstrained record types, since we -- use 'Write to write out values. This could probably be special -- cased and handled in the future if necessary. elsif Is_Record_Type (T) and then not Is_Constrained (T) and then (Nkind (N) /= N_Object_Declaration or else No (Expression (N))) then Error_Msg_N ("unconstrained variant records " & "not supported in Shared_Passive partitions", Id); end if; end Check_Shared_Var; -------------------------- -- Contains_Access_Type -- -------------------------- function Contains_Access_Type (T : Entity_Id) return Boolean is C : Entity_Id; begin if Is_Access_Type (T) then return True; elsif Is_Array_Type (T) then return Contains_Access_Type (Component_Type (T)); elsif Is_Record_Type (T) then if Has_Discriminants (T) then -- Check for access discriminants. C := First_Discriminant (T); while Present (C) loop if Is_Access_Type (Etype (C)) then return True; else Next_Discriminant (C); end if; end loop; end if; C := First_Component (T); while Present (C) loop -- For components, ignore internal components other than _Parent if Comes_From_Source (T) and then (Chars (C) = Name_uParent or else not Is_Internal_Name (Chars (C))) and then Contains_Access_Type (Etype (C)) then return True; else Next_Component (C); end if; end loop; return False; elsif Is_Protected_Type (T) then return Contains_Access_Type (Corresponding_Record_Type (T)); else return False; end if; end Contains_Access_Type; end Sem_Smem;
-- { dg-do run } with Init1; use Init1; with Text_IO; use Text_IO; with Dump; procedure Q1 is A1 : R1 := My_R1; B1 : R1 := My_R1; A2 : R2 := My_R2; B2 : R2 := My_R2; begin Put ("A1 :"); Dump (A1'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A1 : 78 56 34 12.*\n" } Put ("B1 :"); Dump (B1'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "B1 : 78 56 34 12.*\n" } Put ("A2 :"); Dump (A2'Address, R2'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A2 : 12 34 56 78.*\n" } Put ("B2 :"); Dump (B2'Address, R2'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "B2 : 12 34 56 78.*\n" } if A1.I /= B1.I then raise Program_Error; end if; if A1.I /= 16#12345678# then raise Program_Error; end if; if A2.I /= B2.I then raise Program_Error; end if; if A2.I /= 16#12345678# then raise Program_Error; end if; end;
-- General Profiler -- Author: Emanuel Regnath (emanuel.regnath@tum.de) -- -- Description: measures execution time between 'start' and 'stop'. -- Stores maximum execution time. -- -- Usage: enter loop, call 'start', execute code, call 'stop'. -- call 'get_Max' outside of loop to retrieve longest execution time. -- ToDo: Add middle stops with Ada.Real_Time; use Ada.Real_Time; package Profiler with SPARK_Mode is type Profile_Tag is tagged private; CFG_PROFILER_PROFILING : constant Boolean := True; CFG_PROFILER_LOGGING : constant Boolean := True; procedure enableProfiling; procedure disableProfiling; procedure init(Self : in out Profile_Tag; name : String); procedure reset(Self : in out Profile_Tag); procedure start(Self : in out Profile_Tag); procedure stop(Self : in out Profile_Tag); procedure log(Self : in Profile_Tag); function get_Name(Self : in Profile_Tag) return String; function get_Start(Self : in Profile_Tag) return Time; function get_Stop(Self : in Profile_Tag) return Time; -- elapsed time before stop or last measurement time after stop function get_Elapsed(Self : in Profile_Tag) return Time_Span; function get_Max(Self : in Profile_Tag) return Time_Span; private subtype Name_Length_Type is Integer range 0 .. 30; subtype Name_Type is String(1 .. 30); type Profile_Tag is tagged record name : Name_Type := (others => ' '); name_length : Name_Length_Type := 0; max_duration : Time_Span := Milliseconds( 0 ); start_Time : Time := Time_First; stop_Time : Time := Time_First; end record; type State_Type is record isEnabled : Boolean := False; end record; G_state : State_Type; procedure Read_From_Memory(Self : in out Profile_Tag); procedure Write_To_Memory(Self : in out Profile_Tag); end Profiler;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with xcb.xcb_timecoord_t; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_timecoord_iterator_t is -- Item -- type Item is record data : access xcb.xcb_timecoord_t.Item; the_rem : aliased Interfaces.C.int; index : aliased Interfaces.C.int; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_timecoord_iterator_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_timecoord_iterator_t.Item, Element_Array => xcb.xcb_timecoord_iterator_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_timecoord_iterator_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_timecoord_iterator_t.Pointer, Element_Array => xcb.xcb_timecoord_iterator_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_timecoord_iterator_t;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . D I R E C T O R Y _ O P E R A T I O N S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1998-2001 Ada Core Technologies, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ with Ada.Characters.Handling; with Ada.Strings.Fixed; with Ada.Strings.Maps; with Unchecked_Deallocation; with Unchecked_Conversion; with System; use System; with GNAT.OS_Lib; package body GNAT.Directory_Operations is use Ada; type Dir_Type_Value is new System.Address; -- This is the low-level address directory structure as returned by the C -- opendir routine. procedure Free is new Unchecked_Deallocation (Dir_Type_Value, Dir_Type); --------------- -- Base_Name -- --------------- function Base_Name (Path : Path_Name; Suffix : String := "") return String is function Get_File_Names_Case_Sensitive return Integer; pragma Import (C, Get_File_Names_Case_Sensitive, "__gnat_get_file_names_case_sensitive"); Case_Sensitive_File_Name : constant Boolean := Get_File_Names_Case_Sensitive = 1; function Basename (Path : Path_Name; Suffix : String := "") return String; -- This function does the job. The only difference between Basename -- and Base_Name (the parent function) is that the former is case -- sensitive, while the latter is not. Path and Suffix are adjusted -- appropriately before calling Basename under platforms where the -- file system is not case sensitive. -------------- -- Basename -- -------------- function Basename (Path : Path_Name; Suffix : String := "") return String is Cut_Start : Natural := Strings.Fixed.Index (Path, Dir_Seps, Going => Strings.Backward); Cut_End : Natural; begin -- Cut_Start point to the first basename character if Cut_Start = 0 then Cut_Start := Path'First; else Cut_Start := Cut_Start + 1; end if; -- Cut_End point to the last basename character. Cut_End := Path'Last; -- If basename ends with Suffix, adjust Cut_End. if Suffix /= "" and then Path (Path'Last - Suffix'Length + 1 .. Cut_End) = Suffix then Cut_End := Path'Last - Suffix'Length; end if; Check_For_Standard_Dirs : declare Offset : constant Integer := Path'First - Base_Name.Path'First; BN : constant String := Base_Name.Path (Cut_Start - Offset .. Cut_End - Offset); -- Here we use Base_Name.Path to keep the original casing begin if BN = "." or else BN = ".." then return ""; elsif BN'Length > 2 and then Characters.Handling.Is_Letter (BN (BN'First)) and then BN (BN'First + 1) = ':' then -- We have a DOS drive letter prefix, remove it return BN (BN'First + 2 .. BN'Last); else return BN; end if; end Check_For_Standard_Dirs; end Basename; -- Start processing for Base_Name begin if Case_Sensitive_File_Name then return Basename (Path, Suffix); else return Basename (Characters.Handling.To_Lower (Path), Characters.Handling.To_Lower (Suffix)); end if; end Base_Name; ---------------- -- Change_Dir -- ---------------- procedure Change_Dir (Dir_Name : Dir_Name_Str) is C_Dir_Name : String := Dir_Name & ASCII.NUL; function chdir (Dir_Name : String) return Integer; pragma Import (C, chdir, "chdir"); begin if chdir (C_Dir_Name) /= 0 then raise Directory_Error; end if; end Change_Dir; ----------- -- Close -- ----------- procedure Close (Dir : in out Dir_Type) is function closedir (Directory : System.Address) return Integer; pragma Import (C, closedir, "closedir"); Discard : Integer; begin if not Is_Open (Dir) then raise Directory_Error; end if; Discard := closedir (System.Address (Dir.all)); Free (Dir); end Close; -------------- -- Dir_Name -- -------------- function Dir_Name (Path : Path_Name) return Dir_Name_Str is Last_DS : constant Natural := Strings.Fixed.Index (Path, Dir_Seps, Going => Strings.Backward); begin if Last_DS = 0 then -- There is no directory separator, returns current working directory return "." & Dir_Separator; else return Path (Path'First .. Last_DS); end if; end Dir_Name; ----------------- -- Expand_Path -- ----------------- function Expand_Path (Path : Path_Name) return String is Result : OS_Lib.String_Access := new String (1 .. 200); Result_Last : Natural := 0; procedure Append (C : Character); procedure Append (S : String); -- Append to Result procedure Double_Result_Size; -- Reallocate Result, doubling its size procedure Read (K : in out Positive); -- Update Result while reading current Path starting at position K. If -- a variable is found, call Var below. procedure Var (K : in out Positive); -- Translate variable name starting at position K with the associated -- environment value. ------------ -- Append -- ------------ procedure Append (C : Character) is begin if Result_Last = Result'Last then Double_Result_Size; end if; Result_Last := Result_Last + 1; Result (Result_Last) := C; end Append; procedure Append (S : String) is begin while Result_Last + S'Length - 1 > Result'Last loop Double_Result_Size; end loop; Result (Result_Last + 1 .. Result_Last + S'Length) := S; Result_Last := Result_Last + S'Length; end Append; ------------------------ -- Double_Result_Size -- ------------------------ procedure Double_Result_Size is New_Result : constant OS_Lib.String_Access := new String (1 .. 2 * Result'Last); begin New_Result (1 .. Result_Last) := Result (1 .. Result_Last); OS_Lib.Free (Result); Result := New_Result; end Double_Result_Size; ---------- -- Read -- ---------- procedure Read (K : in out Positive) is begin For_All_Characters : loop if Path (K) = '$' then -- Could be a variable if K < Path'Last then if Path (K + 1) = '$' then -- Not a variable after all, this is a double $, just -- insert one in the result string. Append ('$'); K := K + 1; else -- Let's parse the variable K := K + 1; Var (K); end if; else -- We have an ending $ sign Append ('$'); end if; else -- This is a standard character, just add it to the result Append (Path (K)); end if; -- Skip to next character K := K + 1; exit For_All_Characters when K > Path'Last; end loop For_All_Characters; end Read; --------- -- Var -- --------- procedure Var (K : in out Positive) is E : Positive; begin if Path (K) = '{' then -- Look for closing } (curly bracket). E := K; loop E := E + 1; exit when Path (E) = '}' or else E = Path'Last; end loop; if Path (E) = '}' then -- OK found, translate with environment value declare Env : OS_Lib.String_Access := OS_Lib.Getenv (Path (K + 1 .. E - 1)); begin Append (Env.all); OS_Lib.Free (Env); end; else -- No closing curly bracket, not a variable after all or a -- syntax error, ignore it, insert string as-is. Append ('$'); Append (Path (K .. E)); end if; else -- The variable name is everything from current position to first -- non letter/digit character. E := K; -- Check that first chartacter is a letter if Characters.Handling.Is_Letter (Path (E)) then E := E + 1; Var_Name : loop exit Var_Name when E > Path'Last; if Characters.Handling.Is_Letter (Path (E)) or else Characters.Handling.Is_Digit (Path (E)) then E := E + 1; else exit Var_Name; end if; end loop Var_Name; E := E - 1; declare Env : OS_Lib.String_Access := OS_Lib.Getenv (Path (K .. E)); begin Append (Env.all); OS_Lib.Free (Env); end; else -- This is not a variable after all Append ('$'); Append (Path (E)); end if; end if; K := E; end Var; -- Start of processing for Expand_Path begin declare K : Positive := Path'First; begin Read (K); declare Returned_Value : constant String := Result (1 .. Result_Last); begin OS_Lib.Free (Result); return Returned_Value; end; end; end Expand_Path; -------------------- -- File_Extension -- -------------------- function File_Extension (Path : Path_Name) return String is First : Natural := Strings.Fixed.Index (Path, Dir_Seps, Going => Strings.Backward); Dot : Natural; begin if First = 0 then First := Path'First; end if; Dot := Strings.Fixed.Index (Path (First .. Path'Last), ".", Going => Strings.Backward); if Dot = 0 or else Dot = Path'Last then return ""; else return Path (Dot .. Path'Last); end if; end File_Extension; --------------- -- File_Name -- --------------- function File_Name (Path : Path_Name) return String is begin return Base_Name (Path); end File_Name; --------------------- -- Get_Current_Dir -- --------------------- Max_Path : Integer; pragma Import (C, Max_Path, "max_path_len"); function Get_Current_Dir return Dir_Name_Str is Current_Dir : String (1 .. Max_Path + 1); Last : Natural; begin Get_Current_Dir (Current_Dir, Last); return Current_Dir (1 .. Last); end Get_Current_Dir; procedure Get_Current_Dir (Dir : out Dir_Name_Str; Last : out Natural) is Path_Len : Natural := Max_Path; Buffer : String (Dir'First .. Dir'First + Max_Path + 1); procedure Local_Get_Current_Dir (Dir : System.Address; Length : System.Address); pragma Import (C, Local_Get_Current_Dir, "__gnat_get_current_dir"); begin Local_Get_Current_Dir (Buffer'Address, Path_Len'Address); if Dir'Length > Path_Len then Last := Dir'First + Path_Len - 1; else Last := Dir'Last; end if; Dir (Buffer'First .. Last) := Buffer (Buffer'First .. Last); end Get_Current_Dir; ------------- -- Is_Open -- ------------- function Is_Open (Dir : Dir_Type) return Boolean is begin return Dir /= Null_Dir and then System.Address (Dir.all) /= System.Null_Address; end Is_Open; -------------- -- Make_Dir -- -------------- procedure Make_Dir (Dir_Name : Dir_Name_Str) is C_Dir_Name : String := Dir_Name & ASCII.NUL; function mkdir (Dir_Name : String) return Integer; pragma Import (C, mkdir, "__gnat_mkdir"); begin if mkdir (C_Dir_Name) /= 0 then raise Directory_Error; end if; end Make_Dir; ------------------------ -- Normalize_Pathname -- ------------------------ function Normalize_Pathname (Path : Path_Name; Style : Path_Style := System_Default) return String is N_Path : String := Path; K : Positive := N_Path'First; Prev_Dirsep : Boolean := False; begin for J in Path'Range loop if Strings.Maps.Is_In (Path (J), Dir_Seps) then if not Prev_Dirsep then case Style is when UNIX => N_Path (K) := '/'; when DOS => N_Path (K) := '\'; when System_Default => N_Path (K) := Dir_Separator; end case; K := K + 1; end if; Prev_Dirsep := True; else N_Path (K) := Path (J); K := K + 1; Prev_Dirsep := False; end if; end loop; return N_Path (N_Path'First .. K - 1); end Normalize_Pathname; ---------- -- Open -- ---------- procedure Open (Dir : out Dir_Type; Dir_Name : Dir_Name_Str) is C_File_Name : String := Dir_Name & ASCII.NUL; function opendir (File_Name : String) return Dir_Type_Value; pragma Import (C, opendir, "opendir"); begin Dir := new Dir_Type_Value'(opendir (C_File_Name)); if not Is_Open (Dir) then Free (Dir); Dir := Null_Dir; raise Directory_Error; end if; end Open; ---------- -- Read -- ---------- procedure Read (Dir : in out Dir_Type; Str : out String; Last : out Natural) is Filename_Addr : Address; Filename_Len : Integer; Buffer : array (0 .. 1024) of Character; -- 1024 is the value of FILENAME_MAX in stdio.h function readdir_gnat (Directory : System.Address; Buffer : System.Address) return System.Address; pragma Import (C, readdir_gnat, "__gnat_readdir"); function strlen (S : Address) return Integer; pragma Import (C, strlen, "strlen"); begin if not Is_Open (Dir) then raise Directory_Error; end if; Filename_Addr := readdir_gnat (System.Address (Dir.all), Buffer'Address); if Filename_Addr = System.Null_Address then Last := 0; return; end if; Filename_Len := strlen (Filename_Addr); if Str'Length > Filename_Len then Last := Str'First + Filename_Len - 1; else Last := Str'Last; end if; declare subtype Path_String is String (1 .. Filename_Len); type Path_String_Access is access Path_String; function Address_To_Access is new Unchecked_Conversion (Source => Address, Target => Path_String_Access); Path_Access : Path_String_Access := Address_To_Access (Filename_Addr); begin for J in Str'First .. Last loop Str (J) := Path_Access (J - Str'First + 1); end loop; end; end Read; ------------------------- -- Read_Is_Thread_Sage -- ------------------------- function Read_Is_Thread_Safe return Boolean is function readdir_is_thread_safe return Integer; pragma Import (C, readdir_is_thread_safe, "__gnat_readdir_is_thread_safe"); begin return (readdir_is_thread_safe /= 0); end Read_Is_Thread_Safe; ---------------- -- Remove_Dir -- ---------------- procedure Remove_Dir (Dir_Name : Dir_Name_Str) is C_Dir_Name : String := Dir_Name & ASCII.NUL; procedure rmdir (Dir_Name : String); pragma Import (C, rmdir, "rmdir"); begin rmdir (C_Dir_Name); end Remove_Dir; end GNAT.Directory_Operations;
with Limited_With4; package Limited_With4_Pkg is P1 : Limited_With4.Ptr1 := Limited_With4.Proc1'Access; P2 : Limited_With4.Ptr2 := Limited_With4.Proc2'Access; type Rec12 is record I : Integer; R : Limited_With4.Rec1; end record; type Rec22 is record I : Integer; R : Limited_With4.Rec2; end record; end Limited_With4_Pkg;
with openGL.Geometry, openGL.Texture; package openGL.Model.hexagon_Column.lit_textured_faceted -- -- Models a lit, colored and textured column with 6 faceted shaft sides. -- is type Item is new Model.hexagon_Column.Item with private; type View is access all Item'Class; --------- --- Faces -- type hex_Face is record Texture : asset_Name := openGL.null_Asset; -- The texture to be applied to the face. end record; type shaft_Face is record Texture : asset_Name := null_Asset; -- The texture to be applied to the shaft. end record; --------- --- Forge -- function new_hexagon_Column (Radius : in Real; Height : in Real; Upper, Lower : in hex_Face; Shaft : in shaft_Face) return View; -------------- --- Attributes -- overriding function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class; Fonts : in Font.font_id_Map_of_font) return Geometry.views; private type Item is new Model.hexagon_Column.item with record upper_Face, lower_Face : hex_Face; Shaft : shaft_Face; end record; end openGL.Model.hexagon_Column.lit_textured_faceted;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.Objects; package body AMF.Objects is ------------ -- Equals -- ------------ function Equals (Object : League.Holders.Holder; Other : League.Holders.Holder) return Boolean is begin raise Program_Error; return False; end Equals; --------- -- Get -- --------- function Get (Object : League.Holders.Holder; Property : not null AMF.CMOF.Properties.CMOF_Property_Access) return League.Holders.Holder is begin return AMF.Internals.Objects.Registry.Element (League.Holders.Get_Tag (Object)).Get (Object, Property); end Get; ------------ -- Is_Set -- ------------ function Is_Set (Object : League.Holders.Holder; Property : not null AMF.CMOF.Properties.CMOF_Property_Access) return Boolean is begin raise Program_Error; return False; end Is_Set; --------- -- Set -- --------- procedure Set (Object : in out League.Holders.Holder; Property : not null AMF.CMOF.Properties.CMOF_Property_Access; Value : League.Holders.Holder) is begin AMF.Internals.Objects.Registry.Element (League.Holders.Get_Tag (Object)).Set (Object, Property, Value); end Set; ----------- -- Unset -- ----------- procedure Unset (Object : in out League.Holders.Holder; Property : not null AMF.CMOF.Properties.CMOF_Property_Access) is begin raise Program_Error; end Unset; end AMF.Objects;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_render_reference_glyph_set_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; gsid : aliased xcb.xcb_render_glyphset_t; existing : aliased xcb.xcb_render_glyphset_t; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_render_reference_glyph_set_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_reference_glyph_set_request_t.Item, Element_Array => xcb.xcb_render_reference_glyph_set_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_render_reference_glyph_set_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_reference_glyph_set_request_t.Pointer, Element_Array => xcb.xcb_render_reference_glyph_set_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_render_reference_glyph_set_request_t;
M:Lab31_Servo_GabeMaayan 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$XBR0_Init$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$PCA_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$PCA_ISR$0$0({2}DF,SV:S),Z,0,0,1,9,0 F:G$Calibrate_Servo$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$Steering_Servo$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:LLab31_Servo_GabeMaayan.getchar$c$1$10({1}SC:U),R,0,0,[] S:LLab31_Servo_GabeMaayan.getchar_nw$c$1$12({1}SC:U),R,0,0,[] S:G$PW_CENTER$0$0({2}SI:U),E,0,0 S:G$PW_RIGHT$0$0({2}SI:U),E,0,0 S:G$PW_LEFT$0$0({2}SI:U),E,0,0 S:G$SERVO_PW$0$0({2}SI:U),E,0,0 S:G$PCA_start$0$0({2}SI:U),E,0,0 S:G$input$0$0({1}SC:U),E,0,0 S:LLab31_Servo_GabeMaayan.aligned_alloc$size$1$39({2}SI:U),E,0,0 S:LLab31_Servo_GabeMaayan.aligned_alloc$alignment$1$39({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$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$atof$0$0({2}DF,SF:S),C,0,0 S:G$atoi$0$0({2}DF,SI:S),C,0,0 S:G$atol$0$0({2}DF,SL:S),C,0,0 S:G$_uitoa$0$0({2}DF,SV:S),C,0,0 S:G$_itoa$0$0({2}DF,SV:S),C,0,0 S:G$_ultoa$0$0({2}DF,SV:S),C,0,0 S:G$_ltoa$0$0({2}DF,SV:S),C,0,0 S:G$rand$0$0({2}DF,SI:S),C,0,0 S:G$srand$0$0({2}DF,SV:S),C,0,0 S:G$calloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$malloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$realloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$aligned_alloc$0$0({2}DF,DG,SV:S),C,0,0 S:G$free$0$0({2}DF,SV:S),C,0,0 S:G$abs$0$0({2}DF,SI:S),C,0,0 S:G$labs$0$0({2}DF,SL:S),C,0,0 S:G$mblen$0$0({2}DF,SI:S),C,0,0 S:G$mbtowc$0$0({2}DF,SI:S),C,0,0 S:G$wctomb$0$0({2}DF,SI:S),C,0,0 S:G$main$0$0({2}DF,SV:S),C,0,0 S:FLab31_Servo_GabeMaayan$__str_0$0$0({39}DA39d,SC:S),D,0,0 S:FLab31_Servo_GabeMaayan$__str_1$0$0({97}DA97d,SC:S),D,0,0 S:FLab31_Servo_GabeMaayan$__str_2$0$0({15}DA15d,SC:S),D,0,0 S:FLab31_Servo_GabeMaayan$__str_3$0$0({79}DA79d,SC:S),D,0,0 S:FLab31_Servo_GabeMaayan$__str_4$0$0({49}DA49d,SC:S),D,0,0 S:FLab31_Servo_GabeMaayan$__str_5$0$0({80}DA80d,SC:S),D,0,0
private with openGL.Geometry.colored; package openGL.Model.line.colored -- -- Models a colored line. -- is type Item is new Model.line.item with private; type View is access all Item'Class; --------- --- Forge -- function new_line_Model (Color : in openGL.Color; End_1, End_2 : in Vector_3 := Origin_3D) return View; -------------- --- Attributes -- overriding function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class; Fonts : in Font.font_id_Map_of_font) return Geometry.views; subtype end_Id is Index_t range 1 .. 2; procedure Site_is (Self : in out Item; Now : in Vector_3; for_End : in end_Id); function Site (Self : in Item; for_End : in end_Id) return Vector_3; private type Item is new Model.line.item with record Color : openGL.Color; Vertices : Geometry.colored.Vertex_array (end_Id); Geometry : access Geometry.colored.item'Class; end record; end openGL.Model.line.colored;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>call_Loop_LB2D_buf_p_1</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;PackedStencil&amp;lt;int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>slice_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buffer_0_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[0].value.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>50</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name></name> <fileName></fileName> <fileDirectory></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>51</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>10</id> <name>row</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>row</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>53</item> <item>54</item> <item>55</item> <item>56</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>tmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>57</item> <item>59</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name>row_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName>row</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>60</item> <item>62</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>63</item> <item>64</item> <item>65</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>79</item> <item>80</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>81</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>21</id> <name>col</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</item> <item>70</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>22</id> <name>tmp_7</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>71</item> <item>73</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>col_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName>col</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>74</item> <item>75</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>76</item> <item>77</item> <item>78</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>26</id> <name>col_cast</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>89</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_value_V_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>91</item> <item>92</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>31</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>93</item> <item>94</item> <item>95</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>33</id> <name>buffer_0_value_V_ad_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>96</item> <item>97</item> <item>98</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>34</id> <name>p_Val2_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>99</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name>p_Result_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>206</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>101</item> <item>102</item> <item>103</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>207</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>207</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>105</item> <item>106</item> <item>107</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>37</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>39</id> <name>buffer_0_value_V_ad</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>82</item> <item>84</item> <item>85</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>40</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>86</item> <item>87</item> <item>221</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>45</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>66</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>47</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>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>6</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_28"> <Value> <Obj> <type>2</type> <id>49</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_29"> <Value> <Obj> <type>2</type> <id>52</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_30"> <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>11</bitwidth> </Value> <const_type>0</const_type> <content>1078</content> </item> <item class_id_reference="16" object_id="_31"> <Value> <Obj> <type>2</type> <id>61</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_32"> <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>11</bitwidth> </Value> <const_type>0</const_type> <content>1918</content> </item> <item class_id_reference="16" object_id="_33"> <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>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_34"> <Obj> <type>3</type> <id>9</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>7</item> <item>8</item> </node_objs> </item> <item class_id_reference="18" object_id="_35"> <Obj> <type>3</type> <id>15</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>10</item> <item>11</item> <item>13</item> <item>14</item> </node_objs> </item> <item class_id_reference="18" object_id="_36"> <Obj> <type>3</type> <id>20</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>18</item> <item>19</item> </node_objs> </item> <item class_id_reference="18" object_id="_37"> <Obj> <type>3</type> <id>25</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>21</item> <item>22</item> <item>23</item> <item>24</item> </node_objs> </item> <item class_id_reference="18" object_id="_38"> <Obj> <type>3</type> <id>32</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>26</item> <item>30</item> <item>31</item> </node_objs> </item> <item class_id_reference="18" object_id="_39"> <Obj> <type>3</type> <id>38</id> <name>.preheader57</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_40"> <Obj> <type>3</type> <id>43</id> <name>._crit_edge</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_41"> <Obj> <type>3</type> <id>46</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>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_42"> <Obj> <type>3</type> <id>48</id> <name>.preheader.exitStub</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>47</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>60</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_43"> <id>50</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>51</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>53</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>54</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>55</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>56</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>57</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>59</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>60</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>62</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>63</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>64</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>65</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>66</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>67</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>68</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>69</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>70</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>71</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>74</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>75</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>76</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>77</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>78</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>79</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>80</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>81</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>82</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>84</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>85</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>86</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>87</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>88</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>89</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>92</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>93</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>94</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>95</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>96</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>97</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>98</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>99</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>102</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>103</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>106</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>107</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>108</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>210</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>211</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>212</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>213</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>214</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>215</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>216</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>217</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>218</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>219</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>220</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>221</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>40</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_103"> <mId>1</mId> <mTag>call_Loop_LB2D_buf_p.1</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2071917</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_104"> <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>9</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="_105"> <mId>3</mId> <mTag>LB2D_buf</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1078</mMinTripCount> <mMaxTripCount>1078</mMaxTripCount> <mMinLatency>2071916</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_106"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>15</item> <item>20</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_107"> <mId>5</mId> <mTag>LB2D_buf.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>25</item> <item>32</item> <item>38</item> <item>43</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>1918</mMinTripCount> <mMaxTripCount>1918</mMaxTripCount> <mMinLatency>1919</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_108"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>46</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_109"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>48</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_110"> <states class_id="25" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_111"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_112"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_113"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_114"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_115"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_118"> <id>2</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_119"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_124"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_125"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_126"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_127"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_129"> <id>3</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_130"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_131"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_133"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_134"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_135"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_136"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>34</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_138"> <id>4</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_139"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_140"> <id>34</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_141"> <id>5</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_142"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_143"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_144"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_145"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_146"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_147"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_148"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_149"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_150"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_151"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_152"> <id>6</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_153"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_154"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_155"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>31</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="_156"> <inState>2</inState> <outState>3</outState> <condition> <id>33</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>11</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_157"> <inState>6</inState> <outState>2</outState> <condition> <id>44</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_158"> <inState>4</inState> <outState>5</outState> <condition> <id>46</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_159"> <inState>5</inState> <outState>3</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_160"> <inState>3</inState> <outState>6</outState> <condition> <id>45</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>22</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_161"> <inState>3</inState> <outState>4</outState> <condition> <id>48</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>22</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>7</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</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>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>24</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>30</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>31</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>1</second> </second> </item> <item> <first>35</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>9</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>43</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>48</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_162"> <region_name>LB2D_buf.1</region_name> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>25</item> <item>32</item> <item>38</item> <item>43</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>77</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>83</first> <second> <count>3</count> <item_version>0</item_version> <item>34</item> <item>34</item> <item>40</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>126</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>150</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>155</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>buffer_0_value_V_ad_1_gep_fu_77</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>buffer_0_value_V_ad_gep_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>buffer_0_value_V_alloca_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>col_1_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>col_cast_fu_150</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>col_phi_fu_113</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Result_s_fu_155</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>row_1_fu_126</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>row_phi_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>tmp_7_fu_138</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_s_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_37_write_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_value_V_3_read_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first class_id="52" tracking_level="0" version="0"> <first>buffer_0_value_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>34</item> </second> </item> <item> <first> <first>buffer_0_value_V</first> <second>1</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>11</count> <item_version>0</item_version> <item> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>109</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>175</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>179</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>184</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>11</count> <item_version>0</item_version> <item> <first>buffer_0_value_V_ad_1_reg_189</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>col_1_reg_179</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>col_cast_reg_184</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>col_reg_109</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Val2_s_reg_200</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>row_1_reg_166</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>row_reg_98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>tmp_7_reg_175</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_reg_162</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_s_reg_171</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_value_V_3_reg_194</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>109</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>col_reg_109</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>row_reg_98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="53" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </second> </item> <item> <first>slice_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="55" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>1</count> <item_version>0</item_version> <item> <first>7</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
generic type Real is digits <>; with function Sqrt(X: Real) return Real; with function "**"(X: Real; Y: Real) return Real; package Approximation is type Number is private; -- create an approximation function Approx(Value: Real; Sigma: Real) return Number; -- unary operations and conversion Real to Number function "+"(X: Real) return Number; function "-"(X: Real) return Number; function "+"(X: Number) return Number; function "-"(X: Number) return Number; -- addition / subtraction function "+"(X: Number; Y: Number) return Number; function "-"(X: Number; Y: Number) return Number; -- multiplication / division function "*"(X: Number; Y: Number) return Number; function "/"(X: Number; Y: Number) return Number; -- exponentiation function "**"(X: Number; Y: Positive) return Number; function "**"(X: Number; Y: Real) return Number; -- Output to Standard IO (wrapper for Ada.Text_IO and Ada.Text_IO.Float_IO) procedure Put_Line(Message: String; Item: Number; Value_Fore: Natural := 7; Sigma_Fore: Natural := 4; Aft: Natural := 2; Exp: Natural := 0); procedure Put(Item: Number; Value_Fore: Natural := 7; Sigma_Fore: Natural := 3; Aft: Natural := 2; Exp: Natural := 0); private type Number is record Value: Real; Sigma: Real; end record; end Approximation;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . T A S K _ I N F O -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- This package body contains the routines associated with the implementation -- of the Task_Info pragma. -- This is the Solaris (native) version of this module package body System.Task_Info is ----------------------------- -- Bound_Thread_Attributes -- ----------------------------- function Bound_Thread_Attributes return Thread_Attributes is begin return (False, True); end Bound_Thread_Attributes; function Bound_Thread_Attributes (CPU : CPU_Number) return Thread_Attributes is begin return (True, True, CPU); end Bound_Thread_Attributes; --------------------------------- -- New_Bound_Thread_Attributes -- --------------------------------- function New_Bound_Thread_Attributes return Task_Info_Type is begin return new Thread_Attributes'(False, True); end New_Bound_Thread_Attributes; function New_Bound_Thread_Attributes (CPU : CPU_Number) return Task_Info_Type is begin return new Thread_Attributes'(True, True, CPU); end New_Bound_Thread_Attributes; ----------------------------------- -- New_Unbound_Thread_Attributes -- ----------------------------------- function New_Unbound_Thread_Attributes return Task_Info_Type is begin return new Thread_Attributes'(False, False); end New_Unbound_Thread_Attributes; ------------------------------- -- Unbound_Thread_Attributes -- ------------------------------- function Unbound_Thread_Attributes return Thread_Attributes is begin return (False, False); end Unbound_Thread_Attributes; end System.Task_Info;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A profile application is used to show which profiles have been applied to -- a package. ------------------------------------------------------------------------------ with AMF.UML.Directed_Relationships; limited with AMF.UML.Packages; limited with AMF.UML.Profiles; package AMF.UML.Profile_Applications is pragma Preelaborate; type UML_Profile_Application is limited interface and AMF.UML.Directed_Relationships.UML_Directed_Relationship; type UML_Profile_Application_Access is access all UML_Profile_Application'Class; for UML_Profile_Application_Access'Storage_Size use 0; not overriding function Get_Applied_Profile (Self : not null access constant UML_Profile_Application) return AMF.UML.Profiles.UML_Profile_Access is abstract; -- Getter of ProfileApplication::appliedProfile. -- -- References the Profiles that are applied to a Package through this -- ProfileApplication. not overriding procedure Set_Applied_Profile (Self : not null access UML_Profile_Application; To : AMF.UML.Profiles.UML_Profile_Access) is abstract; -- Setter of ProfileApplication::appliedProfile. -- -- References the Profiles that are applied to a Package through this -- ProfileApplication. not overriding function Get_Applying_Package (Self : not null access constant UML_Profile_Application) return AMF.UML.Packages.UML_Package_Access is abstract; -- Getter of ProfileApplication::applyingPackage. -- -- The package that owns the profile application. not overriding procedure Set_Applying_Package (Self : not null access UML_Profile_Application; To : AMF.UML.Packages.UML_Package_Access) is abstract; -- Setter of ProfileApplication::applyingPackage. -- -- The package that owns the profile application. not overriding function Get_Is_Strict (Self : not null access constant UML_Profile_Application) return Boolean is abstract; -- Getter of ProfileApplication::isStrict. -- -- Specifies that the Profile filtering rules for the metaclasses of the -- referenced metamodel shall be strictly applied. not overriding procedure Set_Is_Strict (Self : not null access UML_Profile_Application; To : Boolean) is abstract; -- Setter of ProfileApplication::isStrict. -- -- Specifies that the Profile filtering rules for the metaclasses of the -- referenced metamodel shall be strictly applied. end AMF.UML.Profile_Applications;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_list_extensions_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_list_extensions_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_list_extensions_request_t.Item, Element_Array => xcb.xcb_list_extensions_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_list_extensions_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_list_extensions_request_t.Pointer, Element_Array => xcb.xcb_list_extensions_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_list_extensions_request_t;