CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T V S N -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2003 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package spec holds version information for GNAT, GNATBIND and -- GNATMAKE. It is updated whenever the release number is changed. package Gnatvsn is Gnat_Version_String : constant String := "3.2.3 20030422 (release)"; -- Version output when GNAT (compiler), or its related tools, including -- GNATBIND, GNATCHOP, GNATFIND, GNATLINK, GNATMAKE, GNATXREF, are run -- (with appropriate verbose option switch set). -- -- WARNING: some gnatmail scripts (at least make-bin and corcs) rely on -- the format of this string. Any change must be coordinated with -- a gnatmail maintainer. Ver_Len_Max : constant := 32; -- Longest possible length for Gnat_Version_String in this or any -- other version of GNAT. This is used by the binder to establish -- space to store any possible version string value for checks. This -- value should never be decreased in the future, but it would be -- OK to increase it if absolutely necessary. Library_Version : constant String := "GNAT Lib v3.15a"; -- Library version. This value must be updated whenever any change to the -- compiler affects the library formats in such a way as to obsolete -- previously compiled library modules. -- -- Note: Makefile.in relies on the precise format of the library version -- string in order to correctly construct the soname value. end Gnatvsn;
------------------------------------------------------------------------------ -- -- -- 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_rng.h -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief Header file of RNG HAL module. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides the API for the random number generator on the STM32F4 -- (ARM Cortex M4F) microcontrollers from ST Microelectronics. -- -- Random numbers are acquired by responding to interrupts from the on-board -- generator. package STM32.RNG.Interrupts is procedure Initialize (This : in out RNG_Generator) with Post => Interrupt_Enabled (This); -- Must be called once, prior to any call to get a random number via -- interrupts. Both necessary and sufficient. -- Enables the clock as well. function Random (This : RNG_Generator) return UInt32; -- Uses the interrupt interface to get the next available number. -- NB: call Initialize_RNG before any calls to this function. end STM32.RNG.Interrupts;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . P E R I P H E R A L S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2005 The European Space Agency -- -- Copyright (C) 2003-2013, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ with System.Machine_Code; with System.BB.Parameters; use System.BB.Parameters; package body System.BB.Board_Support is use CPU_Primitives, Interrupts, Machine_Code; Sys_Tick_Vector : constant Vector_Id := 14; Interrupt_Request_Vector : constant Vector_Id := 15; First_IRQ : constant Interrupt_ID := 2; -- WWDG_Interrupt Alarm_Time : Timer_Interval; pragma Volatile (Alarm_Time); pragma Export (C, Alarm_Time, "__gnat_alarm_time"); --------------------------- -- System control and ID -- --------------------------- ICSR : Word with Volatile, Address => 16#E000_ED04#; -- Interrupt Control State ICSR_Pend_ST_Set : constant := 2**26; -- Set pending Sys_Tick (RW) ICSR_Pend_ST_Clr : constant := 2**25; -- Clear pending Sys_Tick (W) ----------------------- -- Sys_Tick Handling -- ----------------------- -- We use the Sys_Tick timer as a periodic timer with 1 kHz rate. This -- is a trade-off between accurate delays, limited overhead and maximum -- time that interrupts may be disabled. Tick_Period : constant Timer_Interval := Clock_Frequency / 1000; type Sys_Tick_Registers is record SYST_CSR : Word; SYST_RVR : Word; SYST_CVR : Word; SYST_CALIB : Word; end record; CSR_Count_Flag : constant := 2**16; CSR_Clk_Source : constant := 2**2; CSR_Tick_Int : constant := 2**1; CSR_Enable : constant := 2**0; RVR_Last : constant := 2**24 - 1; pragma Assert (Tick_Period <= RVR_Last + 1); SYST : Sys_Tick_Registers with Volatile, Address => 16#E000_E010#; Next_Tick_Time : Timer_Interval with Volatile; -- Time when systick will expire. This gives the high digits of the time ---------------------------------------------- -- New Vectored Interrupt Controller (NVIC) -- ---------------------------------------------- NVIC_Base : constant Address := 16#E000_E000#; NVIC_ISER0 : constant Address := NVIC_Base + 16#100#; -- Writing a bit mask to this register enables the corresponding interrupts type PRI is mod 2**8; -- Type for ARMv7-M interrupt priorities. Note that 0 is the highest -- priority, which is reserved for the kernel and has no corresponding -- Interrupt_Priority value, and 255 is the lowest. We assume the PRIGROUP -- setting is such that the 4 most significant bits determine the priority -- group used for preemption. However, if less bits are implemented, this -- should still work. function To_PRI (P : Any_Priority) return PRI is (if P not in Interrupt_Priority then 0 else PRI (Interrupt_Priority'Last - P + 1) * 16); -- Return the BASEPRI mask for the given Ada priority. Note that the zero -- value here means no mask, so no interrupts are masked. function To_Priority (P : PRI) return Interrupt_Priority is (if P = 0 then Interrupt_Priority'Last else (Interrupt_Priority'Last - Any_Priority'Base (P / 16) + 1)); -- Given an ARM interrupt priority (PRI value), determine the Ada priority -- While the value 0 is reserved for the kernel and has no Ada priority -- that represents it, Interrupt_Priority'Last is closest. IP : array (Interrupt_ID) of PRI with Volatile, Address => 16#E000_E400#; -- Local utility functions procedure Enable_Interrupt_Request (Interrupt : Interrupt_ID; Prio : Interrupt_Priority); -- Enable interrupt requests for the given interrupt ---------------------- -- Initialize_Board -- ---------------------- procedure Initialize_Board is begin -- Mask interrupts Disable_Interrupts; -- Because we operate the SysTick clock as a periodic timer, and 24 bits -- at 168 MHz is sufficient for that, use the unscaled system clock. -- To initialize the Sys_Tick timer, first disable the clock, then -- program it and finally enable it. This way an accidentally -- misconfigured timer will not cause pending interrupt while -- reprogramming. SYST.SYST_CSR := CSR_Clk_Source; -- disable clock SYST.SYST_RVR := Word (Tick_Period - 1); SYST.SYST_CVR := 0; SYST.SYST_CSR := CSR_Clk_Source or CSR_Enable; Next_Tick_Time := Tick_Period; Set_Alarm (Timer_Interval'Last); Clear_Alarm_Interrupt; Enable_Interrupts (Priority'Last); end Initialize_Board; ------------------------ -- Max_Timer_Interval -- ------------------------ function Max_Timer_Interval return Timer_Interval is (2**32 - 1); ---------------- -- Read_Clock -- ---------------- function Read_Clock return Timer_Interval is PRIMASK : Word; begin -- As several registers and variables need to be read or modified, do -- it atomically. Asm ("mrs %0, PRIMASK", Outputs => Word'Asm_Output ("=&r", PRIMASK), Volatile => True); Asm ("msr PRIMASK, %0", Inputs => Word'Asm_Input ("r", 1), Volatile => True); declare Flag : constant Boolean := (SYST.SYST_CSR and CSR_Count_Flag) /= 0; -- This flag is set when the counter has reached zero. Next_Tick_Time -- has to be incremented. This will trigger an interrupt very soon -- (or has just triggered the interrupt) so count is either zero or -- not far from Tick_Period. Count : constant Timer_Interval := Timer_Interval (SYST.SYST_CVR); Res : Timer_Interval := Next_Tick_Time; begin if Flag then -- Systick counter has just reached zero, pretend it is still zero Next_Tick_Time := Res + Tick_Period; else -- The counter is decremented, so compute the actual time Res := Res - Count; end if; -- Restore interrupt mask Asm ("msr PRIMASK, %0", Inputs => Word'Asm_Input ("r", PRIMASK), Volatile => True); return Res; end; end Read_Clock; ---------------------- -- Ticks_Per_Second -- ---------------------- function Ticks_Per_Second return Natural is (Clock_Frequency); --------------------------- -- Clear_Alarm_Interrupt -- --------------------------- procedure Clear_Alarm_Interrupt is begin ICSR := ICSR_Pend_ST_Clr; end Clear_Alarm_Interrupt; -------------------------- -- Clear_Poke_Interrupt -- -------------------------- procedure Clear_Poke_Interrupt is begin null; end Clear_Poke_Interrupt; --------------- -- Set_Alarm -- --------------- procedure Set_Alarm (Ticks : Timer_Interval) is Now : constant Timer_Interval := Read_Clock; begin -- As we will have periodic interrupts for alarms regardless, the only -- thing to do is force an interrupt if the alarm has already expired. Alarm_Time := Now + Timer_Interval'Min (Timer_Interval'Last / 2, Ticks); if Ticks = 0 then ICSR := ICSR_Pend_ST_Set; end if; end Set_Alarm; ------------------------ -- Alarm_Interrupt_ID -- ------------------------ function Alarm_Interrupt_ID return Interrupt_ID is (1); -- Return the interrupt level to use for the alarm clock handler. Note that -- we use a "fake" Interrupt_ID for the alarm interrupt, as it is handled -- specially (not through the NVIC). ----------------------- -- Poke_Interrupt_ID -- ----------------------- function Poke_Interrupt_ID return Interrupt_ID is (No_Interrupt); --------------------------- -- Get_Interrupt_Request -- --------------------------- function Get_Interrupt_Request (Vector : Vector_Id) return Interrupt_ID is Res : Word; begin if Vector = Sys_Tick_Vector then return Alarm_Interrupt_ID; end if; Asm ("mrs %0, ipsr", Word'Asm_Output ("=r", Res), Volatile => True); Res := Res and 16#FF#; return Interrupt_ID'Base (Res) - 16 + First_IRQ; end Get_Interrupt_Request; ------------------------------ -- Enable_Interrupt_Request -- ------------------------------ procedure Enable_Interrupt_Request (Interrupt : Interrupt_ID; Prio : Interrupt_Priority) is begin if Interrupt = Alarm_Interrupt_ID then -- Consistency check with Priority_Of_Interrupt pragma Assert (Prio = Interrupt_Priority'Last); Clear_Alarm_Interrupt; SYST.SYST_CSR := SYST.SYST_CSR or CSR_Tick_Int; else declare pragma Assert (Interrupt >= First_IRQ); IRQ : constant Natural := Interrupt - First_IRQ; Regofs : constant Natural := IRQ / 32; Regbit : constant Word := 2** (IRQ mod 32); NVIC_ISER : array (0 .. 15) of Word with Volatile, Address => NVIC_ISER0; -- Many NVIC registers use 16 words of 32 bits each to serve as a -- bitmap for all interrupt channels. Regofs indicates register -- offset (0 .. 15), and Regbit indicates the mask required for -- addressing the bit. begin NVIC_ISER (Regofs) := Regbit; end; end if; end Enable_Interrupt_Request; ------------------------------- -- Install_Interrupt_Handler -- ------------------------------- procedure Install_Interrupt_Handler (Handler : Address; Interrupt : Interrupts.Interrupt_ID; Prio : Interrupt_Priority) is begin if Interrupt = Alarm_Interrupt_ID then Install_Trap_Handler (Handler, Sys_Tick_Vector); else IP (Interrupt - First_IRQ) := To_PRI (Prio); Install_Trap_Handler (Handler, Interrupt_Request_Vector); end if; Enable_Interrupt_Request (Interrupt, Prio); end Install_Interrupt_Handler; --------------------------- -- Priority_Of_Interrupt -- --------------------------- function Priority_Of_Interrupt (Interrupt : Interrupt_ID) return Any_Priority is -- Interrupt 2 .. 83 correspond to IRQ0 .. IRQ81 (if Interrupt = Alarm_Interrupt_ID then Interrupt_Priority'Last else To_Priority (IP (Interrupt - First_IRQ))); ----------------------------- -- Clear_Interrupt_Request -- ----------------------------- procedure Clear_Interrupt_Request (Interrupt : Interrupts.Interrupt_ID) is null; -------------------------- -- Set_Current_Priority -- -------------------------- procedure Set_Current_Priority (Priority : Any_Priority) is begin -- Writing a 0 to BASEPRI disables interrupt masking, while values -- 15 .. 1 correspond to interrupt priorities 255 .. 241 in that order. Asm ("msr BASEPRI, %0", Inputs => PRI'Asm_Input ("r", To_PRI (Priority)), Volatile => True); end Set_Current_Priority; end System.BB.Board_Support;
-- Auto generated file. Don't edit -- Read copyright and license at the end of this file package Encodings.Maps.ISO_8859_16 is function Decode (Char : Character) return Wide_Character; pragma Inline (Decode); procedure Encode (Text : in Wide_String; Text_Last : out Natural; Result : out Raw_String; Result_Last : out Natural; Map : in Encoding := Encodings.ISO_8859_16); procedure Decode (Text : in Raw_String; Text_Last : out Natural; Result : out Wide_String; Result_Last : out Natural; Map : in Encoding := Encodings.ISO_8859_16); end Encodings.Maps.ISO_8859_16; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 0 9 -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1999 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; with Unchecked_Conversion; package body System.Pack_09 is subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_09; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; function To_Ref is new Unchecked_Conversion (System.Address, Cluster_Ref); ------------ -- Get_09 -- ------------ function Get_09 (Arr : System.Address; N : Natural) return Bits_09 is C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8)); begin case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end Get_09; ------------ -- Set_09 -- ------------ procedure Set_09 (Arr : System.Address; N : Natural; E : Bits_09) is C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8)); begin case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end Set_09; end System.Pack_09;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . I M G _ B O O L -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Boolean'Image package System.Img_Bool is pragma Pure (Img_Bool); function Image_Boolean (V : Boolean) return String; -- Computes Boolean'Image (V) and returns the result. end System.Img_Bool;
-- { dg-do run } -- { dg-options "-gnatW8" } procedure wide_test is X : constant Wide_Character := 'Я'; begin declare S3 : constant Wide_String := (''', X, '''); X3 : Wide_Character; begin X3 := Wide_Character'Wide_Value (S3); if X /= X3 then raise Program_Error; end if; end; end;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . R A N D O M _ N U M B E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2007-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. -- -- -- ------------------------------------------------------------------------------ -- Extended pseudo-random number generation -- This package provides a type representing pseudo-random number generators, -- and subprograms to extract various uniform distributions of numbers -- from them. It also provides types for representing initialization values -- and snapshots of internal generator state, which permit reproducible -- pseudo-random streams. -- The generator currently provided by this package has an extremely long -- period (at least 2**19937-1), and passes the Big Crush test suite, with the -- exception of the two linear complexity tests. Therefore, it is suitable -- for simulations, but should not be used as a cryptographic pseudo-random -- source without additional processing. -- Note: this package is in the System hierarchy so that it can be directly -- used by other predefined packages. User access to this package is via -- the package GNAT.Random_Numbers (file g-rannum.ads), which also extends -- its capabilities. The interfaces are different so as to include in -- System.Random_Numbers only the definitions necessary to implement the -- standard random-number packages Ada.Numerics.Float_Random and -- Ada.Numerics.Discrete_Random. -- Note: this package is marked SPARK_Mode Off, because functions Random work -- by side-effect to change the value of the generator, hence they should not -- be called from SPARK code. with Interfaces; private with Ada.Strings.Text_Buffers; package System.Random_Numbers with SPARK_Mode => Off is type Generator is limited private; -- Generator encodes the current state of a random number stream, it is -- provided as input to produce the next random number, and updated so -- that it is ready to produce the next one. type State is private; -- A non-limited version of a Generator's internal state function Random (Gen : Generator) return Float; function Random (Gen : Generator) return Long_Float; -- Return pseudo-random numbers uniformly distributed on [0.0 .. 1.0) function Random (Gen : Generator) return Interfaces.Unsigned_32; function Random (Gen : Generator) return Interfaces.Unsigned_64; function Random (Gen : Generator) return Interfaces.Unsigned_128; -- Return pseudo-random numbers uniformly distributed on T'First .. T'Last -- for builtin integer types. generic type Result_Subtype is (<>); Default_Min : Result_Subtype := Result_Subtype'Val (0); function Random_Discrete (Gen : Generator; Min : Result_Subtype := Default_Min; Max : Result_Subtype := Result_Subtype'Last) return Result_Subtype; -- Returns pseudo-random numbers uniformly distributed on Min .. Max generic type Result_Subtype is digits <>; function Random_Float (Gen : Generator) return Result_Subtype; -- Returns pseudo-random numbers uniformly distributed on [0 .. 1) type Initialization_Vector is array (Integer range <>) of Interfaces.Unsigned_32; -- Provides the most general initialization values for a generator (used -- in Reset). In general, there is little point in providing more than -- a certain number of values (currently 624). procedure Reset (Gen : Generator); -- Re-initialize the state of Gen from the time of day procedure Reset (Gen : Generator; Initiator : Initialization_Vector); procedure Reset (Gen : Generator; Initiator : Interfaces.Integer_32); procedure Reset (Gen : Generator; Initiator : Interfaces.Unsigned_32); procedure Reset (Gen : Generator; Initiator : Integer); -- Re-initialize Gen based on the Initiator in various ways. Identical -- values of Initiator cause identical sequences of values. procedure Reset (Gen : Generator; From_State : Generator); -- Causes the state of Gen to be identical to that of From_State; Gen -- and From_State will produce identical sequences of values subsequently. procedure Reset (Gen : Generator; From_State : State); procedure Save (Gen : Generator; To_State : out State); -- The sequence -- Save (Gen2, S); Reset (Gen1, S) -- has the same effect as Reset (Gen2, Gen1). procedure Reset (Gen : Generator; From_Image : String); function Image (Gen : Generator) return String; -- The call -- Reset (Gen2, Image (Gen1)) -- has the same effect as Reset (Gen2, Gen1); Max_Image_Width : constant := 11 * 624; -- Maximum possible length of result of Image (...) function Image (Of_State : State) return String; -- A String representation of Of_State. Identical to the result of -- Image (Gen), if Of_State has been set with Save (Gen, Of_State). function Value (Coded_State : String) return State; -- Inverse of Image on States private N : constant := 624; -- The number of 32-bit integers in the shift register M : constant := 397; -- Feedback distance from the current position subtype State_Val is Interfaces.Unsigned_32; type State is array (0 .. N - 1) of State_Val with Put_Image => Put_Image; procedure Put_Image (S : in out Ada.Strings.Text_Buffers.Root_Buffer_Type'Class; V : State); type Writable_Access (Self : access Generator) is limited null record; -- Auxiliary type to make Generator a self-referential type type Generator is limited record Writable : Writable_Access (Generator'Access); -- This self reference allows functions to modify Generator arguments S : State := (others => 0); -- The shift register, a circular buffer I : Integer := N; -- Current starting position in shift register S (N means uninitialized) -- Naming exception: I is fine to use here as it is the name used in the -- original paper describing the Mersenne Twister and in common -- descriptions of the algorithm. end record; end System.Random_Numbers;
-- CE2102P.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT USE_ERROR IS RAISED WHEN OPENING A FILE OF MODE -- OUT_FILE, WHEN OUT_FILE MODE IS NOT SUPPORTED FOR OPEN BY THE -- IMPLEMENTATION FOR SEQUENTIAL_IO. -- APPLICABILITY CRITERIA: -- THIS TEST IS ONLY APPLICABLE TO IMPLEMENTATIONS WHICH DO NOT -- SUPPORT OPEN WITH OUT_FILE MODE FOR SEQUENTIAL FILES. -- HISTORY: -- TBN 07/23/87 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; WITH SEQUENTIAL_IO; PROCEDURE CE2102P IS BEGIN TEST ("CE2102P", "CHECK THAT USE_ERROR IS RAISED WHEN MODE " & "OUT_FILE IS NOT SUPPORTED FOR THE OPERATION " & "OF OPEN FOR SEQUENTIAL FILES"); DECLARE PACKAGE SEQ IS NEW SEQUENTIAL_IO (BOOLEAN); USE SEQ; FILE1 : FILE_TYPE; INCOMPLETE : EXCEPTION; VAR1 : BOOLEAN := FALSE; BEGIN BEGIN CREATE (FILE1, OUT_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED ON CREATE FOR " & "OUT_FILE MODE"); RAISE INCOMPLETE; WHEN NAME_ERROR => NOT_APPLICABLE ("NAME_ERROR RAISED ON CREATE FOR " & "OUT_FILE MODE"); RAISE INCOMPLETE; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON CREATE"); RAISE INCOMPLETE; END; WRITE (FILE1, VAR1); CLOSE (FILE1); BEGIN OPEN (FILE1, OUT_FILE, LEGAL_FILE_NAME); NOT_APPLICABLE ("OPEN FOR OUT_FILE MODE ALLOWED"); EXCEPTION WHEN USE_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON OPEN"); END; IF IS_OPEN (FILE1) THEN BEGIN DELETE (FILE1); EXCEPTION WHEN USE_ERROR => NULL; END; END IF; EXCEPTION WHEN INCOMPLETE => NULL; END; RESULT; END CE2102P;
----------------------------------------------------------------------- -- util-listeners-lifecycles -- Listeners -- Copyright (C) 2012 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 Util.Listeners.Lifecycles is -- ------------------------------ -- Inform the the lifecycle listeners registered in `List` that the item passed in `Item` -- has been created (calls `On_Create`). -- ------------------------------ procedure Notify_Create (List : in Util.Listeners.List; Item : in Element_Type) is procedure On_Create (Subscriber : in Util.Listeners.Listener_Access); procedure On_Create (Subscriber : in Util.Listeners.Listener_Access) is begin if Subscriber.all in Listener'Class then Listener'Class (Subscriber.all).On_Create (Item); end if; end On_Create; R : constant Util.Listeners.Listener_Arrays.Ref := List.Get; begin R.Iterate (Process => On_Create'Access); end Notify_Create; -- ------------------------------ -- Inform the the lifecycle listeners registered in `List` that the item passed in `Item` -- has been updated (calls `On_Update`). -- ------------------------------ procedure Notify_Update (List : in Util.Listeners.List; Item : in Element_Type) is procedure On_Update (Subscriber : in Util.Listeners.Listener_Access); procedure On_Update (Subscriber : in Util.Listeners.Listener_Access) is begin if Subscriber.all in Listener'Class then Listener'Class (Subscriber.all).On_Update (Item); end if; end On_Update; R : constant Util.Listeners.Listener_Arrays.Ref := List.Get; begin R.Iterate (Process => On_Update'Access); end Notify_Update; -- ------------------------------ -- Inform the the lifecycle listeners registered in `List` that the item passed in `Item` -- has been deleted (calls `On_Delete`). -- ------------------------------ procedure Notify_Delete (List : in Util.Listeners.List; Item : in Element_Type) is procedure On_Delete (Subscriber : in Util.Listeners.Listener_Access); procedure On_Delete (Subscriber : in Util.Listeners.Listener_Access) is begin if Subscriber.all in Listener'Class then Listener'Class (Subscriber.all).On_Delete (Item); end if; end On_Delete; R : constant Util.Listeners.Listener_Arrays.Ref := List.Get; begin R.Iterate (Process => On_Delete'Access); end Notify_Delete; end Util.Listeners.Lifecycles;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- K R U N C H -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This procedure implements file name crunching -- First, the name is divided into segments separated by minus signs and -- underscores, then all minus signs and underscores are eliminated. If -- this leaves the name short enough, we are done. -- If not, then the longest segment is located (left-most if there are -- two of equal length), and shortened by dropping its last character. -- This is repeated until the name is short enough. -- As an example, consider the krunch of our-strings-wide_fixed.adb -- to fit the name into 8 characters as required by DOS: -- our-strings-wide_fixed 22 -- our strings wide fixed 19 -- our string wide fixed 18 -- our strin wide fixed 17 -- our stri wide fixed 16 -- our stri wide fixe 15 -- our str wide fixe 14 -- our str wid fixe 13 -- our str wid fix 12 -- ou str wid fix 11 -- ou st wid fix 10 -- ou st wi fix 9 -- ou st wi fi 8 -- Final file name: OUSTWIFX.ADB -- A special rule applies for children of System, Ada, Gnat, and Interfaces. -- In these cases, the following special prefix replacements occur: -- ada- replaced by a- -- gnat- replaced by g- -- interfaces- replaced by i- -- system- replaced by s- -- The rest of the name is krunched in the usual manner described above. -- In addition, these names, as well as the names of the renamed packages -- from the obsolescent features annex, are always krunched to 8 characters -- regardless of the setting of Maxlen. -- As an example of this special rule, consider ada-strings-wide_fixed.adb -- which gets krunched as follows: -- ada-strings-wide_fixed 22 -- a- strings wide fixed 18 -- a- string wide fixed 17 -- a- strin wide fixed 16 -- a- stri wide fixed 15 -- a- stri wide fixe 14 -- a- str wide fixe 13 -- a- str wid fixe 12 -- a- str wid fix 11 -- a- st wid fix 10 -- a- st wi fix 9 -- a- st wi fi 8 -- Final file name: A-STWIFX.ADB -- Since children of units named A, G, I or S might conflict with the names -- of predefined units, the naming rule in that case is that the first hyphen -- is replaced by a tilde sign. -- Note: as described below, this special treatment of predefined library -- unit file names can be inhibited by setting the No_Predef flag. -- Of course there is no guarantee that this algorithm results in uniquely -- crunched names (nor, obviously, is there any algorithm which would do so) -- In fact we run into such a case in the standard library routines with -- children of Wide_Text_IO, so a special rule is applied to deal with this -- clash, namely the prefix ada-wide_text_io- is replaced by a-wt- and then -- the normal crunching rules are applied, so that for example, the unit: -- Ada.Wide_Text_IO.Float_IO -- has the file name -- a-wtflio -- More problems arise with Wide_Wide, so we replace this sequence by -- a z (which is not used much) and also (as in the Wide_Text_IO case), -- we replace the prefix ada.wide_wide_text_io- by a-zt- and then -- the normal crunching rules are applied. -- These are the only irregularity required (so far!) to keep the file names -- unique in the standard predefined libraries. procedure Krunch (Buffer : in out String; Len : in out Natural; Maxlen : Natural; No_Predef : Boolean); pragma Elaborate_Body (Krunch); -- The full file name is stored in Buffer (1 .. Len) on entry. The file -- name is crunched in place and on return Len is updated, so that the -- resulting krunched name is in Buffer (1 .. Len) where Len <= Maxlen. -- Note that Len may be less than or equal to Maxlen on entry, in which -- case it may be possible that Krunch does not modify Buffer. The fourth -- parameter, No_Predef, is a switch which, if set to True, disables the -- normal special treatment of predefined library unit file names. -- -- Note: the string Buffer must have a lower bound of 1, and may not -- contain any blanks (in particular, it must not have leading blanks).
----------------------------------------------------------------------- -- atlas-reviews-modules -- Module reviews -- Copyright (C) 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 ASF.Applications; with AWA.Modules; with Atlas.Reviews.Models; with Security.Permissions; package Atlas.Reviews.Modules is -- The name under which the module is registered. NAME : constant String := "reviews"; package ACL_Create_Reviews is new Security.Permissions.Definition ("review-create"); package ACL_Delete_Reviews is new Security.Permissions.Definition ("review-delete"); package ACL_Update_Reviews is new Security.Permissions.Definition ("review-update"); -- ------------------------------ -- Module reviews -- ------------------------------ type Review_Module is new AWA.Modules.Module with private; type Review_Module_Access is access all Review_Module'Class; -- Initialize the reviews module. overriding procedure Initialize (Plugin : in out Review_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config); -- Get the reviews module. function Get_Review_Module return Review_Module_Access; -- Save the review. procedure Save (Model : in Review_Module; Entity : in out Atlas.Reviews.Models.Review_Ref'Class); -- Delete the review. procedure Delete (Model : in Review_Module; Entity : in out Atlas.Reviews.Models.Review_Ref'Class); private type Review_Module is new AWA.Modules.Module with null record; end Atlas.Reviews.Modules;
package Big_Integers with Ghost, SPARK_Mode is pragma Annotate (GNATprove, External_Axiomatization); type Big_Integer is private; Zero : constant Big_Integer; function "=" (L, R : Big_Integer) return Boolean with Import; function "<" (L, R : Big_Integer) return Boolean with Import; function "<=" (L, R : Big_Integer) return Boolean with Import; function ">" (L, R : Big_Integer) return Boolean with Import; function ">=" (L, R : Big_Integer) return Boolean with Import; function To_Big_Integer (Arg : Integer) return Big_Integer with Import; function To_Big_Integer (Arg : Long_Long_Integer) return Big_Integer with Import; function "+" (Arg : Long_Long_Integer) return Big_Integer renames To_Big_Integer; function In_Range (Arg, Low, High : Big_Integer) return Boolean is ((Low <= Arg) and (Arg <= High)) with Import; function To_Integer (Arg : Big_Integer) return Integer with Import, Pre => In_Range (Arg, Low => To_Big_Integer (Integer'First), High => To_Big_Integer (Integer'Last)); function "-" (L : Big_Integer) return Big_Integer with Import; function "abs" (L : Big_Integer) return Big_Integer with Import; function "+" (L, R : Big_Integer) return Big_Integer with Import; function "-" (L, R : Big_Integer) return Big_Integer with Import; function "*" (L, R : Big_Integer) return Big_Integer with Import; function "/" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "mod" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "rem" (L, R : Big_Integer) return Big_Integer with Import, Pre => R /= Zero; function "**" (L : Big_Integer; R : Natural) return Big_Integer with Import; function Min (L, R : Big_Integer) return Big_Integer with Import; function Max (L, R : Big_Integer) return Big_Integer with Import; private pragma SPARK_Mode (Off); type Big_Integer is null record; Zero : constant Big_Integer := (null record); end Big_Integers;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1991-1994, Florida State University -- -- Copyright (C) 1995-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. -- -- -- ------------------------------------------------------------------------------ -- This is a GNU/Linux (GNU/LinuxThreads) version of this package -- This package encapsulates all direct interfaces to OS services -- that are needed by children of System. -- PLEASE DO NOT add any with-clauses to this package or remove the pragma -- Preelaborate. This package is designed to be a bottom-level (leaf) package. with Interfaces.C; with Unchecked_Conversion; package System.OS_Interface is pragma Preelaborate; pragma Linker_Options ("-lpthread"); subtype int is Interfaces.C.int; subtype char is Interfaces.C.char; subtype short is Interfaces.C.short; subtype long is Interfaces.C.long; subtype unsigned is Interfaces.C.unsigned; subtype unsigned_short is Interfaces.C.unsigned_short; subtype unsigned_long is Interfaces.C.unsigned_long; subtype unsigned_char is Interfaces.C.unsigned_char; subtype plain_char is Interfaces.C.plain_char; subtype size_t is Interfaces.C.size_t; ----------- -- Errno -- ----------- function errno return int; pragma Import (C, errno, "__get_errno"); EAGAIN : constant := 35; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; EPERM : constant := 1; ETIMEDOUT : constant := 60; ------------- -- Signals -- ------------- Max_Interrupt : constant := 63; type Signal is new int range 0 .. Max_Interrupt; for Signal'Size use int'Size; SIGHUP : constant := 1; -- hangup SIGINT : constant := 2; -- interrupt (rubout) SIGQUIT : constant := 3; -- quit (ASCD FS) SIGILL : constant := 4; -- illegal instruction (not reset) SIGTRAP : constant := 5; -- trace trap (not reset) SIGIOT : constant := 6; -- IOT instruction SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future SIGFPE : constant := 8; -- floating point exception SIGKILL : constant := 9; -- kill (cannot be caught or ignored) SIGBUS : constant := 10; -- bus error SIGSEGV : constant := 11; -- segmentation violation SIGPIPE : constant := 13; -- write on a pipe with no one to read it SIGALRM : constant := 14; -- alarm clock SIGTERM : constant := 15; -- software termination signal from kill SIGURG : constant := 16; -- urgent condition on IO channel SIGSTOP : constant := 17; -- stop (cannot be caught or ignored) SIGTSTP : constant := 18; -- user stop requested from tty SIGCONT : constant := 19; -- stopped process has been continued SIGCLD : constant := 20; -- alias for SIGCHLD SIGCHLD : constant := 20; -- child status change SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGIO : constant := 23; -- I/O now possible (4.2 BSD) SIGPOLL : constant := 23; -- pollable event occurred SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGVTALRM : constant := 26; -- virtual timer expired SIGPROF : constant := 27; -- profiling timer expired SIGWINCH : constant := 28; -- window size change SIGPWR : constant := 29; -- power-fail restart SIGUSR1 : constant := 30; -- user defined signal 1 SIGUSR2 : constant := 31; -- user defined signal 2 SIGLTHRRES : constant := 32; -- GNU/LinuxThreads restart signal SIGLTHRCAN : constant := 33; -- GNU/LinuxThreads cancel signal SIGLTHRDBG : constant := 34; -- GNU/LinuxThreads debugger signal SIGADAABORT : constant := SIGABRT; -- Change this if you want to use another signal for task abort. -- SIGTERM might be a good one. SIGUNUSED : constant := 0; SIGSTKFLT : constant := 0; SIGLOST : constant := 0; -- These don't exist for Linux/Alpha. The constants are present -- so that we can continue to use a-intnam-linux.ads. type Signal_Set is array (Natural range <>) of Signal; Unmasked : constant Signal_Set := ( SIGTRAP, -- To enable debugging on multithreaded applications, mark SIGTRAP to -- be kept unmasked. SIGBUS, SIGTTIN, SIGTTOU, SIGTSTP, -- Keep these three signals unmasked so that background processes -- and IO behaves as normal "C" applications SIGPROF, -- To avoid confusing the profiler SIGKILL, SIGSTOP, -- These two signals actually cannot be masked; -- POSIX simply won't allow it. SIGLTHRRES, SIGLTHRCAN, SIGLTHRDBG); -- These three signals are used by GNU/LinuxThreads starting from -- glibc 2.1 (future 2.2). Reserved : constant Signal_Set := (SIGKILL, SIGSTOP); type sigset_t is private; function sigaddset (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigaddset, "sigaddset"); function sigdelset (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigdelset, "sigdelset"); function sigfillset (set : access sigset_t) return int; pragma Import (C, sigfillset, "sigfillset"); function sigismember (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigismember, "sigismember"); function sigemptyset (set : access sigset_t) return int; pragma Import (C, sigemptyset, "sigemptyset"); type union_type_3 is new String (1 .. 116); type siginfo_t is record si_signo : int; si_code : int; si_errno : int; X_data : union_type_3; end record; pragma Convention (C, siginfo_t); type struct_sigaction is record sa_handler : System.Address; sa_mask : sigset_t; sa_flags : unsigned_long; end record; pragma Convention (C, struct_sigaction); type struct_sigaction_ptr is access all struct_sigaction; type Machine_State is record dummy : unsigned_long; end record; type Machine_State_Ptr is access all Machine_State; SA_SIGINFO : constant := 16#40#; SIG_BLOCK : constant := 0; SIG_UNBLOCK : constant := 1; SIG_SETMASK : constant := 2; SIG_DFL : constant := 0; SIG_IGN : constant := 1; function sigaction (sig : Signal; act : struct_sigaction_ptr; oact : struct_sigaction_ptr) return int; pragma Import (C, sigaction, "sigaction"); ---------- -- Time -- ---------- type timespec is private; function To_Duration (TS : timespec) return Duration; pragma Inline (To_Duration); function To_Timespec (D : Duration) return timespec; pragma Inline (To_Timespec); type struct_timeval is private; function To_Duration (TV : struct_timeval) return Duration; pragma Inline (To_Duration); function To_Timeval (D : Duration) return struct_timeval; pragma Inline (To_Timeval); function gettimeofday (tv : access struct_timeval; tz : System.Address := System.Null_Address) return int; pragma Import (C, gettimeofday, "gettimeofday"); function sysconf (name : int) return long; pragma Import (C, sysconf); SC_CLK_TCK : constant := 2; ------------------------- -- Priority Scheduling -- ------------------------- SCHED_OTHER : constant := 0; SCHED_FIFO : constant := 1; SCHED_RR : constant := 2; ------------- -- Process -- ------------- type pid_t is private; function kill (pid : pid_t; sig : Signal) return int; pragma Import (C, kill, "kill"); function getpid return pid_t; pragma Import (C, getpid, "getpid"); ------------- -- Threads -- ------------- type Thread_Body is access function (arg : System.Address) return System.Address; function Thread_Body_Access is new Unchecked_Conversion (System.Address, Thread_Body); type pthread_t is new unsigned_long; subtype Thread_Id is pthread_t; function To_pthread_t is new Unchecked_Conversion (unsigned_long, pthread_t); type pthread_mutex_t is limited private; type pthread_cond_t is limited private; type pthread_attr_t is limited private; type pthread_mutexattr_t is limited private; type pthread_condattr_t is limited private; type pthread_key_t is private; PTHREAD_CREATE_DETACHED : constant := 1; ----------- -- Stack -- ----------- function Get_Stack_Base (thread : pthread_t) return Address; pragma Inline (Get_Stack_Base); -- This is a dummy procedure to share some GNULLI files --------------------------------------- -- Nonstandard Thread Initialization -- --------------------------------------- procedure pthread_init; pragma Inline (pthread_init); -- This is a dummy procedure to share some GNULLI files ------------------------- -- POSIX.1c Section 3 -- ------------------------- function sigwait (set : access sigset_t; sig : access Signal) return int; pragma Import (C, sigwait, "sigwait"); function pthread_kill (thread : pthread_t; sig : Signal) return int; pragma Import (C, pthread_kill, "pthread_kill"); function pthread_sigmask (how : int; set : access sigset_t; oset : access sigset_t) return int; pragma Import (C, pthread_sigmask, "pthread_sigmask"); -------------------------- -- POSIX.1c Section 11 -- -------------------------- function pthread_mutexattr_init (attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutexattr_init, "pthread_mutexattr_init"); function pthread_mutexattr_destroy (attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutexattr_destroy, "pthread_mutexattr_destroy"); function pthread_mutex_init (mutex : access pthread_mutex_t; attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutex_init, "pthread_mutex_init"); function pthread_mutex_destroy (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_destroy, "pthread_mutex_destroy"); function pthread_mutex_lock (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_lock, "pthread_mutex_lock"); function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_unlock, "pthread_mutex_unlock"); function pthread_condattr_init (attr : access pthread_condattr_t) return int; pragma Import (C, pthread_condattr_init, "pthread_condattr_init"); function pthread_condattr_destroy (attr : access pthread_condattr_t) return int; pragma Import (C, pthread_condattr_destroy, "pthread_condattr_destroy"); function pthread_cond_init (cond : access pthread_cond_t; attr : access pthread_condattr_t) return int; pragma Import (C, pthread_cond_init, "pthread_cond_init"); function pthread_cond_destroy (cond : access pthread_cond_t) return int; pragma Import (C, pthread_cond_destroy, "pthread_cond_destroy"); function pthread_cond_signal (cond : access pthread_cond_t) return int; pragma Import (C, pthread_cond_signal, "pthread_cond_signal"); function pthread_cond_wait (cond : access pthread_cond_t; mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_cond_wait, "pthread_cond_wait"); function pthread_cond_timedwait (cond : access pthread_cond_t; mutex : access pthread_mutex_t; abstime : access timespec) return int; pragma Import (C, pthread_cond_timedwait, "pthread_cond_timedwait"); -------------------------- -- POSIX.1c Section 13 -- -------------------------- type struct_sched_param is record sched_priority : int; -- scheduling priority end record; pragma Convention (C, struct_sched_param); function pthread_setschedparam (thread : pthread_t; policy : int; param : access struct_sched_param) return int; pragma Import (C, pthread_setschedparam, "pthread_setschedparam"); function pthread_attr_setschedpolicy (attr : access pthread_attr_t; policy : int) return int; pragma Import (C, pthread_attr_setschedpolicy, "pthread_attr_setschedpolicy"); function sched_yield return int; pragma Import (C, sched_yield, "sched_yield"); --------------------------- -- P1003.1c - Section 16 -- --------------------------- function pthread_attr_init (attributes : access pthread_attr_t) return int; pragma Import (C, pthread_attr_init, "pthread_attr_init"); function pthread_attr_destroy (attributes : access pthread_attr_t) return int; pragma Import (C, pthread_attr_destroy, "pthread_attr_destroy"); function pthread_attr_setdetachstate (attr : access pthread_attr_t; detachstate : int) return int; pragma Import (C, pthread_attr_setdetachstate, "pthread_attr_setdetachstate"); function pthread_attr_setstacksize (attr : access pthread_attr_t; stacksize : size_t) return int; pragma Import (C, pthread_attr_setstacksize, "pthread_attr_setstacksize"); function pthread_create (thread : access pthread_t; attributes : access pthread_attr_t; start_routine : Thread_Body; arg : System.Address) return int; pragma Import (C, pthread_create, "pthread_create"); procedure pthread_exit (status : System.Address); pragma Import (C, pthread_exit, "pthread_exit"); function pthread_self return pthread_t; pragma Import (C, pthread_self, "pthread_self"); -------------------------- -- POSIX.1c Section 17 -- -------------------------- function pthread_setspecific (key : pthread_key_t; value : System.Address) return int; pragma Import (C, pthread_setspecific, "pthread_setspecific"); function pthread_getspecific (key : pthread_key_t) return System.Address; pragma Import (C, pthread_getspecific, "pthread_getspecific"); type destructor_pointer is access procedure (arg : System.Address); function pthread_key_create (key : access pthread_key_t; destructor : destructor_pointer) return int; pragma Import (C, pthread_key_create, "pthread_key_create"); private type sigset_t is record dum0, dum1, dum2, dum3, dum4, dum5, dum6, dum7 : unsigned_long; dum8, dum9, dum10, dum11, dum12, dum13, dum14, dum15 : unsigned_long; end record; pragma Convention (C, sigset_t); type pid_t is new int; type time_t is new long; type timespec is record tv_sec : time_t; tv_nsec : long; end record; pragma Convention (C, timespec); type struct_timeval is record tv_sec : time_t; tv_usec : time_t; end record; pragma Convention (C, struct_timeval); type pthread_attr_t is record dum0, dum1, dum2, dum3, dum4, dum5, dum6 : unsigned_long; end record; pragma Convention (C, pthread_attr_t); type pthread_condattr_t is record dummy : int; end record; pragma Convention (C, pthread_condattr_t); type pthread_mutexattr_t is record mutexkind : int; end record; pragma Convention (C, pthread_mutexattr_t); type pthread_mutex_t is record dum0, dum1, dum2, dum3, dum4 : unsigned_long; end record; pragma Convention (C, pthread_mutex_t); type pthread_cond_t is record dum0, dum1, dum2, dum3, dum4, dum5 : unsigned_long; end record; pragma Convention (C, pthread_cond_t); type pthread_key_t is new unsigned; end System.OS_Interface;
-- Copyright 2013-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/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
-- Copyright (C) 2011-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is function Ident (I : Integer) return Integer is begin return I; end Ident; end Pck;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Common; use Common; with Ada.Unchecked_Deallocation; package Algebra with SPARK_Mode is Max_Children : constant := 50; type Node_Kind_Type is (Action, Operator, Undefined); -- Nodes can be either Action nodes or Operator nodes type Operator_Kind_Type is (Sequential, Alternative, Parallel, Undefined); -- In case of Operator nodes, there are 3 possibilities type Algebra_Tree_Cell (Node_Kind : Node_Kind_Type); type Algebra_Tree is access Algebra_Tree_Cell; -- Cell type and its corresponding pointer subtype Children_Number is Integer range 0 .. Max_Children; subtype Children_Index is Children_Number range 1 .. Children_Number'Last; type Algebra_Tree_Array is array (Children_Index range <>) of Algebra_Tree; type Children_Array is new Algebra_Tree_Array with Predicate => (for all Child of Children_Array => Child /= null); type Children_Collection (Num_Children : Children_Number := 0) is record Children : Children_Array (1 .. Num_Children); end record; -- This type is used to store the pointers to the children of an Operator -- node. type Algebra_Tree_Cell (Node_Kind : Node_Kind_Type) is record case Node_Kind is when Action => TaskOptionId : Int64; when Operator => Operator_Kind : Operator_Kind_Type; Collection : Children_Collection; when Undefined => null; end case; end record; procedure Parse_Formula (Formula : Unbounded_String; Algebra : out Algebra_Tree; Error : in out Boolean; Message : in out Unbounded_String) with Pre => Length (Formula) > 1, Post => (if not Error then Algebra /= null); procedure Print_Tree (Algebra : not null access constant Algebra_Tree_Cell); function Is_Present (Algebra : not null access constant Algebra_Tree_Cell; TaskOptionId : Int64) return Boolean is (case Algebra.Node_Kind is when Action => TaskOptionId = Algebra.TaskOptionId, when Operator => (for some J in 1 .. Algebra.Collection.Num_Children => Is_Present (Algebra.Collection.Children (J), TaskOptionId)), when Undefined => False); pragma Annotate (GNATprove, Terminating, Is_Present); function Get_Next_Objectives_Ids (Assignment : Int64_Seq; Algebra : not null access constant Algebra_Tree_Cell) return Int64_Seq with Post => (for all ObjectiveId of Get_Next_Objectives_Ids'Result => (Is_Present (Algebra, ObjectiveId) and then not Contains (Assignment, Int64_Sequences.First, Last (Assignment), ObjectiveId))); pragma Annotate (GNATprove, Terminating, Get_Next_Objectives_Ids); -- Returns a sequence of TaskOptionIds corresponding to the next possible -- actions considering Assignment. procedure Free_Tree (X : in out Algebra_Tree) with Depends => (X => X), Post => X = null; end Algebra;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2017, 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. -- -- -- ------------------------------------------------------------------------------ -- This package provides a software emulation for a hardware quadrature -- encoder, as if attached to a motor. It is a state machine in effect, in -- that clients can start and stop it, and control the emulated direction -- produced on the two output signals. It uses a timer to produce the two -- emilated signals. -- The output signals are produced on two timer output channels connected to -- the two GPIO pins indicated below. These pins are expected to be connected -- by jumper wires to two other GPIO pins used by the "decoder" software. -- ------------- -- | |CH1:PC6 -- | |-------------> -- | TIM3 | -- | |CH2:PC7 -- | Quadrature |-------------> -- | encoder | -- | emulator | -- | | -- | | -- ------------- -- Sample calls: -- Encoder_Emulator.Stop; -- Encoder_Emulator.Emulate_Forward_Direction; -- Encoder_Emulator.Start; with STM32.Device; use STM32.Device; with STM32.GPIO; use STM32.GPIO; with STM32.Timers; use STM32.Timers; with HAL; use HAL; package Encoder_Emulator is pragma Elaborate_Body; procedure Start; -- the first time this is called, the direction will be forward procedure Stop; procedure Emulate_Forward_Direction; procedure Emulate_Backward_Direction; private Emulator_Points : GPIO_Points := PC6 & PC7; Emulator_Timer : Timer renames Timer_3; Emulator_AF : constant STM32.GPIO_Alternate_Function := GPIO_AF_TIM3_2; Emulator_Period : constant UInt32 := ((System_Clock_Frequencies.SYSCLK / 4) / 10000) - 1; end Encoder_Emulator;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S O F T _ L I N K S . I N I T I A L I Z E -- -- -- -- B o d y -- -- -- -- Copyright (C) 2017-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Secondary_Stack; package body System.Soft_Links.Initialize is package SSS renames System.Secondary_Stack; begin -- Initialize the TSD of the main task NT_TSD.Jmpbuf_Address := System.Null_Address; -- Allocate and initialize the secondary stack for the main task NT_TSD.Sec_Stack_Ptr := null; SSS.SS_Init (NT_TSD.Sec_Stack_Ptr); end System.Soft_Links.Initialize;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ I N T R -- -- -- -- 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. -- -- -- -- 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 Elists; use Elists; with Errout; use Errout; with Exp_Ch4; use Exp_Ch4; with Exp_Ch7; use Exp_Ch7; with Exp_Ch11; use Exp_Ch11; with Exp_Code; use Exp_Code; with Exp_Disp; use Exp_Disp; with Exp_Fixd; use Exp_Fixd; with Exp_Util; use Exp_Util; with Freeze; use Freeze; with Namet; use Namet; with Nmake; use Nmake; with Nlists; use Nlists; with Restrict; use Restrict; with Rtsfind; use Rtsfind; with Sem; use Sem; with Sem_Eval; use Sem_Eval; with Sem_Res; use Sem_Res; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Sinput; use Sinput; with Snames; use Snames; with Stand; use Stand; with Stringt; use Stringt; with Tbuild; use Tbuild; with Uintp; use Uintp; with Urealp; use Urealp; package body Exp_Intr is ----------------------- -- Local Subprograms -- ----------------------- procedure Expand_Is_Negative (N : Node_Id); -- Expand a call to the intrinsic Is_Negative function procedure Expand_Dispatching_Constructor_Call (N : Node_Id); -- Expand a call to an instantiation of Generic_Dispatching_Constructor -- into a dispatching call to the actual subprogram associated with the -- Constructor formal subprogram, passing it the Parameters actual of -- the call to the instantiation and dispatching based on call's Tag -- parameter. procedure Expand_Exception_Call (N : Node_Id; Ent : RE_Id); -- Expand a call to Exception_Information/Message/Name. The first -- parameter, N, is the node for the function call, and Ent is the -- entity for the corresponding routine in the Ada.Exceptions package. procedure Expand_Import_Call (N : Node_Id); -- Expand a call to Import_Address/Longest_Integer/Value. The parameter -- N is the node for the function call. procedure Expand_Shift (N : Node_Id; E : Entity_Id; K : Node_Kind); -- Expand an intrinsic shift operation, N and E are from the call to -- Expand_Intrinsic_Call (call node and subprogram spec entity) and -- K is the kind for the shift node procedure Expand_Unc_Conversion (N : Node_Id; E : Entity_Id); -- Expand a call to an instantiation of Unchecked_Convertion into a node -- N_Unchecked_Type_Conversion. procedure Expand_Unc_Deallocation (N : Node_Id); -- Expand a call to an instantiation of Unchecked_Deallocation into a node -- N_Free_Statement and appropriate context. procedure Expand_To_Address (N : Node_Id); procedure Expand_To_Pointer (N : Node_Id); -- Expand a call to corresponding function, declared in an instance of -- System.Addess_To_Access_Conversions. procedure Expand_Source_Info (N : Node_Id; Nam : Name_Id); -- Rewrite the node by the appropriate string or positive constant. -- Nam can be one of the following: -- Name_File - expand string that is the name of source file -- Name_Line - expand integer line number -- Name_Source_Location - expand string of form file:line -- Name_Enclosing_Entity - expand string with name of enclosing entity ----------------------------------------- -- Expand_Dispatching_Constructor_Call -- ----------------------------------------- -- Transform a call to an instantiation of Generic_Dispatching_Constructor -- of the form: -- GDC_Instance (The_Tag, Parameters'Access) -- to a class-wide conversion of a dispatching call to the actual -- associated with the formal subprogram Construct, designating -- The_Tag as the controlling tag of the call: -- T'Class (Construct'Actual (Params)) -- Controlling tag is The_Tag -- which will eventually be expanded to the following: -- T'Class (The_Tag.all (Construct'Actual'Index).all (Params)) -- A class-wide membership test is also generated, preceding the call, -- to ensure that the controlling tag denotes a type in T'Class. procedure Expand_Dispatching_Constructor_Call (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Tag_Arg : constant Node_Id := First_Actual (N); Param_Arg : constant Node_Id := Next_Actual (Tag_Arg); Subp_Decl : constant Node_Id := Parent (Parent (Entity (Name (N)))); Inst_Pkg : constant Node_Id := Parent (Subp_Decl); Act_Rename : Node_Id; Act_Constr : Entity_Id; Result_Typ : Entity_Id; Cnstr_Call : Node_Id; begin -- The subprogram is the third actual in the instantiation, and is -- retrieved from the corresponding renaming declaration. However, -- freeze nodes may appear before, so we retrieve the declaration -- with an explicit loop. Act_Rename := First (Visible_Declarations (Inst_Pkg)); while Nkind (Act_Rename) /= N_Subprogram_Renaming_Declaration loop Next (Act_Rename); end loop; Act_Constr := Entity (Name (Act_Rename)); Result_Typ := Class_Wide_Type (Etype (Act_Constr)); -- Create the call to the actual Constructor function Cnstr_Call := Make_Function_Call (Loc, Name => New_Occurrence_Of (Act_Constr, Loc), Parameter_Associations => New_List (Relocate_Node (Param_Arg))); -- Establish its controlling tag from the tag passed to the instance Set_Controlling_Argument (Cnstr_Call, Relocate_Node (Tag_Arg)); -- Rewrite and analyze the call to the instance as a class-wide -- conversion of the call to the actual constructor. Rewrite (N, Convert_To (Result_Typ, Cnstr_Call)); Analyze_And_Resolve (N, Etype (Act_Constr)); -- Generate a class-wide membership test to ensure that the call's tag -- argument denotes a type within the class. Insert_Action (N, Make_Implicit_If_Statement (N, Condition => Make_Op_Not (Loc, Make_DT_Access_Action (Result_Typ, Action => CW_Membership, Args => New_List ( Duplicate_Subexpr (Tag_Arg), New_Reference_To ( Node (First_Elmt (Access_Disp_Table ( Root_Type (Result_Typ)))), Loc)))), Then_Statements => New_List (Make_Raise_Statement (Loc, New_Occurrence_Of (RTE (RE_Tag_Error), Loc))))); end Expand_Dispatching_Constructor_Call; --------------------------- -- Expand_Exception_Call -- --------------------------- -- If the function call is not within an exception handler, then the -- call is replaced by a null string. Otherwise the appropriate routine -- in Ada.Exceptions is called passing the choice parameter specification -- from the enclosing handler. If the enclosing handler lacks a choice -- parameter, then one is supplied. procedure Expand_Exception_Call (N : Node_Id; Ent : RE_Id) is Loc : constant Source_Ptr := Sloc (N); P : Node_Id; E : Entity_Id; begin -- Climb up parents to see if we are in exception handler P := Parent (N); loop -- Case of not in exception handler, replace by null string if No (P) then Rewrite (N, Make_String_Literal (Loc, Strval => "")); exit; -- Case of in exception handler elsif Nkind (P) = N_Exception_Handler then if No (Choice_Parameter (P)) then -- If no choice parameter present, then put one there. Note -- that we do not need to put it on the entity chain, since -- no one will be referencing it by normal visibility methods. E := Make_Defining_Identifier (Loc, New_Internal_Name ('E')); Set_Choice_Parameter (P, E); Set_Ekind (E, E_Variable); Set_Etype (E, RTE (RE_Exception_Occurrence)); Set_Scope (E, Current_Scope); end if; Rewrite (N, Make_Function_Call (Loc, Name => New_Occurrence_Of (RTE (Ent), Loc), Parameter_Associations => New_List ( New_Occurrence_Of (Choice_Parameter (P), Loc)))); exit; -- Keep climbing! else P := Parent (P); end if; end loop; Analyze_And_Resolve (N, Standard_String); end Expand_Exception_Call; ------------------------ -- Expand_Import_Call -- ------------------------ -- The function call must have a static string as its argument. We create -- a dummy variable which uses this string as the external name in an -- Import pragma. The result is then obtained as the address of this -- dummy variable, converted to the appropriate target type. procedure Expand_Import_Call (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Ent : constant Entity_Id := Entity (Name (N)); Str : constant Node_Id := First_Actual (N); Dum : Entity_Id; begin Dum := Make_Defining_Identifier (Loc, New_Internal_Name ('D')); Insert_Actions (N, New_List ( Make_Object_Declaration (Loc, Defining_Identifier => Dum, Object_Definition => New_Occurrence_Of (Standard_Character, Loc)), Make_Pragma (Loc, Chars => Name_Import, Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Name_Ada)), Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Chars (Dum))), Make_Pragma_Argument_Association (Loc, Chars => Name_Link_Name, Expression => Relocate_Node (Str)))))); Rewrite (N, Unchecked_Convert_To (Etype (Ent), Make_Attribute_Reference (Loc, Attribute_Name => Name_Address, Prefix => Make_Identifier (Loc, Chars (Dum))))); Analyze_And_Resolve (N, Etype (Ent)); end Expand_Import_Call; --------------------------- -- Expand_Intrinsic_Call -- --------------------------- procedure Expand_Intrinsic_Call (N : Node_Id; E : Entity_Id) is Nam : Name_Id; begin -- If the intrinsic subprogram is generic, gets its original name if Present (Parent (E)) and then Present (Generic_Parent (Parent (E))) then Nam := Chars (Generic_Parent (Parent (E))); else Nam := Chars (E); end if; if Nam = Name_Asm then Expand_Asm_Call (N); elsif Nam = Name_Divide then Expand_Decimal_Divide_Call (N); elsif Nam = Name_Exception_Information then Expand_Exception_Call (N, RE_Exception_Information); elsif Nam = Name_Exception_Message then Expand_Exception_Call (N, RE_Exception_Message); elsif Nam = Name_Exception_Name then Expand_Exception_Call (N, RE_Exception_Name_Simple); elsif Nam = Name_Generic_Dispatching_Constructor then Expand_Dispatching_Constructor_Call (N); elsif Nam = Name_Import_Address or else Nam = Name_Import_Largest_Value or else Nam = Name_Import_Value then Expand_Import_Call (N); elsif Nam = Name_Is_Negative then Expand_Is_Negative (N); elsif Nam = Name_Rotate_Left then Expand_Shift (N, E, N_Op_Rotate_Left); elsif Nam = Name_Rotate_Right then Expand_Shift (N, E, N_Op_Rotate_Right); elsif Nam = Name_Shift_Left then Expand_Shift (N, E, N_Op_Shift_Left); elsif Nam = Name_Shift_Right then Expand_Shift (N, E, N_Op_Shift_Right); elsif Nam = Name_Shift_Right_Arithmetic then Expand_Shift (N, E, N_Op_Shift_Right_Arithmetic); elsif Nam = Name_Unchecked_Conversion then Expand_Unc_Conversion (N, E); elsif Nam = Name_Unchecked_Deallocation then Expand_Unc_Deallocation (N); elsif Nam = Name_To_Address then Expand_To_Address (N); elsif Nam = Name_To_Pointer then Expand_To_Pointer (N); elsif Nam = Name_File or else Nam = Name_Line or else Nam = Name_Source_Location or else Nam = Name_Enclosing_Entity then Expand_Source_Info (N, Nam); -- If we have a renaming, expand the call to the original operation, -- which must itself be intrinsic, since renaming requires matching -- conventions and this has already been checked. elsif Present (Alias (E)) then Expand_Intrinsic_Call (N, Alias (E)); -- The only other case is where an external name was specified, -- since this is the only way that an otherwise unrecognized -- name could escape the checking in Sem_Prag. Nothing needs -- to be done in such a case, since we pass such a call to the -- back end unchanged. else null; end if; end Expand_Intrinsic_Call; ------------------------ -- Expand_Is_Negative -- ------------------------ procedure Expand_Is_Negative (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Opnd : constant Node_Id := Relocate_Node (First_Actual (N)); begin -- We replace the function call by the following expression -- if Opnd < 0.0 then -- True -- else -- if Opnd > 0.0 then -- False; -- else -- Float_Unsigned!(Float (Opnd)) /= 0 -- end if; -- end if; Rewrite (N, Make_Conditional_Expression (Loc, Expressions => New_List ( Make_Op_Lt (Loc, Left_Opnd => Duplicate_Subexpr (Opnd), Right_Opnd => Make_Real_Literal (Loc, Ureal_0)), New_Occurrence_Of (Standard_True, Loc), Make_Conditional_Expression (Loc, Expressions => New_List ( Make_Op_Gt (Loc, Left_Opnd => Duplicate_Subexpr_No_Checks (Opnd), Right_Opnd => Make_Real_Literal (Loc, Ureal_0)), New_Occurrence_Of (Standard_False, Loc), Make_Op_Ne (Loc, Left_Opnd => Unchecked_Convert_To (RTE (RE_Float_Unsigned), Convert_To (Standard_Float, Duplicate_Subexpr_No_Checks (Opnd))), Right_Opnd => Make_Integer_Literal (Loc, 0))))))); Analyze_And_Resolve (N, Standard_Boolean); end Expand_Is_Negative; ------------------ -- Expand_Shift -- ------------------ -- This procedure is used to convert a call to a shift function to the -- corresponding operator node. This conversion is not done by the usual -- circuit for converting calls to operator functions (e.g. "+"(1,2)) to -- operator nodes, because shifts are not predefined operators. -- As a result, whenever a shift is used in the source program, it will -- remain as a call until converted by this routine to the operator node -- form which Gigi is expecting to see. -- Note: it is possible for the expander to generate shift operator nodes -- directly, which will be analyzed in the normal manner by calling Analyze -- and Resolve. Such shift operator nodes will not be seen by Expand_Shift. procedure Expand_Shift (N : Node_Id; E : Entity_Id; K : Node_Kind) is Loc : constant Source_Ptr := Sloc (N); Typ : constant Entity_Id := Etype (N); Left : constant Node_Id := First_Actual (N); Right : constant Node_Id := Next_Actual (Left); Ltyp : constant Node_Id := Etype (Left); Rtyp : constant Node_Id := Etype (Right); Snode : Node_Id; begin Snode := New_Node (K, Loc); Set_Left_Opnd (Snode, Relocate_Node (Left)); Set_Right_Opnd (Snode, Relocate_Node (Right)); Set_Chars (Snode, Chars (E)); Set_Etype (Snode, Base_Type (Typ)); Set_Entity (Snode, E); if Compile_Time_Known_Value (Type_High_Bound (Rtyp)) and then Expr_Value (Type_High_Bound (Rtyp)) < Esize (Ltyp) then Set_Shift_Count_OK (Snode, True); end if; -- Do the rewrite. Note that we don't call Analyze and Resolve on -- this node, because it already got analyzed and resolved when -- it was a function call! Rewrite (N, Snode); Set_Analyzed (N); end Expand_Shift; ------------------------ -- Expand_Source_Info -- ------------------------ procedure Expand_Source_Info (N : Node_Id; Nam : Name_Id) is Loc : constant Source_Ptr := Sloc (N); Ent : Entity_Id; procedure Write_Entity_Name (E : Entity_Id); -- Recursive procedure to construct string for qualified name of -- enclosing program unit. The qualification stops at an enclosing -- scope has no source name (block or loop). If entity is a subprogram -- instance, skip enclosing wrapper package. ----------------------- -- Write_Entity_Name -- ----------------------- procedure Write_Entity_Name (E : Entity_Id) is SDef : Source_Ptr; TDef : constant Source_Buffer_Ptr := Source_Text (Get_Source_File_Index (Sloc (E))); begin -- Nothing to do if at outer level if Scope (E) = Standard_Standard then null; -- If scope comes from source, write its name elsif Comes_From_Source (Scope (E)) then Write_Entity_Name (Scope (E)); Add_Char_To_Name_Buffer ('.'); -- If in wrapper package skip past it elsif Is_Wrapper_Package (Scope (E)) then Write_Entity_Name (Scope (Scope (E))); Add_Char_To_Name_Buffer ('.'); -- Otherwise nothing to output (happens in unnamed block statements) else null; end if; -- Loop to output the name -- is this right wrt wide char encodings ??? (no!) SDef := Sloc (E); while TDef (SDef) in '0' .. '9' or else TDef (SDef) >= 'A' or else TDef (SDef) = ASCII.ESC loop Add_Char_To_Name_Buffer (TDef (SDef)); SDef := SDef + 1; end loop; end Write_Entity_Name; -- Start of processing for Expand_Source_Info begin -- Integer cases if Nam = Name_Line then Rewrite (N, Make_Integer_Literal (Loc, Intval => UI_From_Int (Int (Get_Logical_Line_Number (Loc))))); Analyze_And_Resolve (N, Standard_Positive); -- String cases else case Nam is when Name_File => Get_Decoded_Name_String (Reference_Name (Get_Source_File_Index (Loc))); when Name_Source_Location => Build_Location_String (Loc); when Name_Enclosing_Entity => Name_Len := 0; Ent := Current_Scope; -- Skip enclosing blocks to reach enclosing unit while Present (Ent) loop exit when Ekind (Ent) /= E_Block and then Ekind (Ent) /= E_Loop; Ent := Scope (Ent); end loop; -- Ent now points to the relevant defining entity Name_Len := 0; Write_Entity_Name (Ent); when others => raise Program_Error; end case; Rewrite (N, Make_String_Literal (Loc, Strval => String_From_Name_Buffer)); Analyze_And_Resolve (N, Standard_String); end if; Set_Is_Static_Expression (N); end Expand_Source_Info; --------------------------- -- Expand_Unc_Conversion -- --------------------------- procedure Expand_Unc_Conversion (N : Node_Id; E : Entity_Id) is Func : constant Entity_Id := Entity (Name (N)); Conv : Node_Id; Ftyp : Entity_Id; Ttyp : Entity_Id; begin -- Rewrite as unchecked conversion node. Note that we must convert -- the operand to the formal type of the input parameter of the -- function, so that the resulting N_Unchecked_Type_Conversion -- call indicates the correct types for Gigi. -- Right now, we only do this if a scalar type is involved. It is -- not clear if it is needed in other cases. If we do attempt to -- do the conversion unconditionally, it crashes 3411-018. To be -- investigated further ??? Conv := Relocate_Node (First_Actual (N)); Ftyp := Etype (First_Formal (Func)); if Is_Scalar_Type (Ftyp) then Conv := Convert_To (Ftyp, Conv); Set_Parent (Conv, N); Analyze_And_Resolve (Conv); end if; -- The instantiation of Unchecked_Conversion creates a wrapper package, -- and the target type is declared as a subtype of the actual. Recover -- the actual, which is the subtype indic. in the subtype declaration -- for the target type. This is semantically correct, and avoids -- anomalies with access subtypes. For entities, leave type as is. -- We do the analysis here, because we do not want the compiler -- to try to optimize or otherwise reorganize the unchecked -- conversion node. Ttyp := Etype (E); if Is_Entity_Name (Conv) then null; elsif Nkind (Parent (Ttyp)) = N_Subtype_Declaration then Ttyp := Entity (Subtype_Indication (Parent (Etype (E)))); elsif Is_Itype (Ttyp) then Ttyp := Entity (Subtype_Indication (Associated_Node_For_Itype (Ttyp))); else raise Program_Error; end if; Rewrite (N, Unchecked_Convert_To (Ttyp, Conv)); Set_Etype (N, Ttyp); Set_Analyzed (N); if Nkind (N) = N_Unchecked_Type_Conversion then Expand_N_Unchecked_Type_Conversion (N); end if; end Expand_Unc_Conversion; ----------------------------- -- Expand_Unc_Deallocation -- ----------------------------- -- Generate the following Code : -- if Arg /= null then -- <Finalize_Call> (.., T'Class(Arg.all), ..); -- for controlled types -- Free (Arg); -- Arg := Null; -- end if; -- For a task, we also generate a call to Free_Task to ensure that the -- task itself is freed if it is terminated, ditto for a simple protected -- object, with a call to Finalize_Protection. For composite types that -- have tasks or simple protected objects as components, we traverse the -- structures to find and terminate those components. procedure Expand_Unc_Deallocation (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Arg : constant Node_Id := First_Actual (N); Typ : constant Entity_Id := Etype (Arg); Stmts : constant List_Id := New_List; Rtyp : constant Entity_Id := Underlying_Type (Root_Type (Typ)); Pool : constant Entity_Id := Associated_Storage_Pool (Rtyp); Desig_T : constant Entity_Id := Designated_Type (Typ); Gen_Code : Node_Id; Free_Node : Node_Id; Deref : Node_Id; Free_Arg : Node_Id; Free_Cod : List_Id; Blk : Node_Id; Arg_Known_Non_Null : constant Boolean := Known_Non_Null (N); -- This captures whether we know the argument to be non-null so that -- we can avoid the test. The reason that we need to capture this is -- that we analyze some generated statements before properly attaching -- them to the tree, and that can disturb current value settings. begin if No_Pool_Assigned (Rtyp) then Error_Msg_N ("?deallocation from empty storage pool", N); end if; -- Nothing to do if we know the argument is null if Known_Null (N) then return; end if; -- Processing for pointer to controlled type if Controlled_Type (Desig_T) then Deref := Make_Explicit_Dereference (Loc, Prefix => Duplicate_Subexpr_No_Checks (Arg)); -- If the type is tagged, then we must force dispatching on the -- finalization call because the designated type may not be the -- actual type of the object. if Is_Tagged_Type (Desig_T) and then not Is_Class_Wide_Type (Desig_T) then Deref := Unchecked_Convert_To (Class_Wide_Type (Desig_T), Deref); elsif not Is_Tagged_Type (Desig_T) then -- Set type of result, to force a conversion when needed (see -- exp_ch7, Convert_View), given that Deep_Finalize may be -- inherited from the parent type, and we need the type of the -- expression to see whether the conversion is in fact needed. Set_Etype (Deref, Desig_T); end if; Free_Cod := Make_Final_Call (Ref => Deref, Typ => Desig_T, With_Detach => New_Reference_To (Standard_True, Loc)); if Abort_Allowed then Prepend_To (Free_Cod, Build_Runtime_Call (Loc, RE_Abort_Defer)); Blk := Make_Block_Statement (Loc, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => Free_Cod, At_End_Proc => New_Occurrence_Of (RTE (RE_Abort_Undefer_Direct), Loc))); -- We now expand the exception (at end) handler. We set a -- temporary parent pointer since we have not attached Blk -- to the tree yet. Set_Parent (Blk, N); Analyze (Blk); Expand_At_End_Handler (Handled_Statement_Sequence (Blk), Entity (Identifier (Blk))); Append (Blk, Stmts); -- We kill saved current values, since analyzing statements not -- properly attached to the tree can set wrong current values. Kill_Current_Values; else Append_List_To (Stmts, Free_Cod); end if; end if; -- For a task type, call Free_Task before freeing the ATCB if Is_Task_Type (Desig_T) then declare Stat : Node_Id := Prev (N); Nam1 : Node_Id; Nam2 : Node_Id; begin -- An Abort followed by a Free will not do what the user -- expects, because the abort is not immediate. This is -- worth a friendly warning. while Present (Stat) and then not Comes_From_Source (Original_Node (Stat)) loop Prev (Stat); end loop; if Present (Stat) and then Nkind (Original_Node (Stat)) = N_Abort_Statement then Stat := Original_Node (Stat); Nam1 := First (Names (Stat)); Nam2 := Original_Node (First (Parameter_Associations (N))); if Nkind (Nam1) = N_Explicit_Dereference and then Is_Entity_Name (Prefix (Nam1)) and then Is_Entity_Name (Nam2) and then Entity (Prefix (Nam1)) = Entity (Nam2) then Error_Msg_N ("abort may take time to complete?", N); Error_Msg_N ("\deallocation might have no effect?", N); Error_Msg_N ("\safer to wait for termination.?", N); end if; end if; end; Append_To (Stmts, Cleanup_Task (N, Duplicate_Subexpr_No_Checks (Arg))); -- For composite types that contain tasks, recurse over the structure -- to build the selectors for the task subcomponents. elsif Has_Task (Desig_T) then if Is_Record_Type (Desig_T) then Append_List_To (Stmts, Cleanup_Record (N, Arg, Desig_T)); elsif Is_Array_Type (Desig_T) then Append_List_To (Stmts, Cleanup_Array (N, Arg, Desig_T)); end if; end if; -- Same for simple protected types. Eventually call Finalize_Protection -- before freeing the PO for each protected component. if Is_Simple_Protected_Type (Desig_T) then Append_To (Stmts, Cleanup_Protected_Object (N, Duplicate_Subexpr_No_Checks (Arg))); elsif Has_Simple_Protected_Object (Desig_T) then if Is_Record_Type (Desig_T) then Append_List_To (Stmts, Cleanup_Record (N, Arg, Desig_T)); elsif Is_Array_Type (Desig_T) then Append_List_To (Stmts, Cleanup_Array (N, Arg, Desig_T)); end if; end if; -- Normal processing for non-controlled types Free_Arg := Duplicate_Subexpr_No_Checks (Arg); Free_Node := Make_Free_Statement (Loc, Empty); Append_To (Stmts, Free_Node); Set_Storage_Pool (Free_Node, Pool); -- Deal with storage pool if Present (Pool) then -- Freeing the secondary stack is meaningless if Is_RTE (Pool, RE_SS_Pool) then null; elsif Is_Class_Wide_Type (Etype (Pool)) then -- Case of a class-wide pool type: make a dispatching call -- to Deallocate through the class-wide Deallocate_Any. Set_Procedure_To_Call (Free_Node, RTE (RE_Deallocate_Any)); else -- Case of a specific pool type: make a statically bound call Set_Procedure_To_Call (Free_Node, Find_Prim_Op (Etype (Pool), Name_Deallocate)); end if; end if; if Present (Procedure_To_Call (Free_Node)) then -- For all cases of a Deallocate call, the back-end needs to be -- able to compute the size of the object being freed. This may -- require some adjustments for objects of dynamic size. -- -- If the type is class wide, we generate an implicit type with the -- right dynamic size, so that the deallocate call gets the right -- size parameter computed by GIGI. Same for an access to -- unconstrained packed array. if Is_Class_Wide_Type (Desig_T) or else (Is_Array_Type (Desig_T) and then not Is_Constrained (Desig_T) and then Is_Packed (Desig_T)) then declare Deref : constant Node_Id := Make_Explicit_Dereference (Loc, Duplicate_Subexpr_No_Checks (Arg)); D_Subtyp : Node_Id; D_Type : Entity_Id; begin Set_Etype (Deref, Typ); Set_Parent (Deref, Free_Node); D_Subtyp := Make_Subtype_From_Expr (Deref, Desig_T); if Nkind (D_Subtyp) in N_Has_Entity then D_Type := Entity (D_Subtyp); else D_Type := Make_Defining_Identifier (Loc, New_Internal_Name ('A')); Insert_Action (N, Make_Subtype_Declaration (Loc, Defining_Identifier => D_Type, Subtype_Indication => D_Subtyp)); Freeze_Itype (D_Type, N); end if; Set_Actual_Designated_Subtype (Free_Node, D_Type); end; end if; end if; Set_Expression (Free_Node, Free_Arg); -- Only remaining step is to set result to null, or generate a -- raise of constraint error if the target object is "not null". if Can_Never_Be_Null (Etype (Arg)) then Append_To (Stmts, Make_Raise_Constraint_Error (Loc, Reason => CE_Access_Check_Failed)); else declare Lhs : constant Node_Id := Duplicate_Subexpr_No_Checks (Arg); begin Set_Assignment_OK (Lhs); Append_To (Stmts, Make_Assignment_Statement (Loc, Name => Lhs, Expression => Make_Null (Loc))); end; end if; -- If we know the argument is non-null, then make a block statement -- that contains the required statements, no need for a test. if Arg_Known_Non_Null then Gen_Code := Make_Block_Statement (Loc, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => Stmts)); -- If the argument may be null, wrap the statements inside an IF that -- does an explicit test to exclude the null case. else Gen_Code := Make_Implicit_If_Statement (N, Condition => Make_Op_Ne (Loc, Left_Opnd => Duplicate_Subexpr (Arg), Right_Opnd => Make_Null (Loc)), Then_Statements => Stmts); end if; -- Rewrite the call Rewrite (N, Gen_Code); Analyze (N); end Expand_Unc_Deallocation; ----------------------- -- Expand_To_Address -- ----------------------- procedure Expand_To_Address (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Arg : constant Node_Id := First_Actual (N); Obj : Node_Id; begin Remove_Side_Effects (Arg); Obj := Make_Explicit_Dereference (Loc, Relocate_Node (Arg)); Rewrite (N, Make_Conditional_Expression (Loc, Expressions => New_List ( Make_Op_Eq (Loc, Left_Opnd => New_Copy_Tree (Arg), Right_Opnd => Make_Null (Loc)), New_Occurrence_Of (RTE (RE_Null_Address), Loc), Make_Attribute_Reference (Loc, Attribute_Name => Name_Address, Prefix => Obj)))); Analyze_And_Resolve (N, RTE (RE_Address)); end Expand_To_Address; ----------------------- -- Expand_To_Pointer -- ----------------------- procedure Expand_To_Pointer (N : Node_Id) is Arg : constant Node_Id := First_Actual (N); begin Rewrite (N, Unchecked_Convert_To (Etype (N), Arg)); Analyze (N); end Expand_To_Pointer; end Exp_Intr;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . B O A R D _ S U P P O R T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2006 The European Space Agency -- -- Copyright (C) 2003-2016, 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 3, 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. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- -- 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 an interface used for handling the peripherals -- available in the target board that are needed by the target-independent -- part of the run time. pragma Restrictions (No_Elaboration_Code); with System.BB.Interrupts; with System.BB.CPU_Primitives; package System.BB.Board_Support with SPARK_Mode => On is pragma Preelaborate; ----------------------------- -- Hardware Initialization -- ----------------------------- procedure Initialize_Board; -- Procedure that performs the hardware initialization of the board. -- Should be called before any other operations in this package. ------------------------------------------------ -- Clock and Timer Definitions and Primitives -- ------------------------------------------------ type Timer_Interval is mod 2 ** 32; for Timer_Interval'Size use 32; -- This type represents any interval that we can measure within a -- Clock_Interrupt_Period. Even though this type is always 32 bits, its -- actual allowed range is 0 .. Max_Timer_Interval, which may be less, -- depending on the target. function Max_Timer_Interval return Timer_Interval; pragma Inline (Max_Timer_Interval); -- The maximum value of the hardware clock. The is the maximum value that -- Read_Clock may return, and the longest interval that Set_Alarm may use. -- The hardware clock period is Max_Timer_Interval + 1 clock ticks. An -- interrupt occurs after this number of ticks. procedure Set_Alarm (Ticks : Timer_Interval); -- Set an alarm that will expire after the specified number of clock ticks. -- This cancels any previous alarm set. function Read_Clock return Timer_Interval; -- Read the value contained in the clock hardware counter, and return the -- number of ticks elapsed since the last clock interrupt, that is, since -- the clock counter was last reloaded. function Alarm_Interrupt_ID return Interrupts.Interrupt_ID; pragma Inline (Alarm_Interrupt_ID); -- Return the interrupt level to use for the alarm clock handler procedure Clear_Alarm_Interrupt; pragma Inline (Clear_Alarm_Interrupt); -- Acknowledge the alarm interrupt ---------------- -- Interrupts -- ---------------- procedure Clear_Interrupt_Request (Interrupt : System.BB.Interrupts.Interrupt_ID); pragma Inline (Clear_Interrupt_Request); -- Acknowledge the end of the interrupt function Get_Interrupt_Request (Vector : CPU_Primitives.Vector_Id) return System.BB.Interrupts.Interrupt_ID; pragma Inline (Get_Interrupt_Request); -- Function to be called from the trap handler to determine the external -- interrupt to handle for the given trap vector. If the trap does not -- correspond to an external interrupt (that is, if it is a synchronous -- trap) then interrupt level 0 (no interrupt) is returned. If the -- system shares a single trap handler for multiple external interrupts, -- this would typically query the interrupt controller for determining -- the interrupt to handle. function Priority_Of_Interrupt (Interrupt : System.BB.Interrupts.Interrupt_ID) return System.Any_Priority; pragma Inline (Priority_Of_Interrupt); -- Function to obtain the priority associated with an interrupt. It returns -- System.Any_Priority'First if Interrupt is equal to zero (no interrupt). procedure Install_Interrupt_Handler (Handler : Address; Interrupt : Interrupts.Interrupt_ID; Prio : Interrupt_Priority); -- Determine the trap vector that will be called for handling the given -- external interrupt on the current CPU, and install the given handler -- there. It is an error to try to install two different handlers for the -- vector, though this procedure may be called for multiple interrupts -- that share the same vector, as long as they use the same Handler. -- The handler expects a single argument indicating the vector called. -- This routine may need to set up the interrupt controller to enable the -- given interrupt source, so it will actually cause a trap on the CPU. -- Note, this should not actually enable interrupts, as this is only done -- through CPU_Primitives.Enable_Interrupts, which typically uses a -- processor status register. Prio is the priority for the interrupt, and -- the hardware can be programmed to use that priority. procedure Set_Current_Priority (Priority : Integer); pragma Inline (Set_Current_Priority); -- Only allow interrupts higher than the specified priority. This routine -- differes from the Enable_Interrupts/Disable_Interrupts procedures -- in CPU_Primitives in that it disables interrupts at the board level, -- rather than the CPU. Typically if board-specific support of an interrupt -- controller is needed to block interrupts of insufficient priority, this -- routine will be needed. On other systems, where the processor has this -- control, or where only a single interrupt priority is supported, this -- may be a null procedure. procedure Power_Down; pragma Inline (Power_Down); -- Power-down the current CPU. This procedure is called only by the idle -- task, with interrupt enabled. --------------------- -- Multiprocessors -- --------------------- -- The following functions define an interface for handling the "poke" -- interrupts that are used to signal other processors in an multiprocessor -- system. function Poke_Interrupt_ID return Interrupts.Interrupt_ID; pragma Inline (Poke_Interrupt_ID); -- Return the interrupt level to use for poke, or No_Interrupt if the -- system is a monoprocessor or otherwise does not require pokes. procedure Clear_Poke_Interrupt; pragma Inline (Clear_Poke_Interrupt); -- Acknowledge the Poke interrupt end System.BB.Board_Support;
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 "last chance handler" (LCH) is the routine automatically called when -- any exception is propagated. It is not intended to be called directly. The -- system-defined LCH simply stops the entire application, ungracefully. -- Users may redefine it, however, as we have done here. This one turns off -- all but the red LED, which it turns on, and then goes into an infinite -- loop. with System; package Last_Chance_Handler is procedure Last_Chance_Handler (Msg : System.Address; Line : Integer); pragma Export (C, Last_Chance_Handler, "__gnat_last_chance_handler"); pragma No_Return (Last_Chance_Handler); end Last_Chance_Handler;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ S U P E R B O U N D E D -- -- -- -- S p e c -- -- -- -- Copyright (C) 2003-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This non generic package contains most of the implementation of the -- generic package Ada.Strings.Wide_Bounded.Generic_Bounded_Length. -- It defines type Super_String as a discriminated record with the maximum -- length as the discriminant. Individual instantiations of the package -- Strings.Wide_Bounded.Generic_Bounded_Length use this type with -- an appropriate discriminant value set. with Ada.Strings.Wide_Maps; package Ada.Strings.Wide_Superbounded is pragma Preelaborate; Wide_NUL : constant Wide_Character := Wide_Character'Val (0); type Super_String (Max_Length : Positive) is record Current_Length : Natural := 0; Data : Wide_String (1 .. Max_Length) := (others => Wide_NUL); end record; -- Ada.Strings.Wide_Bounded.Generic_Bounded_Length.Wide_Bounded_String is -- derived from this type, with the constraint of the maximum length. -- The subprograms defined for Super_String are similar to those defined -- for Bounded_Wide_String, except that they have different names, so that -- they can be renamed in Ada.Strings.Wide_Bounded.Generic_Bounded_Length. function Super_Length (Source : Super_String) return Natural; -------------------------------------------------------- -- Conversion, Concatenation, and Selection Functions -- -------------------------------------------------------- function To_Super_String (Source : Wide_String; Max_Length : Natural; Drop : Truncation := Error) return Super_String; -- Note the additional parameter Max_Length, which specifies the maximum -- length setting of the resulting Super_String value. -- The following procedures have declarations (and semantics) that are -- exactly analogous to those declared in Ada.Strings.Wide_Bounded. function Super_To_String (Source : Super_String) return Wide_String; procedure Set_Super_String (Target : out Super_String; Source : Wide_String; Drop : Truncation := Error); function Super_Append (Left : Super_String; Right : Super_String; Drop : Truncation := Error) return Super_String; function Super_Append (Left : Super_String; Right : Wide_String; Drop : Truncation := Error) return Super_String; function Super_Append (Left : Wide_String; Right : Super_String; Drop : Truncation := Error) return Super_String; function Super_Append (Left : Super_String; Right : Wide_Character; Drop : Truncation := Error) return Super_String; function Super_Append (Left : Wide_Character; Right : Super_String; Drop : Truncation := Error) return Super_String; procedure Super_Append (Source : in out Super_String; New_Item : Super_String; Drop : Truncation := Error); procedure Super_Append (Source : in out Super_String; New_Item : Wide_String; Drop : Truncation := Error); procedure Super_Append (Source : in out Super_String; New_Item : Wide_Character; Drop : Truncation := Error); function Concat (Left : Super_String; Right : Super_String) return Super_String; function Concat (Left : Super_String; Right : Wide_String) return Super_String; function Concat (Left : Wide_String; Right : Super_String) return Super_String; function Concat (Left : Super_String; Right : Wide_Character) return Super_String; function Concat (Left : Wide_Character; Right : Super_String) return Super_String; function Super_Element (Source : Super_String; Index : Positive) return Wide_Character; procedure Super_Replace_Element (Source : in out Super_String; Index : Positive; By : Wide_Character); function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Wide_String; function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Super_String; procedure Super_Slice (Source : Super_String; Target : out Super_String; Low : Positive; High : Natural); function "=" (Left : Super_String; Right : Super_String) return Boolean; function Equal (Left : Super_String; Right : Super_String) return Boolean renames "="; function Equal (Left : Super_String; Right : Wide_String) return Boolean; function Equal (Left : Wide_String; Right : Super_String) return Boolean; function Less (Left : Super_String; Right : Super_String) return Boolean; function Less (Left : Super_String; Right : Wide_String) return Boolean; function Less (Left : Wide_String; Right : Super_String) return Boolean; function Less_Or_Equal (Left : Super_String; Right : Super_String) return Boolean; function Less_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean; function Less_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean; function Greater (Left : Super_String; Right : Super_String) return Boolean; function Greater (Left : Super_String; Right : Wide_String) return Boolean; function Greater (Left : Wide_String; Right : Super_String) return Boolean; function Greater_Or_Equal (Left : Super_String; Right : Super_String) return Boolean; function Greater_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean; function Greater_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean; ---------------------- -- Search Functions -- ---------------------- function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Super_Index_Non_Blank (Source : Super_String; Going : Direction := Forward) return Natural; function Super_Index_Non_Blank (Source : Super_String; From : Positive; Going : Direction := Forward) return Natural; function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural; function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural; function Super_Count (Source : Super_String; Set : Wide_Maps.Wide_Character_Set) return Natural; procedure Super_Find_Token (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Membership; First : out Positive; Last : out Natural); ------------------------------------ -- String Translation Subprograms -- ------------------------------------ function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping) return Super_String; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping); function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Super_String; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function); --------------------------------------- -- String Transformation Subprograms -- --------------------------------------- function Super_Replace_Slice (Source : Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Truncation := Error) return Super_String; procedure Super_Replace_Slice (Source : in out Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Truncation := Error); function Super_Insert (Source : Super_String; Before : Positive; New_Item : Wide_String; Drop : Truncation := Error) return Super_String; procedure Super_Insert (Source : in out Super_String; Before : Positive; New_Item : Wide_String; Drop : Truncation := Error); function Super_Overwrite (Source : Super_String; Position : Positive; New_Item : Wide_String; Drop : Truncation := Error) return Super_String; procedure Super_Overwrite (Source : in out Super_String; Position : Positive; New_Item : Wide_String; Drop : Truncation := Error); function Super_Delete (Source : Super_String; From : Positive; Through : Natural) return Super_String; procedure Super_Delete (Source : in out Super_String; From : Positive; Through : Natural); --------------------------------- -- String Selector Subprograms -- --------------------------------- function Super_Trim (Source : Super_String; Side : Trim_End) return Super_String; procedure Super_Trim (Source : in out Super_String; Side : Trim_End); function Super_Trim (Source : Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set) return Super_String; procedure Super_Trim (Source : in out Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set); function Super_Head (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) return Super_String; procedure Super_Head (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error); function Super_Tail (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) return Super_String; procedure Super_Tail (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error); ------------------------------------ -- String Constructor Subprograms -- ------------------------------------ -- Note: in some of the following routines, there is an extra parameter -- Max_Length which specifies the value of the maximum length for the -- resulting Super_String value. function Times (Left : Natural; Right : Wide_Character; Max_Length : Positive) return Super_String; -- Note the additional parameter Max_Length function Times (Left : Natural; Right : Wide_String; Max_Length : Positive) return Super_String; -- Note the additional parameter Max_Length function Times (Left : Natural; Right : Super_String) return Super_String; function Super_Replicate (Count : Natural; Item : Wide_Character; Drop : Truncation := Error; Max_Length : Positive) return Super_String; -- Note the additional parameter Max_Length function Super_Replicate (Count : Natural; Item : Wide_String; Drop : Truncation := Error; Max_Length : Positive) return Super_String; -- Note the additional parameter Max_Length function Super_Replicate (Count : Natural; Item : Super_String; Drop : Truncation := Error) return Super_String; private -- Pragma Inline declarations pragma Inline ("="); pragma Inline (Less); pragma Inline (Less_Or_Equal); pragma Inline (Greater); pragma Inline (Greater_Or_Equal); pragma Inline (Concat); pragma Inline (Super_Count); pragma Inline (Super_Element); pragma Inline (Super_Find_Token); pragma Inline (Super_Index); pragma Inline (Super_Index_Non_Blank); pragma Inline (Super_Length); pragma Inline (Super_Replace_Element); pragma Inline (Super_Slice); pragma Inline (Super_To_String); end Ada.Strings.Wide_Superbounded;
package ascan_dfa is aflex_debug : boolean := false; yytext_ptr : integer; -- points to start of yytext in buffer -- yy_ch_buf has to be 2 characters longer than YY_BUF_SIZE because we need -- to put in 2 end-of-buffer characters (this is explained where it is -- done) at the end of yy_ch_buf YY_READ_BUF_SIZE : constant integer := 8192; YY_BUF_SIZE : constant integer := YY_READ_BUF_SIZE * 2; -- size of input buffer type unbounded_character_array is array(integer range <>) of character; subtype ch_buf_type is unbounded_character_array(0..YY_BUF_SIZE + 1); yy_ch_buf : ch_buf_type; yy_cp, yy_bp : integer; -- yy_hold_char holds the character lost when yytext is formed yy_hold_char : character; yy_c_buf_p : integer; -- points to current character in buffer function YYText return string; function YYLength return integer; procedure YY_DO_BEFORE_ACTION; --These variables are needed between calls to YYLex. yy_init : boolean := true; -- do we need to initialize YYLex? yy_start : integer := 0; -- current start state number subtype yy_state_type is integer; yy_last_accepting_state : yy_state_type; yy_last_accepting_cpos : integer; end ascan_dfa; with ascan_dfa; use ascan_dfa; package body ascan_dfa is function YYText return string is i : integer; str_loc : integer := 1; buffer : string(1..1024); EMPTY_STRING : constant string := ""; begin -- find end of buffer i := yytext_ptr; while ( yy_ch_buf(i) /= ASCII.NUL ) loop buffer(str_loc ) := yy_ch_buf(i); i := i + 1; str_loc := str_loc + 1; end loop; -- return yy_ch_buf(yytext_ptr.. i - 1); if (str_loc < 2) then return EMPTY_STRING; else return buffer(1..str_loc-1); end if; end; -- returns the length of the matched text function YYLength return integer is begin return yy_cp - yy_bp; end YYLength; -- done after the current pattern has been matched and before the -- corresponding action - sets up yytext procedure YY_DO_BEFORE_ACTION is begin yytext_ptr := yy_bp; yy_hold_char := yy_ch_buf(yy_cp); yy_ch_buf(yy_cp) := ASCII.NUL; yy_c_buf_p := yy_cp; end YY_DO_BEFORE_ACTION; end ascan_dfa;
package FLTK.Widgets.Inputs.Integer is type Integer_Input is new Input with private; type Integer_Input_Reference (Data : not null access Integer_Input'Class) is limited null record with Implicit_Dereference => Data; package Forge is function Create (X, Y, W, H : in Standard.Integer; Text : in String) return Integer_Input; end Forge; function Get_Value (This : in Integer_Input) return Standard.Integer; procedure Draw (This : in out Integer_Input); function Handle (This : in out Integer_Input; Event : in Event_Kind) return Event_Outcome; private type Integer_Input is new Input with null record; overriding procedure Finalize (This : in out Integer_Input); pragma Inline (Get_Value); pragma Inline (Draw); pragma Inline (Handle); end FLTK.Widgets.Inputs.Integer;
with Registre; use Registre; with Arbre_Binaire; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package Arbre_Genealogique is type T_Arbre_Gen is private; Emplacement_Reserve_Exception_Gen : Exception; Cle_Absente_Exception_Gen : Exception; Cle_Presente_Exception_Gen : Exception; -- Initialiser un Arbre. procedure Initialiser_Gen(Arbre: out T_Arbre_Gen; Reg : out T_Registre; Nom : in unbounded_string; Prenom : in unbounded_string; Jour_N : in Integer; Mois_N : in Integer; Annee_N : in Integer; Sexe : in Character); -- Est-ce qu'un Arbre est vide ? -- Paramètre : Arbre L'Arbre que l'on veut tester. function Est_Vide_Gen (Arbre : in T_Arbre_Gen) return Boolean; -- Obtenir le nombre de fils à partir d'un noeud donné (lui compris). -- Paramètres : -- Arbre L'Arbre dans lequel on va effectuer le comptage. -- Cle La clé de l'individu à partir duquel on compte. -- Exception: Cle_Absente_Exception si Clé n'est pas utilisée l'Arbre. function Nombre_Ancetre (Arbre : in T_Arbre_Gen; Cle : in Integer) return Integer with Post => Nombre_Ancetre'Result >= 1; -- Insérer un parent à un noeud dans l'Arbre. -- Paramètres : -- Arbre : l'Arbre dans lequel on ajoute un noeud. -- Registre : registre dans lequel on insère les données -- Cle_Individu : La cle du noeud auquel on ajoute un Pere -- Nom : Chaine du qui représente le nom du parent -- Prénom : Chaine qui représente le prénom du parent -- Jour_N : Entier jour de naissance du parent -- Mois_N : Entier mois de naissance du parent -- Annee_N : Entier année de naissance du parent -- Sexe : Caractère F pour Femelle (ie : Mère) et M pour Mâle (ie : Père) -- Exception : Cle_Presente_Exception si la clé est déjà dans l'Arbre. procedure Ajouter_Parent (Arbre : in out T_Arbre_Gen; Reg : in out T_Registre; Cle_Individu : in Integer; Nom : in unbounded_string; Prenom : in unbounded_string; Jour_N : in Integer; Mois_N : in Integer; Annee_N : in Integer; Sexe : in Character) with Post => Nombre_Ancetre (Arbre, Cle_Individu) = Nombre_Ancetre (Arbre, Cle_Individu)'Old + 1; -- un élément de plus -- Supprimer le noeud associé à la clé dans l'Arbre et le sous-Arbre dont il est la base. -- Paramètres : -- Arbre l'Arbre dans lequel on suprimme un sous Arbre. -- Registre registre dans lequel on va supprimer les données -- Individu cle du noeud à la base du sous-Arbre -- Exception : Cle_Absente_Exception si Clé n'est pas utilisée dans l'Arbre. procedure Supprimer (Arbre : in out T_Arbre_Gen; Reg : in out T_Registre; Individu : in Integer); --Post => Nombre_Ancetre (Arbre, Individu) = Nombre_Ancetre (Arbre, Individu)'Old - 1; -- un élément de moins -- Supprimer tous les éléments d'un Arbre. -- Parametre : -- Arbre l'Arbre que l'on veut suprimmer. -- Registre registre que l'on veut supprimer. -- Doit être utilisée dès qu'on sait qu'un Arbre et son registre associé ne seront plus utilisés. procedure Vider (Arbre : in out T_Arbre_Gen; Reg : in out T_Registre) with Post => Est_Vide_Gen (Arbre); -- Affiche tous les ancêtres situés à une certaine génération d'un individu donné. -- Paramètres : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres -- Individu : clé de l'individu à partir duquel on commence à compter les générations -- Generation : entier qui donne le nombre de génération à compter afin d'afficher les ancêtres -- Exception : Cle_Absente_Exception si Individu n'est pas dans l'Arbre. procedure Ancetre_Generation_X (Arbre : in T_Arbre_Gen; Individu : in Integer; Generation : in Integer); -- Affiche tous les ancêtres des N générations suivantes à partir d'un individu donné. -- Paramètres : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres -- Individu : clé de l'individu à partir duquel on commence à compter les générations -- N : entier qui donne le nombre de génération afin d'afficher les ancêtres -- Exception : Cle_Absente_Exception si Individu n'est pas dans l'Arbre. procedure Ancetres_Sur_N_Generations (Arbre : in T_Arbre_Gen; Individu : in Integer; N : in Integer); -- Affiche tous les ancêtres de Individu1 et Individu2 ayant le même nom et prénom. -- Paramètres : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres -- Individu1 : clé du premier individu à partir duquel on commence à regarder les ancêtres -- Individu2 : clé du second individu à partir duquel on commence à regarder les ancêtres -- Exception : Cle_Absente_Exception si Individu n'est pas dans l'Arbre. procedure Ancetres_Homonymes (Arbre : in T_Arbre_Gen; Reg : in T_Registre; Individu1 : in Integer; Individu2 : in Integer); -- Affiche tous les individus qui n'ont ni père ni mère. -- Paramètre : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres procedure Afficher_Orphelins (Arbre : in T_Arbre_Gen); -- Affiche tous les individus qui n'ont soit pas de père soit pas de mère. -- Paramètre : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres procedure Afficher_Monoparental (Arbre : in T_Arbre_Gen); -- Affiche tous les individus qui ont un père et une mère. -- Paramètre : -- Arbre : l'Arbre dans lequel on va chercher les ancêtres procedure Afficher_Biparental (Arbre : in T_Arbre_Gen); procedure Afficher_Arbre_Genealogique (Arbre : in T_Arbre_Gen); procedure Afficher_Cle_Genealogique (Arbre : in T_Arbre_Gen); private package Arbre is -- On instancie un Arbre binaire new Arbre_Binaire (T_Cle => Integer); use Arbre; type T_Arbre_Gen is new T_Pointeur_Binaire; end Arbre_Genealogique;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms.Field_Types.RegExp -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.12 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Interfaces.C; use Interfaces.C; with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms.Field_Types.RegExp is procedure Set_Field_Type (Fld : Field; Typ : Regular_Expression_Field) is function Set_Ftyp (F : Field := Fld; Arg1 : char_array) return Eti_Error; pragma Import (C, Set_Ftyp, "set_field_type_regexp"); begin Eti_Exception (Set_Ftyp (Arg1 => To_C (Typ.Regular_Expression.all))); Wrap_Builtin (Fld, Typ); end Set_Field_Type; end Terminal_Interface.Curses.Forms.Field_Types.RegExp;
with Ada.Text_IO; use Ada.Text_IO; with Libadalang.Analysis; use Libadalang.Analysis; procedure Parse_Print is Ctx : Analysis_Context := Create_Context; Unit : Analysis_Unit := Ctx.Get_From_File ("test.adb"); begin Unit.Print; Put_Line ("Done."); end Parse_Print;
----------------------------------------------------------------------- -- awa.users -- User registration, authentication processes -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with AWA.Users.Models; with AWA.Users.Principals; with AWA.Permissions.Services; with AWA.Modules; with AWA.Modules.Lifecycles; with AWA.Events; with Security.Auth; with Security.Random; with ADO; with ADO.Sessions; -- == Introduction == -- The *users* module provides a *users* service which controls the user data model. -- -- == Events == -- The *users* module exposes a number of events which are posted when some action -- are performed at the service level. -- -- === user-register === -- This event is posted when a new user is registered in the application. -- It can be used to send a registration email. -- -- === user-create === -- This event is posted when a new user is created. It can be used to trigger -- the pre-initialization of the application for the new user. -- -- === user-lost-password === -- This event is posted when a user asks for a password reset through an -- anonymous form. It is intended to be used to send the reset password email. -- -- === user-reset-password === -- This event is posted when a user has successfully reset his password. -- It can be used to send an email. -- package AWA.Users.Services is use AWA.Users.Models; package User_Create_Event is new AWA.Events.Definition (Name => "user-create"); package User_Register_Event is new AWA.Events.Definition (Name => "user-register"); package User_Lost_Password_Event is new AWA.Events.Definition (Name => "user-lost-password"); package User_Reset_Password_Event is new AWA.Events.Definition (Name => "user-reset-password"); package User_Lifecycle is new AWA.Modules.Lifecycles (Element_Type => AWA.Users.Models.User_Ref'Class); subtype Listener is User_Lifecycle.Listener; NAME : constant String := "User_Service"; Not_Found : exception; User_Exist : exception; -- The session is an authenticate session. The user authenticated using password or OpenID. -- When the user logout, this session is closed as well as any connection session linked to -- the authenticate session. AUTH_SESSION_TYPE : constant Integer := 1; -- The session is a connection session. It is linked to an authenticate session. -- This session can be closed automatically due to a timeout or user's inactivity. -- The AID cookie refers to this connection session to create a new connection session. -- Once re-connecting is done, the connection session refered to by AID is marked -- as <b<USED_SESSION_TYPE</b> and a new AID cookie with the new connection session is -- returned to the user. CONNECT_SESSION_TYPE : constant Integer := 0; -- The session is a connection session whose associated AID cookie has been used. -- This session cannot be used to re-connect a user through the AID cookie. USED_SESSION_TYPE : constant Integer := 2; -- Get the user name from the email address. -- Returns the possible user name from his email address. function Get_Name_From_Email (Email : in String) return String; type User_Service is new AWA.Modules.Module_Manager with private; type User_Service_Access is access all User_Service'Class; -- Build the authenticate cookie. The cookie is signed using HMAC-SHA1 with a private key. function Get_Authenticate_Cookie (Model : in User_Service; Id : in ADO.Identifier) return String; -- Get the authenticate identifier from the cookie. -- Verify that the cookie is valid, the signature is correct. -- Returns the identified or NO_IDENTIFIER function Get_Authenticate_Id (Model : in User_Service; Cookie : in String) return ADO.Identifier; -- Get the password hash. The password is signed using HMAC-SHA1 with the salt. function Get_Password_Hash (Model : in User_Service; Password : in String; Salt : in String) return String; -- Create a user in the database with the given user information and -- the associated email address. Verify that no such user already exist. -- Raises User_Exist exception if a user with such email is already registered. procedure Create_User (Model : in out User_Service; User : in out User_Ref'Class; Email : in out Email_Ref'Class); -- Create a user in the database with the given user information and -- the associated email address and for the given access key. The access key is first -- verified and the user instance associated with it is retrieved. Verify that the email -- address is unique and can be used by the user. Since the access key is verified, -- grant immediately the access by opening a session and setting up the principal instance. -- Raises User_Exist exception if a user with such email is already registered. procedure Create_User (Model : in out User_Service; User : in out User_Ref'Class; Email : in out Email_Ref'Class; Key : in String; IpAddr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Load the user and email address from the invitation key. procedure Load_User (Model : in out User_Service; User : in out User_Ref'Class; Email : in out Email_Ref'Class; Key : in String); -- Verify the access key and retrieve the user associated with that key. -- Starts a new session associated with the given IP address. -- The authenticated user is identified by a principal instance allocated -- and returned in <b>Principal</b>. -- Raises Not_Found if the access key does not exist. procedure Verify_User (Model : in User_Service; Key : in String; IpAddr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Authenticate the user with his email address and his password. -- If the user is authenticated, return the user information and -- create a new session. The IP address of the connection is saved -- in the session. -- Raises Not_Found exception if the user is not recognized procedure Authenticate (Model : in User_Service; Email : in String; Password : in String; IpAddr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Authenticate the user with his OpenID identifier. The authentication process -- was made by an external OpenID provider. If the user does not yet exists in -- the database, a record is created for him. Create a new session for the user. -- The IP address of the connection is saved in the session. -- Raises Not_Found exception if the user is not recognized procedure Authenticate (Model : in User_Service; Auth : in Security.Auth.Authentication; IpAddr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Authenticate the user with the authenticate cookie generated from a previous authenticate -- session. If the cookie has the correct signature, matches a valid session, -- return the user information and create a new session. The IP address of the connection -- is saved in the session. -- Raises Not_Found exception if the user is not recognized procedure Authenticate (Model : in User_Service; Cookie : in String; Ip_Addr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Start the lost password process for a user. Find the user having -- the given email address and send that user a password reset key -- in an email. -- Raises Not_Found exception if no user with such email exist procedure Lost_Password (Model : in out User_Service; Email : in String); -- Reset the password of the user associated with the secure key. -- Raises Not_Found if there is no key or if the user does not have any email procedure Reset_Password (Model : in out User_Service; Key : in String; Password : in String; IpAddr : in String; Principal : out AWA.Users.Principals.Principal_Access); -- Verify that the user session identified by <b>Id</b> is valid and still active. -- Returns the user and the session objects. -- Raises Not_Found if the session does not exist or was closed. procedure Verify_Session (Model : in User_Service; Id : in ADO.Identifier; User : out User_Ref'Class; Session : out Session_Ref'Class); -- Closes the session identified by <b>Id</b>. The session identified should refer to -- a valid and not closed connection session. -- When <b>Logout</b> is set, the authenticate session is also closed. The connection -- sessions associated with the authenticate session are also closed. -- Raises <b>Not_Found</b> if the session is invalid or already closed. procedure Close_Session (Model : in User_Service; Id : in ADO.Identifier; Logout : in Boolean := False); -- Create and generate a new access key for the user. The access key is saved in the -- database and it will expire after the expiration delay. procedure Create_Access_Key (Model : in out User_Service; User : in AWA.Users.Models.User_Ref'Class; Key : in out AWA.Users.Models.Access_Key_Ref; Kind : in AWA.Users.Models.Key_Type; Expire : in Duration; Session : in out ADO.Sessions.Master_Session); procedure Send_Alert (Model : in User_Service; Kind : in AWA.Events.Event_Index; User : in User_Ref'Class; Props : in out AWA.Events.Module_Event); -- Initialize the user service. overriding procedure Initialize (Model : in out User_Service; Module : in AWA.Modules.Module'Class); private function Create_Key (Model : in out User_Service; Number : in ADO.Identifier) return String; procedure Create_Session (Model : in User_Service; DB : in out ADO.Sessions.Master_Session; Session : out Session_Ref'Class; User : in User_Ref'Class; Ip_Addr : in String; Principal : out AWA.Users.Principals.Principal_Access); type User_Service is new AWA.Modules.Module_Manager with record Server_Id : Integer := 0; Random : Security.Random.Generator; Auth_Key : Ada.Strings.Unbounded.Unbounded_String; Permissions : AWA.Permissions.Services.Permission_Manager_Access; end record; end AWA.Users.Services;
----------------------------------------------------------------------- -- asf-helpers -- Helper packages to write ASF applications -- Copyright (C) 2012 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 ASF.Helpers is end ASF.Helpers;
-- Copyright 2016 Steven Stewart-Gallus -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -- implied. See the License for the specific language governing -- permissions and limitations under the License. with Interfaces.C; with Libc.Stdint; with Linted.Errors; package Linted.GPU with Spark_Mode => Off is pragma Preelaborate; pragma Link_With ("-lgpu -lEGL -lm"); subtype X11_Window is Libc.Stdint.uint_fast32_t; -- lntd/gpu.h:29 -- skipped empty struct lntd_gpu_context type Context is limited private; type Context_Access is access all Context; type Update is record Z_Rotation : Interfaces.C.C_float; -- lntd/gpu.h:34 X_Rotation : Interfaces.C.C_float; -- lntd/gpu.h:35 X_Position : Interfaces.C.C_float; -- lntd/gpu.h:37 Y_Position : Interfaces.C.C_float; -- lntd/gpu.h:38 Z_Position : Interfaces.C.C_float; -- lntd/gpu.h:39 MX_Position : Interfaces.C.C_float; -- lntd/gpu.h:41 MY_Position : Interfaces.C.C_float; -- lntd/gpu.h:42 MZ_Position : Interfaces.C.C_float; -- lntd/gpu.h:43 end record; function Context_Create (Con : out Context_Access) return Errors.Error; -- lntd/gpu.h:47 pragma Import (C, Context_Create, "lntd_gpu_context_create"); function Context_Destroy (Con : Context_Access) return Linted.Errors.Error; -- lntd/gpu.h:49 pragma Import (C, Context_Destroy, "lntd_gpu_context_destroy"); function Set_X11_Window (Con : Context_Access; Window : X11_Window) return Linted.Errors.Error; -- lntd/gpu.h:51 pragma Import (C, Set_X11_Window, "lntd_gpu_set_x11_window"); function Remove_Window (Con : Context_Access) return Linted.Errors.Error; -- lntd/gpu.h:53 pragma Import (C, Remove_Window, "lntd_gpu_remove_window"); procedure Update_State (Con : Context_Access; gpu_update : Update); -- lntd/gpu.h:55 pragma Import (C, Update_State, "lntd_gpu_update_state"); procedure Resize (Con : Context_Access; width : Interfaces.C.unsigned; height : Interfaces.C.unsigned); -- lntd/gpu.h:58 pragma Import (C, Resize, "lntd_gpu_resize"); procedure Hide (Con : Context_Access); -- lntd/gpu.h:61 pragma Import (C, Hide, "lntd_gpu_hide"); procedure Show (Con : Context_Access); -- lntd/gpu.h:62 pragma Import (C, Show, "lntd_gpu_show"); private type Context is limited record null; end record; end Linted.GPU;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S N A M E S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- 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 Namet; use Namet; package body Snames is -- Table of names to be set by Initialize. Each name is terminated by a -- single #, and the end of the list is marked by a null entry, i.e. by -- two # marks in succession. Note that the table does not include the -- entries for a-z, since these are initialized by Namet itself. Preset_Names : constant String := "_parent#" & "_tag#" & "off#" & "space#" & "time#" & "_init_proc#" & "_size#" & "_abort_signal#" & "_address_resolver#" & "_assign#" & "_chain#" & "_clean#" & "_controller#" & "_entry_bodies#" & "_expunge#" & "_final_list#" & "_idepth#" & "_init#" & "_local_final_list#" & "_master#" & "_object#" & "_priority#" & "_service#" & "_tags#" & "_task#" & "_task_id#" & "_task_info#" & "_task_name#" & "_trace_sp#" & "initialize#" & "adjust#" & "finalize#" & "next#" & "prev#" & "_deep_adjust#" & "_equality#" & "_deep_finalize#" & "_deep_initialize#" & "_input#" & "_output#" & "_ras_access#" & "_ras_dereference#" & "_read#" & "_rep_to_pos#" & "_write#" & "allocate#" & "deallocate#" & "dereference#" & "decimal_io#" & "enumeration_io#" & "fixed_io#" & "float_io#" & "integer_io#" & "modular_io#" & "a_textio#" & "a_witeio#" & "const#" & "<error>#" & "go#" & "put#" & "put_line#" & "to#" & "finalization#" & "finalization_root#" & "interfaces#" & "standard#" & "system#" & "text_io#" & "wide_text_io#" & "addr#" & "async#" & "get_active_partition_id#" & "get_rci_package_receiver#" & "origin#" & "params#" & "partition#" & "partition_interface#" & "ras#" & "rci_name#" & "receiver#" & "result#" & "rpc#" & "subp_id#" & "Oabs#" & "Oand#" & "Omod#" & "Onot#" & "Oor#" & "Orem#" & "Oxor#" & "Oeq#" & "One#" & "Olt#" & "Ole#" & "Ogt#" & "Oge#" & "Oadd#" & "Osubtract#" & "Oconcat#" & "Omultiply#" & "Odivide#" & "Oexpon#" & "ada_83#" & "ada_95#" & "c_pass_by_copy#" & "component_alignment#" & "discard_names#" & "elaboration_checks#" & "eliminate#" & "extend_system#" & "extensions_allowed#" & "external_name_casing#" & "float_representation#" & "initialize_scalars#" & "license#" & "locking_policy#" & "long_float#" & "no_run_time#" & "normalize_scalars#" & "polling#" & "propagate_exceptions#" & "queuing_policy#" & "ravenscar#" & "restricted_run_time#" & "restrictions#" & "reviewable#" & "source_file_name#" & "style_checks#" & "suppress#" & "task_dispatching_policy#" & "unsuppress#" & "use_vads_size#" & "warnings#" & "validity_checks#" & "abort_defer#" & "all_calls_remote#" & "annotate#" & "assert#" & "asynchronous#" & "atomic#" & "atomic_components#" & "attach_handler#" & "comment#" & "common_object#" & "complex_representation#" & "controlled#" & "convention#" & "cpp_class#" & "cpp_constructor#" & "cpp_virtual#" & "cpp_vtable#" & "debug#" & "elaborate#" & "elaborate_all#" & "elaborate_body#" & "export#" & "export_exception#" & "export_function#" & "export_object#" & "export_procedure#" & "export_valued_procedure#" & "external#" & "finalize_storage_only#" & "ident#" & "import#" & "import_exception#" & "import_function#" & "import_object#" & "import_procedure#" & "import_valued_procedure#" & "inline#" & "inline_always#" & "inline_generic#" & "inspection_point#" & "interface#" & "interface_name#" & "interrupt_handler#" & "interrupt_priority#" & "java_constructor#" & "java_interface#" & "link_with#" & "linker_alias#" & "linker_options#" & "linker_section#" & "list#" & "machine_attribute#" & "main#" & "main_storage#" & "memory_size#" & "no_return#" & "optimize#" & "pack#" & "page#" & "passive#" & "preelaborate#" & "priority#" & "psect_object#" & "pure#" & "pure_function#" & "remote_call_interface#" & "remote_types#" & "share_generic#" & "shared#" & "shared_passive#" & "source_reference#" & "stream_convert#" & "subtitle#" & "suppress_all#" & "suppress_debug_info#" & "suppress_initialization#" & "system_name#" & "task_info#" & "task_name#" & "task_storage#" & "time_slice#" & "title#" & "unchecked_union#" & "unimplemented_unit#" & "unreserve_all_interrupts#" & "volatile#" & "volatile_components#" & "weak_external#" & "ada#" & "asm#" & "assembler#" & "cobol#" & "cpp#" & "dll#" & "fortran#" & "intrinsic#" & "java#" & "stdcall#" & "stubbed#" & "win32#" & "as_is#" & "body_file_name#" & "casing#" & "code#" & "component#" & "component_size_4#" & "copy#" & "d_float#" & "descriptor#" & "default#" & "dot_replacement#" & "dynamic#" & "entity#" & "external_name#" & "first_optional_parameter#" & "form#" & "g_float#" & "gcc#" & "gnat#" & "gpl#" & "ieee_float#" & "internal#" & "link_name#" & "lowercase#" & "max_size#" & "mechanism#" & "mixedcase#" & "modified_gpl#" & "name#" & "nca#" & "no#" & "on#" & "parameter_types#" & "reference#" & "restricted#" & "result_mechanism#" & "result_type#" & "sb#" & "section#" & "semaphore#" & "spec_file_name#" & "static#" & "stack_size#" & "subunit_file_name#" & "task_stack_size_default#" & "task_type#" & "time_slicing_enabled#" & "top_guard#" & "uba#" & "ubs#" & "ubsb#" & "unit_name#" & "unknown#" & "unrestricted#" & "uppercase#" & "vax_float#" & "vms#" & "working_storage#" & "abort_signal#" & "access#" & "address#" & "address_size#" & "aft#" & "alignment#" & "asm_input#" & "asm_output#" & "ast_entry#" & "bit#" & "bit_order#" & "bit_position#" & "body_version#" & "callable#" & "caller#" & "code_address#" & "component_size#" & "compose#" & "constrained#" & "count#" & "default_bit_order#" & "definite#" & "delta#" & "denorm#" & "digits#" & "elaborated#" & "emax#" & "enum_rep#" & "epsilon#" & "exponent#" & "external_tag#" & "first#" & "first_bit#" & "fixed_value#" & "fore#" & "has_discriminants#" & "identity#" & "img#" & "integer_value#" & "large#" & "last#" & "last_bit#" & "leading_part#" & "length#" & "machine_emax#" & "machine_emin#" & "machine_mantissa#" & "machine_overflows#" & "machine_radix#" & "machine_rounds#" & "machine_size#" & "mantissa#" & "max_interrupt_priority#" & "max_priority#" & "max_size_in_storage_elements#" & "maximum_alignment#" & "mechanism_code#" & "model_emin#" & "model_epsilon#" & "model_mantissa#" & "model_small#" & "modulus#" & "null_parameter#" & "object_size#" & "partition_id#" & "passed_by_reference#" & "pos#" & "position#" & "range#" & "range_length#" & "round#" & "safe_emax#" & "safe_first#" & "safe_large#" & "safe_last#" & "safe_small#" & "scale#" & "scaling#" & "signed_zeros#" & "size#" & "small#" & "storage_size#" & "storage_unit#" & "tag#" & "terminated#" & "tick#" & "to_address#" & "type_class#" & "uet_address#" & "unbiased_rounding#" & "unchecked_access#" & "universal_literal_string#" & "unrestricted_access#" & "vads_size#" & "val#" & "valid#" & "value_size#" & "version#" & "wchar_t_size#" & "wide_width#" & "width#" & "word_size#" & "adjacent#" & "ceiling#" & "copy_sign#" & "floor#" & "fraction#" & "image#" & "input#" & "machine#" & "max#" & "min#" & "model#" & "pred#" & "remainder#" & "rounding#" & "succ#" & "truncation#" & "value#" & "wide_image#" & "wide_value#" & "output#" & "read#" & "write#" & "elab_body#" & "elab_spec#" & "storage_pool#" & "base#" & "class#" & "ceiling_locking#" & "inheritance_locking#" & "fifo_queuing#" & "priority_queuing#" & "fifo_within_priorities#" & "access_check#" & "accessibility_check#" & "discriminant_check#" & "division_check#" & "elaboration_check#" & "index_check#" & "length_check#" & "overflow_check#" & "range_check#" & "storage_check#" & "tag_check#" & "all_checks#" & "abort#" & "abs#" & "accept#" & "and#" & "all#" & "array#" & "at#" & "begin#" & "body#" & "case#" & "constant#" & "declare#" & "delay#" & "do#" & "else#" & "elsif#" & "end#" & "entry#" & "exception#" & "exit#" & "for#" & "function#" & "generic#" & "goto#" & "if#" & "in#" & "is#" & "limited#" & "loop#" & "mod#" & "new#" & "not#" & "null#" & "of#" & "or#" & "others#" & "out#" & "package#" & "pragma#" & "private#" & "procedure#" & "raise#" & "record#" & "rem#" & "renames#" & "return#" & "reverse#" & "select#" & "separate#" & "subtype#" & "task#" & "terminate#" & "then#" & "type#" & "use#" & "when#" & "while#" & "with#" & "xor#" & "divide#" & "enclosing_entity#" & "exception_information#" & "exception_message#" & "exception_name#" & "file#" & "import_address#" & "import_largest_value#" & "import_value#" & "is_negative#" & "line#" & "rotate_left#" & "rotate_right#" & "shift_left#" & "shift_right#" & "shift_right_arithmetic#" & "source_location#" & "unchecked_conversion#" & "unchecked_deallocation#" & "abstract#" & "aliased#" & "protected#" & "until#" & "requeue#" & "tagged#" & "raise_exception#" & "binder#" & "builder#" & "compiler#" & "cross_reference#" & "default_switches#" & "exec_dir#" & "extends#" & "finder#" & "gnatls#" & "gnatstub#" & "implementation#" & "implementation_exceptions#" & "implementation_suffix#" & "languages#" & "library_dir#" & "library_elaboration#" & "library_kind#" & "library_name#" & "library_version#" & "linker#" & "naming#" & "object_dir#" & "project#" & "separate_suffix#" & "source_dirs#" & "source_files#" & "source_list_file#" & "specification#" & "specification_exceptions#" & "specification_suffix#" & "switches#" & "#"; --------------------- -- Generated Names -- --------------------- -- This section lists the various cases of generated names which are -- built from existing names by adding unique leading and/or trailing -- upper case letters. In some cases these names are built recursively, -- in particular names built from types may be built from types which -- themselves have generated names. In this list, xxx represents an -- existing name to which identifying letters are prepended or appended, -- and a trailing n represents a serial number in an external name that -- has some semantic significance (e.g. the n'th index type of an array). -- xxxA access type for formal xxx in entry param record (Exp_Ch9) -- xxxB tag table for tagged type xxx (Exp_Ch3) -- xxxB task body procedure for task xxx (Exp_Ch9) -- xxxD dispatch table for tagged type xxx (Exp_Ch3) -- xxxD discriminal for discriminant xxx (Sem_Ch3) -- xxxDn n'th discr check function for rec type xxx (Exp_Ch3) -- xxxE elaboration boolean flag for task xxx (Exp_Ch9) -- xxxE dispatch table pointer type for tagged type xxx (Exp_Ch3) -- xxxE parameters for accept body for entry xxx (Exp_Ch9) -- xxxFn n'th primitive of a tagged type (named xxx) (Exp_Ch3) -- xxxI initialization procedure for type xxx (Exp_Ch3) -- xxxJ tag table type index for tagged type xxx (Exp_Ch3) -- xxxM master Id value for access type xxx (Exp_Ch3) -- xxxP tag table pointer type for tagged type xxx (Exp_Ch3) -- xxxP parameter record type for entry xxx (Exp_Ch9) -- xxxPA access to parameter record type for entry xxx (Exp_Ch9) -- xxxPn pointer type for n'th primitive of tagged type xxx (Exp_Ch3) -- xxxR dispatch table pointer for tagged type xxx (Exp_Ch3) -- xxxT tag table type for tagged type xxx (Exp_Ch3) -- xxxT literal table for enumeration type xxx (Sem_Ch3) -- xxxV type for task value record for task xxx (Exp_Ch9) -- xxxX entry index constant (Exp_Ch9) -- xxxY dispatch table type for tagged type xxx (Exp_Ch3) -- xxxZ size variable for task xxx (Exp_Ch9) -- Implicit type names -- TxxxT type of literal table for enumeration type xxx (Sem_Ch3) -- (list not yet complete ???) ---------------------- -- Get_Attribute_Id -- ---------------------- function Get_Attribute_Id (N : Name_Id) return Attribute_Id is begin return Attribute_Id'Val (N - First_Attribute_Name); end Get_Attribute_Id; ------------------ -- Get_Check_Id -- ------------------ function Get_Check_Id (N : Name_Id) return Check_Id is begin return Check_Id'Val (N - First_Check_Name); end Get_Check_Id; ----------------------- -- Get_Convention_Id -- ----------------------- function Get_Convention_Id (N : Name_Id) return Convention_Id is begin case N is when Name_Ada => return Convention_Ada; when Name_Asm => return Convention_Assembler; when Name_Assembler => return Convention_Assembler; when Name_C => return Convention_C; when Name_COBOL => return Convention_COBOL; when Name_CPP => return Convention_CPP; when Name_DLL => return Convention_Stdcall; when Name_Fortran => return Convention_Fortran; when Name_Intrinsic => return Convention_Intrinsic; when Name_Java => return Convention_Java; when Name_Stdcall => return Convention_Stdcall; when Name_Stubbed => return Convention_Stubbed; when Name_Win32 => return Convention_Stdcall; when others => raise Program_Error; end case; end Get_Convention_Id; --------------------------- -- Get_Locking_Policy_Id -- --------------------------- function Get_Locking_Policy_Id (N : Name_Id) return Locking_Policy_Id is begin return Locking_Policy_Id'Val (N - First_Locking_Policy_Name); end Get_Locking_Policy_Id; ------------------- -- Get_Pragma_Id -- ------------------- function Get_Pragma_Id (N : Name_Id) return Pragma_Id is begin if N = Name_AST_Entry then return Pragma_AST_Entry; elsif N = Name_Storage_Size then return Pragma_Storage_Size; elsif N = Name_Storage_Unit then return Pragma_Storage_Unit; else return Pragma_Id'Val (N - First_Pragma_Name); end if; end Get_Pragma_Id; --------------------------- -- Get_Queuing_Policy_Id -- --------------------------- function Get_Queuing_Policy_Id (N : Name_Id) return Queuing_Policy_Id is begin return Queuing_Policy_Id'Val (N - First_Queuing_Policy_Name); end Get_Queuing_Policy_Id; ------------------------------------ -- Get_Task_Dispatching_Policy_Id -- ------------------------------------ function Get_Task_Dispatching_Policy_Id (N : Name_Id) return Task_Dispatching_Policy_Id is begin return Task_Dispatching_Policy_Id'Val (N - First_Task_Dispatching_Policy_Name); end Get_Task_Dispatching_Policy_Id; ---------------- -- Initialize -- ---------------- procedure Initialize is P_Index : Natural; Discard_Name : Name_Id; begin P_Index := Preset_Names'First; loop Name_Len := 0; while Preset_Names (P_Index) /= '#' loop Name_Len := Name_Len + 1; Name_Buffer (Name_Len) := Preset_Names (P_Index); P_Index := P_Index + 1; end loop; -- We do the Name_Find call to enter the name into the table, but -- we don't need to do anything with the result, since we already -- initialized all the preset names to have the right value (we -- are depending on the order of the names and Preset_Names). Discard_Name := Name_Find; P_Index := P_Index + 1; exit when Preset_Names (P_Index) = '#'; end loop; -- Make sure that number of names in standard table is correct. If -- this check fails, run utility program XSNAMES to construct a new -- properly matching version of the body. pragma Assert (Discard_Name = Last_Predefined_Name); end Initialize; ----------------------- -- Is_Attribute_Name -- ----------------------- function Is_Attribute_Name (N : Name_Id) return Boolean is begin return N in First_Attribute_Name .. Last_Attribute_Name; end Is_Attribute_Name; ------------------- -- Is_Check_Name -- ------------------- function Is_Check_Name (N : Name_Id) return Boolean is begin return N in First_Check_Name .. Last_Check_Name; end Is_Check_Name; ------------------------ -- Is_Convention_Name -- ------------------------ function Is_Convention_Name (N : Name_Id) return Boolean is begin return N in First_Convention_Name .. Last_Convention_Name or else N = Name_C; end Is_Convention_Name; ------------------------------ -- Is_Entity_Attribute_Name -- ------------------------------ function Is_Entity_Attribute_Name (N : Name_Id) return Boolean is begin return N in First_Entity_Attribute_Name .. Last_Entity_Attribute_Name; end Is_Entity_Attribute_Name; -------------------------------- -- Is_Function_Attribute_Name -- -------------------------------- function Is_Function_Attribute_Name (N : Name_Id) return Boolean is begin return N in First_Renamable_Function_Attribute .. Last_Renamable_Function_Attribute; end Is_Function_Attribute_Name; ---------------------------- -- Is_Locking_Policy_Name -- ---------------------------- function Is_Locking_Policy_Name (N : Name_Id) return Boolean is begin return N in First_Locking_Policy_Name .. Last_Locking_Policy_Name; end Is_Locking_Policy_Name; ----------------------------- -- Is_Operator_Symbol_Name -- ----------------------------- function Is_Operator_Symbol_Name (N : Name_Id) return Boolean is begin return N in First_Operator_Name .. Last_Operator_Name; end Is_Operator_Symbol_Name; -------------------- -- Is_Pragma_Name -- -------------------- function Is_Pragma_Name (N : Name_Id) return Boolean is begin return N in First_Pragma_Name .. Last_Pragma_Name or else N = Name_AST_Entry or else N = Name_Storage_Size or else N = Name_Storage_Unit; end Is_Pragma_Name; --------------------------------- -- Is_Procedure_Attribute_Name -- --------------------------------- function Is_Procedure_Attribute_Name (N : Name_Id) return Boolean is begin return N in First_Procedure_Attribute .. Last_Procedure_Attribute; end Is_Procedure_Attribute_Name; ---------------------------- -- Is_Queuing_Policy_Name -- ---------------------------- function Is_Queuing_Policy_Name (N : Name_Id) return Boolean is begin return N in First_Queuing_Policy_Name .. Last_Queuing_Policy_Name; end Is_Queuing_Policy_Name; ------------------------------------- -- Is_Task_Dispatching_Policy_Name -- ------------------------------------- function Is_Task_Dispatching_Policy_Name (N : Name_Id) return Boolean is begin return N in First_Task_Dispatching_Policy_Name .. Last_Task_Dispatching_Policy_Name; end Is_Task_Dispatching_Policy_Name; ---------------------------- -- Is_Type_Attribute_Name -- ---------------------------- function Is_Type_Attribute_Name (N : Name_Id) return Boolean is begin return N in First_Type_Attribute_Name .. Last_Type_Attribute_Name; end Is_Type_Attribute_Name; end Snames;
package body impact.d3.Scalar is function btRecipSqrt (x : in Real) return Real is use math.Functions; begin return 1.0 / sqRt (x); end btRecipSqrt; function btAtan2Fast (y, x : Real) return Real is coeff_1 : constant Real := SIMD_PI / 4.0; coeff_2 : constant Real := 3.0 * coeff_1; abs_y : constant Real := abs (y); angle : Real; r : Real; begin if x >= 0.0 then r := (x - abs_y) / (x + abs_y); angle := coeff_1 - coeff_1 * r; else r := (x + abs_y) / (abs_y - x); angle := coeff_2 - coeff_1 * r; end if; if y < 0.0 then return -angle; else return angle; end if; end btAtan2Fast; function btFuzzyZero (x : Real) return Boolean is begin return abs (x) < SIMD_EPSILON; end btFuzzyZero; function btEqual (a, eps : Real) return Boolean is begin return (a <= eps) and then not (a < -eps); end btEqual; function btGreaterEqual (a, eps : Real) return Boolean is begin return not (a <= eps); end btGreaterEqual; function btIsNegative (x : Real) return Boolean is begin if x < 0.0 then return True; else return False; end if; end btIsNegative; function btRadians (x : Real) return Real is begin return x * SIMD_RADS_PER_DEG; end btRadians; function btDegrees (x : Real) return Real is begin return x * SIMD_DEGS_PER_RAD; end btDegrees; function btFmod (x, y : in Real) return Real is type Sign_t is (Negative, Positive); function Sign (Self : in Real) return Sign_t is begin if Self < 0.0 then return Negative; else return Positive; end if; end Sign; f : Real; begin f := Real'Remainder (x, y); if Sign (x) = Sign (f) then return f; elsif Sign (y) = Sign (f) then return f - y; else return f + y; end if; end btFmod; function btNormalizeAngle (angleInRadians : Real) return Real is the_Angle : constant Real := btFmod (angleInRadians, SIMD_2_PI); -- tbd: check Ada 'Mod matches C++ fmod begin if angleInRadians < -SIMD_PI then return the_Angle + SIMD_2_PI; elsif angleInRadians > SIMD_PI then return the_Angle - SIMD_2_PI; else return the_Angle; end if; end btNormalizeAngle; function btFsel (a, b, c : in Real) return Real is begin if a >= 0.0 then return b; else return c; end if; end btFsel; end impact.d3.Scalar; -- #define BT_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name -- -- #ifndef btFsel -- SIMD_FORCE_INLINE impact.d3.Scalar btFsel(impact.d3.Scalar a, impact.d3.Scalar b, impact.d3.Scalar c) -- { -- return a >= 0 ? b : c; -- } -- #endif -- #define btFsels(a,b,c) (impact.d3.Scalar)btFsel(a,b,c) -- -- -- SIMD_FORCE_INLINE bool btMachineIsLittleEndian() -- { -- long int i = 1; -- const char *p = (const char *) &i; -- if (p[0] == 1) // Lowest address contains the least significant byte -- return true; -- else -- return false; -- } -- -- -- -- ///btSelect avoids branches, which makes performance much better for consoles like Playstation 3 and XBox 360 -- ///Thanks Phil Knight. See also http://www.cellperformance.com/articles/2006/04/more_techniques_for_eliminatin_1.html -- SIMD_FORCE_INLINE unsigned btSelect(unsigned condition, unsigned valueIfConditionNonZero, unsigned valueIfConditionZero) -- { -- // Set testNz to 0xFFFFFFFF if condition is nonzero, 0x00000000 if condition is zero -- // Rely on positive value or'ed with its negative having sign bit on -- // and zero value or'ed with its negative (which is still zero) having sign bit off -- // Use arithmetic shift right, shifting the sign bit through all 32 bits -- unsigned testNz = (unsigned)(((int)condition | -(int)condition) >> 31); -- unsigned testEqz = ~testNz; -- return ((valueIfConditionNonZero & testNz) | (valueIfConditionZero & testEqz)); -- } -- SIMD_FORCE_INLINE int btSelect(unsigned condition, int valueIfConditionNonZero, int valueIfConditionZero) -- { -- unsigned testNz = (unsigned)(((int)condition | -(int)condition) >> 31); -- unsigned testEqz = ~testNz; -- return static_cast<int>((valueIfConditionNonZero & testNz) | (valueIfConditionZero & testEqz)); -- } -- SIMD_FORCE_INLINE float btSelect(unsigned condition, float valueIfConditionNonZero, float valueIfConditionZero) -- { -- #ifdef BT_HAVE_NATIVE_FSEL -- return (float)btFsel((impact.d3.Scalar)condition - impact.d3.Scalar(1.0f), valueIfConditionNonZero, valueIfConditionZero); -- #else -- return (condition != 0) ? valueIfConditionNonZero : valueIfConditionZero; -- #endif -- } -- -- template<typename T> SIMD_FORCE_INLINE void btSwap(T& a, T& b) -- { -- T tmp = a; -- a = b; -- b = tmp; -- } -- -- -- //PCK: endian swapping functions -- SIMD_FORCE_INLINE unsigned btSwapEndian(unsigned val) -- { -- return (((val & 0xff000000) >> 24) | ((val & 0x00ff0000) >> 8) | ((val & 0x0000ff00) << 8) | ((val & 0x000000ff) << 24)); -- } -- -- SIMD_FORCE_INLINE unsigned short btSwapEndian(unsigned short val) -- { -- return static_cast<unsigned short>(((val & 0xff00) >> 8) | ((val & 0x00ff) << 8)); -- } -- -- SIMD_FORCE_INLINE unsigned btSwapEndian(int val) -- { -- return btSwapEndian((unsigned)val); -- } -- -- SIMD_FORCE_INLINE unsigned short btSwapEndian(short val) -- { -- return btSwapEndian((unsigned short) val); -- } -- -- ///btSwapFloat uses using char pointers to swap the endianness -- ////btSwapFloat/btSwapDouble will NOT return a float, because the machine might 'correct' invalid floating point values -- ///Not all values of sign/exponent/mantissa are valid floating point numbers according to IEEE 754. -- ///When a floating point unit is faced with an invalid value, it may actually change the value, or worse, throw an exception. -- ///In most systems, running user mode code, you wouldn't get an exception, but instead the hardware/os/runtime will 'fix' the number for you. -- ///so instead of returning a float/double, we return integer/long long integer -- SIMD_FORCE_INLINE unsigned int btSwapEndianFloat(float d) -- { -- unsigned int a = 0; -- unsigned char *dst = (unsigned char *)&a; -- unsigned char *src = (unsigned char *)&d; -- -- dst[0] = src[3]; -- dst[1] = src[2]; -- dst[2] = src[1]; -- dst[3] = src[0]; -- return a; -- } -- -- // unswap using char pointers -- SIMD_FORCE_INLINE float btUnswapEndianFloat(unsigned int a) -- { -- float d = 0.0f; -- unsigned char *src = (unsigned char *)&a; -- unsigned char *dst = (unsigned char *)&d; -- -- dst[0] = src[3]; -- dst[1] = src[2]; -- dst[2] = src[1]; -- dst[3] = src[0]; -- -- return d; -- } -- -- -- // swap using char pointers -- SIMD_FORCE_INLINE void btSwapEndianDouble(double d, unsigned char* dst) -- { -- unsigned char *src = (unsigned char *)&d; -- -- dst[0] = src[7]; -- dst[1] = src[6]; -- dst[2] = src[5]; -- dst[3] = src[4]; -- dst[4] = src[3]; -- dst[5] = src[2]; -- dst[6] = src[1]; -- dst[7] = src[0]; -- -- } -- -- // unswap using char pointers -- SIMD_FORCE_INLINE double btUnswapEndianDouble(const unsigned char *src) -- { -- double d = 0.0; -- unsigned char *dst = (unsigned char *)&d; -- -- dst[0] = src[7]; -- dst[1] = src[6]; -- dst[2] = src[5]; -- dst[3] = src[4]; -- dst[4] = src[3]; -- dst[5] = src[2]; -- dst[6] = src[1]; -- dst[7] = src[0]; -- -- return d; -- } -- -- -- ///rudimentary class to provide type info -- struct btTypedObject -- { -- btTypedObject(int objectType) -- :m_objectType(objectType) -- { -- } -- int m_objectType; -- inline int getObjectType() const -- { -- return m_objectType; -- } -- }; -- #endif //BT_SCALAR_H
with Ada.Real_Time; with ACO.States; with ACO.Messages; with ACO.OD; private with ACO.Utils.Generic_Alarms; private with ACO.Configuration; package ACO.Slave_Monitors is type Slave_Monitor (Od : not null access ACO.OD.Object_Dictionary'Class) is tagged limited private; type Slave_Monitor_Ref is access all Slave_Monitor'Class; function Is_Monitored (This : Slave_Monitor; Node_Id : ACO.Messages.Slave_Node_Nr) return Boolean; function Get_State (This : Slave_Monitor; Node_Id : ACO.Messages.Slave_Node_Nr) return ACO.States.State with Pre => This.Is_Monitored (Node_Id); procedure Restart (This : in out Slave_Monitor; T_Now : in Ada.Real_Time.Time); procedure Start (This : in out Slave_Monitor; Node_Id : in ACO.Messages.Slave_Node_Nr; Slave_State : in ACO.States.State; T_Now : in Ada.Real_Time.Time) with Pre => not This.Is_Monitored (Node_Id); procedure Update_State (This : in out Slave_Monitor; Node_Id : in ACO.Messages.Slave_Node_Nr; Slave_State : in ACO.States.State; T_Now : in Ada.Real_Time.Time) with Pre => This.Is_Monitored (Node_Id); procedure Update_Alarms (This : in out Slave_Monitor; T_Now : in Ada.Real_Time.Time); private package Alarms is new ACO.Utils.Generic_Alarms (Maximum_Nof_Alarms => ACO.Configuration.Max_Nof_Heartbeat_Slaves); type Slave_Alarm (Ref : access Slave_Monitor := null) is new Alarms.Alarm_Type with record Node_Id : ACO.Messages.Node_Nr; Slave_State : ACO.States.State_Transition; end record; overriding procedure Signal (This : access Slave_Alarm; T_Now : in Ada.Real_Time.Time); type Slaves_Array is array (Positive range <>) of aliased Slave_Alarm; type Slave_Monitor (Od : not null access ACO.OD.Object_Dictionary'Class) is tagged limited record Manager : Alarms.Alarm_Manager; Slaves : Slaves_Array (1 .. ACO.Configuration.Max_Nof_Heartbeat_Slaves) := (others => (Slave_Monitor'Access, ACO.Messages.Not_A_Slave, (ACO.States.Unknown_State, ACO.States.Unknown_State))); end record; end ACO.Slave_Monitors;
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- A 4 G . A _ D E B U G -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-2012, Free Software Foundation, Inc. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 59 Temple Place -- -- - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by Ada Core Technologies Inc -- -- (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ package A4G.A_Debug is -- This package contains global flags used to control the inclusion -- of debugging code in various phases of the ASIS-for-GNAT. It is -- an almost complete analog of the GNAT Debug package ------------------------- -- Dynamic Debug Flags -- ------------------------- -- Thirty six flags that can be used to activate various specialized -- debugging output information. The flags are preset to False, which -- corresponds to the given output being suppressed. The individual -- flags can be turned on using the undocumented switch /dxxx where -- xxx is a string of letters for flags to be turned on. Documentation -- on the current usage of these flags is contained in the body of Debug -- rather than the spec, so that we don't have to recompile the world -- when a new debug flag is added Debug_Flag_A : Boolean := False; Debug_Flag_B : Boolean := False; Debug_Flag_C : Boolean := False; Debug_Flag_D : Boolean := False; Debug_Flag_E : Boolean := False; Debug_Flag_F : Boolean := False; Debug_Flag_G : Boolean := False; Debug_Flag_H : Boolean := False; Debug_Flag_I : Boolean := False; Debug_Flag_J : Boolean := False; Debug_Flag_K : Boolean := False; Debug_Flag_L : Boolean := False; Debug_Flag_M : Boolean := False; Debug_Flag_N : Boolean := False; Debug_Flag_O : Boolean := False; Debug_Flag_P : Boolean := False; Debug_Flag_Q : Boolean := False; Debug_Flag_R : Boolean := False; Debug_Flag_S : Boolean := False; Debug_Flag_T : Boolean := False; Debug_Flag_U : Boolean := False; Debug_Flag_V : Boolean := False; Debug_Flag_W : Boolean := False; Debug_Flag_X : Boolean := False; Debug_Flag_Y : Boolean := False; Debug_Flag_Z : Boolean := False; Debug_Flag_1 : Boolean := False; Debug_Flag_2 : Boolean := False; Debug_Flag_3 : Boolean := False; Debug_Flag_4 : Boolean := False; Debug_Flag_5 : Boolean := False; Debug_Flag_6 : Boolean := False; Debug_Flag_7 : Boolean := False; Debug_Flag_8 : Boolean := False; Debug_Flag_9 : Boolean := False; procedure Set_Debug_Flag (C : Character; Val : Boolean := True); -- Where C is 0-9 or a-z, sets the corresponding debug flag to the -- given value. In the checks off version of debug, the call to -- Set_Debug_Flag is always a null operation. procedure Set_Off; -- Sets all the debug flags OFF (except Debug_Lib_Model for now), -- is to be called by Asis_Environment.Finalize procedure Set_On; -- TEMPORARY SOLUTION!!! -- Sets all the debug flags ON. ------------------------ -- TEMPORARY SOLUTION -- ------------------------ Debug_Mode : Boolean := False; -- Flag indicating if the debugging information should be output by the -- routines from the A4G.A_Output package Debug_Lib_Model : Boolean := False; -- Flag forcing the debug output of the tables implementing the ASIS -- Context Model to be performed when finalizing the ASIS Environment. -- Currently should be set by hand. The debug output is produced only if -- Debug_Mode is set ON. end A4G.A_Debug;
-- Copyright 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure P is type Table is array (1 .. 3) of Integer; function Create (I : Integer) return Table is begin return (4 + I, 8 * I, 7 * I + 4); end Create; A : Table := Create (7); C : Integer; begin C := A (1) + A (2); -- STOP end P;
-- C38104A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT AN INCOMPLETE TYPE WITH DISCRIMINANTS CAN BE -- USED IN AN ACCESS TYPE DEFINITION WITH A COMPATIBLE DISCRIMINANT -- CONSTRAINT. -- HISTORY: -- PMW 09/01/88 CREATED ORIGINAL TEST BY RENAMING E38104A.ADA. WITH REPORT; USE REPORT; PROCEDURE C38104A IS BEGIN TEST ("C38104A","INCOMPLETELY DECLARED TYPE CAN BE USED AS TYPE " & "MARK IN ACCESS TYPE DEFINITION, AND CAN BE CONSTRAINED " & "THERE OR LATER IF INCOMPLETE TYPE HAD DISCRIMINANT(S)"); DECLARE TYPE T1; TYPE T1_NAME IS ACCESS T1; TYPE T1 IS RECORD COMP : INTEGER; END RECORD; TYPE T2(DISC : INTEGER := 5); TYPE T2_NAME1 IS ACCESS T2(5); TYPE T2_NAME2 IS ACCESS T2; SUBTYPE SUB_T2_NAME2 IS T2_NAME2(5); TYPE T2_NAME2_NAME IS ACCESS T2_NAME2(5); X : T2_NAME2(5); TYPE T2(DISC : INTEGER := 5) IS RECORD COMP : T2_NAME2(DISC); END RECORD; X1N : T1_NAME; X2A,X2B : T2; X2N2 : T2_NAME2; BEGIN IF EQUAL(3,3) THEN X1N := NEW T1 '(COMP => 5); END IF; IF X1N.COMP /= 5 THEN FAILED ("ASSIGNMENT FAILED - 1"); END IF; X2A := (DISC => IDENT_INT(7), COMP => NULL); X2N2 := NEW T2(IDENT_INT(7)); X2N2.ALL := X2A; IF EQUAL(3,3) THEN X2B := (DISC => IDENT_INT(7), COMP => X2N2); END IF; IF X2B.COMP.COMP /= NULL OR X2B.COMP.DISC /= 7 THEN FAILED ("ASSIGNMENT FAILED - 2"); END IF; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED"); END; RESULT; END C38104A;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . C O M -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2008, 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. -- -- -- ------------------------------------------------------------------------------ -- The following package declares a Fail procedure that is used in the -- Project Manager. with Osint; package Prj.Com is type Fail_Proc is access procedure (S : String); Fail : Fail_Proc := Osint.Fail'Access; -- This procedure is used in the project facility, instead of directly -- calling Osint.Fail. It may be specified by tools to do clean up before -- calling Osint.Fail, or to simply report an error and return. end Prj.Com;
-- -- 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 soc.layout; with soc.gpio; with system; package soc.syscfg with spark_mode => off is -------------------------------------------------- -- SYSCFG memory remap register (SYSCFG_MEMRMP) -- -------------------------------------------------- type t_SYSCFG_MEMRMP is record MEM_MODE : bits_3; reserved_3_7 : bits_5; FB_MODE : bit; reserved_9 : bit; SWP_FMC : bits_2; reserved_12_15 : bits_4; reserved_16_31 : unsigned_16; end record with volatile_full_access, size => 32; for t_SYSCFG_MEMRMP use record MEM_MODE at 0 range 0 .. 2; reserved_3_7 at 0 range 3 .. 7; FB_MODE at 0 range 8 .. 8; reserved_9 at 0 range 9 .. 9; SWP_FMC at 0 range 10 .. 11; reserved_12_15 at 0 range 12 .. 15; reserved_16_31 at 0 range 16 .. 31; end record; ---------------------------------------------------------------- -- SYSCFG peripheral mode configuration register (SYSCFG_PMC) -- ---------------------------------------------------------------- type t_SYSCFG_PMC is record reserved_0_15 : unsigned_16; ADC1DC2 : bit; ADC2DC2 : bit; ADC3DC2 : bit; reserved_19_22 : bits_4; MII_RMII_SEL : bit; reserved_24_31 : byte; end record with volatile_full_access, size => 32; for t_SYSCFG_PMC use record reserved_0_15 at 0 range 0 .. 15; ADC1DC2 at 0 range 16 .. 16; ADC2DC2 at 0 range 17 .. 17; ADC3DC2 at 0 range 18 .. 18; reserved_19_22 at 0 range 19 .. 22; MII_RMII_SEL at 0 range 23 .. 23; reserved_24_31 at 0 range 24 .. 31; end record; ------------------------------------------------------------------------ -- SYSCFG external interrupt configuration registers (SYSCFG_EXTICRx) -- ------------------------------------------------------------------------ type t_exticr_list is array (soc.gpio.t_gpio_pin_index range <>) of soc.gpio.t_gpio_port_index with pack; type t_SYSCFG_EXTICR1 is record exti : t_exticr_list (0 .. 3); reserved : short; end record with pack, size => 32, volatile_full_access; type t_SYSCFG_EXTICR2 is record exti : t_exticr_list (4 .. 7); reserved : short; end record with pack, size => 32, volatile_full_access; type t_SYSCFG_EXTICR3 is record exti : t_exticr_list (8 .. 11); reserved : short; end record with pack, size => 32, volatile_full_access; type t_SYSCFG_EXTICR4 is record exti : t_exticr_list (12 .. 15); reserved : short; end record with pack, size => 32, volatile_full_access; ------------------------------------------------------- -- Compensation cell control register (SYSCFG_CMPCR) -- ------------------------------------------------------- type t_SYSCFG_CMPCR is record CMP_PD : bit; reserved_1_6 : bits_6; READY : bit; reserved_8_15 : byte; reserved_16_31 : unsigned_16; end record with volatile_full_access, size => 32; for t_SYSCFG_CMPCR use record CMP_PD at 0 range 0 .. 0; reserved_1_6 at 0 range 1 .. 6; READY at 0 range 7 .. 7; reserved_8_15 at 0 range 8 .. 15; reserved_16_31 at 0 range 16 .. 31; end record; ----------------------- -- SYSCFG peripheral -- ----------------------- type t_SYSCFG_periph is record MEMRMP : t_SYSCFG_MEMRMP; PMC : t_SYSCFG_PMC; EXTICR1 : t_SYSCFG_EXTICR1; EXTICR2 : t_SYSCFG_EXTICR2; EXTICR3 : t_SYSCFG_EXTICR3; EXTICR4 : t_SYSCFG_EXTICR4; CMPCR : t_SYSCFG_CMPCR; end record with volatile; for t_SYSCFG_periph use record MEMRMP at 16#00# range 0 .. 31; PMC at 16#04# range 0 .. 31; EXTICR1 at 16#08# range 0 .. 31; EXTICR2 at 16#0C# range 0 .. 31; EXTICR3 at 16#10# range 0 .. 31; EXTICR4 at 16#14# range 0 .. 31; CMPCR at 16#20# range 0 .. 31; end record; SYSCFG : t_SYSCFG_periph with import, volatile, address => system'to_address (soc.layout.SYSCFG_BASE); -- 0x40013800 function get_exti_port (pin : soc.gpio.t_gpio_pin_index) return soc.gpio.t_gpio_port_index; procedure set_exti_port (pin : in soc.gpio.t_gpio_pin_index; port : in soc.gpio.t_gpio_port_index); end soc.syscfg;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, 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$ ------------------------------------------------------------------------------ -- Root package for WSDL to Ada translator. ------------------------------------------------------------------------------ package WSDL is pragma Pure; WSDL_Error : exception; -- Raised to stop processing of WSDL document. end WSDL;
-- Abstract : -- -- See spec. -- -- Copyright (C) 2018 - 2019 Free Software Foundation, Inc. -- -- This library is free software; you can redistribute it and/or modify it -- under terms of the GNU General Public License as published by the Free -- Software Foundation; either version 3, or (at your option) any later -- version. This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- As a special exception under Section 7 of GPL version 3, you are granted -- additional permissions described in the GCC Runtime Library Exception, -- version 3.1, as published by the Free Software Foundation. pragma License (Modified_GPL); package body WisiToken.Parse.Packrat.Generated is overriding procedure Parse (Parser : aliased in out Generated.Parser) is -- 'aliased' required for Base_Tree'Access. WORKAROUND: that was -- enough when Parser type was declared in generated Main; now that -- it's a derived type, it doesn't work. So we use Unchecked_Access. Descriptor : WisiToken.Descriptor renames Parser.Trace.Descriptor.all; Junk : WisiToken.Syntax_Trees.Valid_Node_Index; pragma Unreferenced (Junk); Result : Memo_Entry; begin Parser.Base_Tree.Clear; Parser.Tree.Initialize (Parser.Base_Tree'Unchecked_Access, Flush => True); Parser.Lex_All; Parser.Derivs.Set_First_Last (Descriptor.First_Nonterminal, Descriptor.Last_Nonterminal); for Nonterm in Descriptor.First_Nonterminal .. Parser.Trace.Descriptor.Last_Nonterminal loop Parser.Derivs (Nonterm).Clear; Parser.Derivs (Nonterm).Set_First_Last (Parser.Terminals.First_Index, Parser.Terminals.Last_Index); end loop; for Token_Index in Parser.Terminals.First_Index .. Parser.Terminals.Last_Index loop Junk := Parser.Tree.Add_Terminal (Token_Index, Parser.Terminals); -- FIXME: move this into Lex_All, delete Terminals, just use Syntax_Tree end loop; Result := Parser.Parse_WisiToken_Accept (Parser, Parser.Terminals.First_Index - 1); if Result.State /= Success then if Trace_Parse > Outline then Parser.Trace.Put_Line ("parse failed"); end if; raise Syntax_Error with "parse failed"; -- FIXME: need better error message! else Parser.Tree.Set_Root (Result.Result); end if; end Parse; overriding function Tree (Parser : in Generated.Parser) return Syntax_Trees.Tree is begin return Parser.Tree; end Tree; overriding function Any_Errors (Parser : in Generated.Parser) return Boolean is use all type Ada.Containers.Count_Type; begin return Parser.Lexer.Errors.Length > 0; end Any_Errors; overriding procedure Put_Errors (Parser : in Generated.Parser) is use Ada.Text_IO; begin for Item of Parser.Lexer.Errors loop Put_Line (Current_Error, Parser.Lexer.File_Name & ":0:0: lexer unrecognized character at" & Buffer_Pos'Image (Item.Char_Pos)); end loop; -- FIXME: Packrat parser does not report errors yet. end Put_Errors; end WisiToken.Parse.Packrat.Generated;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package sgxintrin_h is -- skipped func _encls_u32 -- skipped func _enclu_u32 end sgxintrin_h;
-- Institution: Technische Universitaet Muenchen -- Department: Real-Time Computer Systems (RCS) -- Project: StratoX -- Module: PX4IO Driver -- -- Authors: Emanuel Regnath (emanuel.regnath@tum.de) -- Martin Becker (becker@rcs.ei.tum.de) -- -- @summary Driver for the PX4IO co-processor with HIL; use HIL; with HIL.UART; with Units; use Units; with Config; use Config; with Interfaces; use Interfaces; package PX4IO.Driver with SPARK_Mode, Abstract_State => (Servo_Wish, Servo_State, Servo_Settings) is MOTOR_SPEED_LIMIT_MIN : constant := CFG_MOTOR_SPEED_LIMIT_MIN; MOTOR_SPEED_LIMIT_MAX : constant := CFG_MOTOR_SPEED_LIMIT_MAX; SERVO_PULSE_LENGTH_LIMIT_MIN : constant := Unsigned_16 ( CFG_SERVO_PULSE_LENGTH_LIMIT_MIN / (1.0 * Micro * Second) ); -- Integer of Microseconds SERVO_PULSE_LENGTH_LIMIT_MAX : constant := Unsigned_16 ( CFG_SERVO_PULSE_LENGTH_LIMIT_MAX / (1.0 * Micro * Second) ); --G_Pulse : Unsigned_16 := SERVO_PULSE_LENGTH_LIMIT_MIN; type Servo_Type is (LEFT_ELEVON, RIGHT_ELEVON); subtype Servo_Angle_Type is Units.Angle_Type range CFG_SERVO_ANGLE_LIMIT_MIN .. CFG_SERVO_ANGLE_LIMIT_MAX; subtype Motor_Speed_Type is Units.Angular_Velocity_Type range MOTOR_SPEED_LIMIT_MIN .. MOTOR_SPEED_LIMIT_MAX; procedure initialize (init_left : Servo_Angle_Type; init_right : Servo_Angle_Type); procedure Self_Check (result : out Boolean); procedure arm; procedure disarm; procedure read_Status; procedure Set_Servo_Angle (servo : Servo_Type; angle : Servo_Angle_Type) with Global => (Input => Servo_Settings, In_Out => Servo_Wish); -- FIXME: why does SPARK force IN mode here? procedure sync_Outputs ; -- with -- Global => (Input => (Servo_Wish), -- Output => Servo_State); private subtype Page_Type is HIL.Byte; subtype Offset_Type is HIL.Byte; subtype Data_Type is HIL.UART.Data_Type; function valid_Package( data : in Data_Type ) return Boolean with Pre => 2 in data'Range; procedure write(page : Page_Type; offset : Offset_Type; data : Data_Type; retries : Natural := 2) with Pre => data'Length mod 2 = 0 and data'Length <= 64; end PX4IO.Driver;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, 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$ ------------------------------------------------------------------------------ package WSDL.Iterators.Containment is pragma Preelaborate; type Containment_Iterator is limited new WSDL_Iterator with null record; overriding procedure Visit_Binding (Self : in out Containment_Iterator; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Binding_Access; Control : in out Traverse_Control); overriding procedure Visit_Description (Self : in out Containment_Iterator; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Description_Access; Control : in out Traverse_Control); overriding procedure Visit_Interface (Self : in out Containment_Iterator; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Interface_Access; Control : in out Traverse_Control); overriding procedure Visit_Interface_Operation (Self : in out Containment_Iterator; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Interface_Operation_Access; Control : in out Traverse_Control); overriding procedure Visit_Service (Self : in out Containment_Iterator; Visitor : in out WSDL.Visitors.WSDL_Visitor'Class; Node : not null WSDL.AST.Services.Service_Access; Control : in out Traverse_Control); end WSDL.Iterators.Containment;
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT INTERFACE COMPONENTS -- -- -- -- A S I S . T E X T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-2012, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Semantic Interface -- -- Specification Standard (ISO/IEC 15291) 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. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 20 package Asis.Text ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ package Asis.Text is ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Asis.Text -- -- This package encapsulates a set of operations to access the text of ASIS -- Elements. It assumes no knowledge of the existence, location, or form of -- the program text. -- -- The text of a program consists of the texts of one or more compilations. -- The text of each compilation is a sequence of separate lexical elements. -- Each lexical element is either a delimiter, an identifier (which can be a -- reserved word), a numeric literal, a character literal, a string literal, -- blank space, or a comment. -- -- Each ASIS Element has a text image whose value is the series of characters -- contained by the text span of the Element. The text span covers all the -- characters from the first character of the Element through the last -- character of the Element over some range of lines. -- -- General Usage Rules: -- -- Line lists can be indexed to obtain individual lines. The bounds of each -- list correspond to the lines with those same numbers from the compilation -- text. -- -- Any Asis.Text query may raise ASIS_Failed with a Status of Text_Error if -- the program text cannot be located or retrieved for any reason such as -- renaming, deletion, corruption, or moving of the text. ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 20.1 type Line ------------------------------------------------------------------------------ -- An Ada text line abstraction (a private type). -- -- Used to represent text fragments from a compilation. -- ASIS Lines are representations of the compilation text. -- This shall be supported by all ASIS implementations. ------------------------------------------------------------------------------ type Line is private; Nil_Line : constant Line; function "=" (Left : Line; Right : Line) return Boolean is abstract; -- Nil_Line is the value of an uninitialized Line object. -- ------------------------------------------------------------------------------ -- 20.2 type Line_Number ------------------------------------------------------------------------------ -- Line_Number -- -- A numeric subtype that allows each ASIS implementation to place constraints -- on the upper bound for Line_List elements and compilation unit size. -- -- The upper bound of Line_Number (Maximum_Line_Number) is the only -- allowed variation for these declarations. -- -- Line_Number = 0 is reserved to act as an "invalid" Line_Number value. No -- unit text line will ever have a Line_Number of zero. ------------------------------------------------------------------------------ -- Line shall be an undiscriminated private type, or, shall be derived from an -- undiscriminated private type. It can be declared as a new type or as a -- subtype of an existing type. ------------------------------------------------------------------------------ Maximum_Line_Number : constant ASIS_Natural := Implementation_Defined_Integer_Constant; subtype Line_Number is ASIS_Natural range 0 .. Maximum_Line_Number; ------------------------------------------------------------------------------ -- 20.3 type Line_Number_Positive ------------------------------------------------------------------------------ subtype Line_Number_Positive is Line_Number range 1 .. Maximum_Line_Number; ------------------------------------------------------------------------------ -- 20.4 type Line_List ------------------------------------------------------------------------------ type Line_List is array (Line_Number_Positive range <>) of Line; Nil_Line_List : constant Line_List; ------------------------------------------------------------------------------ -- 20.5 type Character_Position ------------------------------------------------------------------------------ -- Character_Position -- -- A numeric subtype that allows each ASIS implementation to place constraints -- on the upper bound for Character_Position and for compilation unit line -- lengths. -- -- The upper bound of Character_Position (Maximum_Line_Length) is the -- only allowed variation for these declarations. -- -- Character_Position = 0 is reserved to act as an "invalid" -- Character_Position value. No unit text line will ever have a character in -- position zero. ------------------------------------------------------------------------------ Maximum_Line_Length : constant ASIS_Natural := Implementation_Defined_Integer_Constant; subtype Character_Position is ASIS_Natural range 0 .. Maximum_Line_Length; ------------------------------------------------------------------------------ -- 20.6 type Character_Position_Positive ------------------------------------------------------------------------------ subtype Character_Position_Positive is Character_Position range 1 .. Maximum_Line_Length; ------------------------------------------------------------------------------ -- 20.7 type Span ------------------------------------------------------------------------------ -- Span -- -- A single text position is identified by a line number and a column number, -- that represent the text's position within the compilation unit. -- -- The text of an element can span one or more lines. The textual Span of an -- element identifies the lower and upper bound of a span of text positions. -- -- Spans and positions give client tools the option of accessing compilation -- unit text through the queries provided by this package, or, to access -- the text directly through the original compilation unit text file. Type -- span -- facilitates the capture of comments before or after an element. -- -- Note: The original compilation unit text may or may not have existed in a -- "file", and any such file may or may not still exist. Reference Manual 10.1 -- specifies that the text of a compilation unit is submitted to a compiler. -- It does not specify that the text is stored in a "file", nor does it -- specify that the text of a compilation unit has any particular lifetime. ------------------------------------------------------------------------------ type Span is -- Default is Nil_Span record First_Line : Line_Number_Positive := 1; -- 1..0 - empty First_Column : Character_Position_Positive := 1; -- 1..0 - empty Last_Line : Line_Number := 0; Last_Column : Character_Position := 0; end record; Nil_Span : constant Span := (First_Line => 1, First_Column => 1, Last_Line => 0, Last_Column => 0); ------------------------------------------------------------------------------ -- 20.8 function First_Line_Number ------------------------------------------------------------------------------ function First_Line_Number (Element : Asis.Element) return Line_Number; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns the first line number on which the text of the element resides. -- -- Returns 0 if not Is_Text_Available(Element). -- -- --|AN Application Note: -- --|AN -- --|AN The line number recorded for a particular element may or may not -- --|AN match the "true" line number of the program text for that element if -- --|AN the Ada environment and the local text editors do not agree on the -- --|AN definition of "line". For example, the Reference Manual states that -- --|AN any occurrence of an ASCII.Cr character is to be treated as one or -- --|AN more end-of-line occurrences. On most Unix systems, the editors do -- --|AN not treat a carriage return as being an end-of-line character. -- --|AN -- --|AN Ada treats all of the following as end-of-line characters: ASCII.Cr, -- --|AN ASCII.Lf, ASCII.Ff, ASCII.Vt. It is up to the compilation system to -- --|AN determine whether sequences of these characters causes one, or more, -- --|AN end-of-line occurrences. Be warned, if the Ada environment and the -- --|AN system editor (or any other line-counting program) do not use the -- --|AN same end-of-line conventions, then the line numbers reported by ASIS -- --|AN may not match those reported by those other programs. -- ------------------------------------------------------------------------------ -- 20.9 function Last_Line_Number ------------------------------------------------------------------------------ function Last_Line_Number (Element : Asis.Element) return Line_Number; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns the last line number on which the text of the element resides. -- -- Returns 0 if not Is_Text_Available(Element). -- ------------------------------------------------------------------------------ -- 20.10 function Element_Span ------------------------------------------------------------------------------ function Element_Span (Element : Asis.Element) return Span; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns the span of the given element. -- -- Returns a Nil_Span if the text of a Compilation_Unit (Compilation) cannot -- be located for any reason. -- --|AN -- --|AN For this query, Element is only a means to access the -- --|AN Compilation_Unit (Compilation), the availability of the text of this -- --|AN Element itself is irrelevant to the result of the query. -- ------------------------------------------------------------------------------ -- 20.11 function Compilation_Unit_Span ------------------------------------------------------------------------------ function Compilation_Unit_Span (Element : Asis.Element) return Span; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns the span of the text comprising the enclosing compilation unit of -- the given element. -- -- Returns a Nil_Span if the text of a Compilation_Unit (Compilation) cannot -- be located for any reason. -- --|AN -- --|AN For this query, Element is only a means to access the -- --|AN Compilation_Unit (Compilation), the availability of the text of this -- --|AN Element itself is irrelevant to the result of the query. -- ------------------------------------------------------------------------------ -- 20.12 function Compilation_Span ------------------------------------------------------------------------------ function Compilation_Span (Element : Asis.Element) return Span; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns the span of the text comprising the compilation to which the -- element belongs. The text span may include one or more compilation units. -- -- Returns a Nil_Span if not Is_Text_Available(Element). -- ------------------------------------------------------------------------------ -- 20.13 function Is_Nil ------------------------------------------------------------------------------ function Is_Nil (Right : Line) return Boolean; ------------------------------------------------------------------------------ -- Right - Specifies the line to check -- -- Returns True if the argument is the Nil_Line. -- -- A Line from a Line_List obtained from any of the Lines functions -- will not be Is_Nil even if it has a length of zero. -- ------------------------------------------------------------------------------ -- 20.14 function Is_Nil ------------------------------------------------------------------------------ function Is_Nil (Right : Line_List) return Boolean; ------------------------------------------------------------------------------ -- Right - Specifies the line list to check -- -- Returns True if the argument has a 'Length of zero. -- ------------------------------------------------------------------------------ -- 20.15 function Is_Nil ------------------------------------------------------------------------------ function Is_Nil (Right : Span) return Boolean; ------------------------------------------------------------------------------ -- Right - Specifies the Span to check -- -- Returns True if the argument has a Nil_Span. -- ------------------------------------------------------------------------------ -- 20.16 function Is_Equal ------------------------------------------------------------------------------ function Is_Equal (Left : Line; Right : Line) return Boolean; ------------------------------------------------------------------------------ -- Left - Specifies the first of the two lines -- Right - Specifies the second of the two lines -- -- Returns True if the two lines encompass the same text (have the same Span -- and are from the same compilation). -- ------------------------------------------------------------------------------ -- 20.17 function Is_Identical ------------------------------------------------------------------------------ function Is_Identical (Left : Line; Right : Line) return Boolean; ------------------------------------------------------------------------------ -- Left - Specifies the first of the two lines -- Right - Specifies the second of the two lines -- -- Returns True if the two lines encompass the same text (have the same Span -- and are from the same compilation) and are from the same Context. -- ------------------------------------------------------------------------------ -- 20.18 function Length ------------------------------------------------------------------------------ function Length (The_Line : Line) return Character_Position; ------------------------------------------------------------------------------ -- The_Line - Specifies the line to query -- -- Returns the length of the line. -- -- Raises ASIS_Inappropriate_Line if Is_Nil (The_Line). -- ------------------------------------------------------------------------------ -- 20.19 function Lines ------------------------------------------------------------------------------ function Lines (Element : Asis.Element) return Line_List; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns a list of lines covering the span of the given program element. -- -- Returns a Nil_Span if the text of a Compilation containing a given -- Element cannot be located for any reason. -- -- Line lists can be indexed to obtain individual lines. The bounds of each -- list correspond to the lines with those same numbers in the compilation -- text. -- -- The first Line of the result contains text from the compilation starting at -- the First_Line/First_Column of Element's Span. The last Line of the result -- contains text from the compilation ending at the Last_Line/Last_Column of -- the Element's Span. Text before or after those limits is not reflected -- in the returned list. -- --|AN -- --|AN For this query, Element is only a means to access the -- --|AN Compilation_Unit (Compilation), the availability of the text of this -- --|AN Element itself is irrelevant to the result of the query. -- ------------------------------------------------------------------------------ -- 20.20 function Lines ------------------------------------------------------------------------------ function Lines (Element : Asis.Element; The_Span : Span) return Line_List; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- The_Span - Specifies the textual span to return -- -- Returns a list of lines covering the given span from the compilation -- containing the given program element. -- -- Returns a Nil_Span if the text of a Compilation containing a given -- Element cannot be located for any reason. -- -- This operation can be used to access lines from text outside the span of an -- element, but still within the compilation. For example, lines containing -- preceding comments or lines between two elements. -- -- Line lists can be indexed to obtain individual lines. The bounds of each -- list correspond to the lines with those same numbers in the compilation -- text. -- -- The first Line of the result contains text from the compilation starting at -- line Span.First_Line and column Span.First_Column. The last Line of the -- result contains text from the compilation ending at line Span.Last_Line and -- column Span.Last_Column. Text before or after those limits is not -- reflected in the returned list. -- -- Raises ASIS_Inappropriate_Line_Number if Is_Nil (The_Span). If -- The_Span defines a line whose number is outside the range of text lines -- that can be accessed through the Element, the implementation is encouraged, -- but not required to raise ASIS_Inappropriate_Line_Number. -- --|AN -- --|AN For this query, Element is only a means to access the -- --|AN Compilation_Unit (Compilation), the availability of the text of this -- --|AN Element itself is irrelevant to the result of the query. -- ------------------------------------------------------------------------------ -- 20.21 function Lines ------------------------------------------------------------------------------ function Lines (Element : Asis.Element; First_Line : Line_Number_Positive; Last_Line : Line_Number) return Line_List; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- First_Line - Specifies the first line to return -- Last_Line - Specifies the last line to return -- -- Returns a list of Lines covering the full text for each of the indicated -- lines from the compilation containing the given element. This operation -- can be used to access lines from text outside the span of an element, but -- still within the compilation. -- -- Returns a Nil_Span if the text of a Compilation containing a given -- Element cannot be located for any reason. -- -- Line lists can be indexed to obtain individual lines. The bounds of each -- list correspond to the lines with those same numbers in the compilation -- text. -- -- Raises ASIS_Inappropriate_Line_Number if the span is nil. If the span -- defines a line whose number is outside the range of text lines that can be -- accessed through the Element, the implementation is encouraged, but not -- required to raise ASIS_Inappropriate_Line_Number. -- --|AN -- --|AN For this query, Element is only a means to access the -- --|AN Compilation_Unit (Compilation), the availability of the text of this -- --|AN Element itself is irrelevant to the result of the query. -- ------------------------------------------------------------------------------ -- 20.22 function Delimiter_Image ------------------------------------------------------------------------------ function Delimiter_Image return Wide_String; ------------------------------------------------------------------------------ -- Returns the string used as the delimiter separating individual lines of -- text within the program text image of an element. It is also used as the -- delimiter separating individual lines of strings returned by Debug_Image. -- ------------------------------------------------------------------------------ -- 20.23 function Element_Image ------------------------------------------------------------------------------ function Element_Image (Element : Asis.Element) return Program_Text; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns a program text image of the element. The image of an element can -- span more than one line, in which case the program text returned by the -- function Delimiter_Image separates the individual lines. The bounds on -- the returned program text value are 1..N, N is as large as necessary. -- -- Returns a null string if not Is_Text_Available(Element). -- -- If an Element's Span begins at column position P, the returned program text -- will be padded at the beginning with P-1 white space characters (ASCII.' ' -- or ASCII.Ht). The first character of the Element's image will thus begin -- at character P of the returned program text. Due to the possible presence -- of ASCII.Ht characters, the "column" position of characters within the -- image might not be the same as their print-column positions when the image -- is displayed on a screen or printed. -- -- NOTE: The image of a large element can exceed the range of Program_Text. -- In this case, the exception ASIS_Failed is raised with a Status of -- Capacity_Error. Use the Lines function to operate on the image of large -- elements. -- ------------------------------------------------------------------------------ -- 20.24 function Line_Image ------------------------------------------------------------------------------ function Line_Image (The_Line : Line) return Program_Text; ------------------------------------------------------------------------------ -- The_Line - Specifies the line to query -- -- Returns a program text image of the line. The image of a single lexical -- element can be sliced from the returned value using the first and last -- column character positions from the Span of the Element. The bounds on the -- returned program text are 1 .. Length(Line). -- -- If the Line is the first line from the Lines result for an Element, it can -- represent only a portion of a line from the original compilation. If the -- span began at character position P, the first Line of it's Lines -- result is padded at the beginning with P-1 white space characters -- (ASCII.' ' or ASCII.Ht). The first character of the image will -- thus begin at character P of the program text for the first Line. Due to -- the possible presence of ASCII.Ht characters, the "column" position of -- characters within the image may not be the same as their print-column -- positions when the image is displayed or printed. -- -- Similarly, if the Line is the last line from the Lines result for an -- Element, it may represent only a portion of a line from the original -- compilation. The program text image of such a Line is shorter than the -- line from compilation and will contain only the initial portion of -- that line. -- -- Raises ASIS_Inappropriate_Line if Is_Nil (The_Line). -- ------------------------------------------------------------------------------ -- 20.25 function Non_Comment_Image ------------------------------------------------------------------------------ function Non_Comment_Image (The_Line : Line) return Program_Text; ------------------------------------------------------------------------------ -- The_Line - Specifies the line to query -- -- Returns a program text image of a Line up to, but excluding, any comment -- appearing in that Line. -- -- The value returned is the same as that returned by the Image function, -- except that any hyphens ("--") that start a comment, and any characters -- that follow those hyphens, are dropped. -- -- The bounds on the returned program text are 1..N, where N is one less than -- the column of any hyphens ("--") that start a comment on the line. -- -- Raises ASIS_Inappropriate_Line if Is_Nil (The_Line). -- ------------------------------------------------------------------------------ -- 20.26 function Comment_Image ------------------------------------------------------------------------------ function Comment_Image (The_Line : Line) return Program_Text; ------------------------------------------------------------------------------ -- The_Line - Specifies the line to query -- -- Returns a program text image of any comment on that line, excluding any -- lexical elements preceding the comment. -- -- The value returned is the same as that returned by the Image function, -- except that any program text prior to the two adjacent hyphens ("--") which -- start a comment is replaced by an equal number of spaces. If the hyphens -- began in column P of the Line, they will also begin in character position -- P of the returned program text. -- -- A null string is returned if the line has no comment. -- -- The bounds of the program text are 1..N, where N is as large as necessary. -- -- Raises ASIS_Inappropriate_Line if Is_Nil (The_Line). -- ------------------------------------------------------------------------------ -- 20.27 function Is_Text_Available ------------------------------------------------------------------------------ function Is_Text_Available (Element : Asis.Element) return Boolean; ------------------------------------------------------------------------------ -- Element - Specifies the element to query -- -- Returns True if the implementation can return a valid text image for the -- given element. -- -- Returns False for any Element that Is_Nil, Is_Part_Of_Implicit, or -- Is_Part_Of_Instance. -- -- Returns False if the text of the element cannot be located for any reason -- such as renaming, deletion, or moving of text. -- -- --|IR Implementation Requirements: -- --|IR -- --|IR An implementation shall make text available for all explicit -- --|IR elements. -- ------------------------------------------------------------------------------ -- 20.28 function Debug_Image ------------------------------------------------------------------------------ function Debug_Image (The_Line : Line) return Wide_String; ------------------------------------------------------------------------------ -- The_Line - Specifies the line to convert -- -- Returns a string value containing implementation-defined debug -- information associated with the line. -- -- The return value uses Asis.Text.Delimiter_Image to separate the lines -- of multi-line results. The return value does not end with -- Asis.Text.Delimiter_Image. -- -- These values are intended for two purposes. They are suitable for -- inclusion in problem reports sent to the ASIS implementor. They can -- be presumed to contain information useful when debugging the -- implementation itself. They are also suitable for use by the ASIS -- application when printing simple application debugging messages during -- application development. They are intended to be, to some worthwhile -- degree, intelligible to the user. -- ------------------------------------------------------------------------------ private -- The content of this private part is specific for the ASIS -- implementation for GNAT ------------------------------------------------------------------------------ type Line is record Sloc : Source_Ptr := No_Location; Comment_Sloc : Source_Ptr := No_Location; Length : Character_Position := 0; Rel_Sloc : Source_Ptr := No_Location; Enclosing_Unit : Unit_Id := Nil_Unit; Enclosing_Context : Context_Id := Non_Associated; Enclosing_Tree : Tree_Id := Nil_Tree; Obtained : ASIS_OS_Time := Nil_ASIS_OS_Time; end record; Nil_Line : constant Line := (Sloc => No_Location, Comment_Sloc => No_Location, Length => 0, Rel_Sloc => No_Location, Enclosing_Unit => Nil_Unit, Enclosing_Context => Non_Associated, Enclosing_Tree => Nil_Tree, Obtained => Nil_ASIS_OS_Time); -- Note, that Line does not have the predefined "=" operation (it is -- overridden by an abstract "=". The predefined "=" is explicitly -- simulated in the implementation of Is_Nil query, so, if the full -- declaration for Line is changed, the body of Is_Nil should be revised. ----------------------------- -- Fields in the Line type -- ----------------------------- -- Sloc : Source_Ptr := No_Location; -- indicates the beginning of the corresponding line in the Source -- Buffer. If a given Line is the first line covering the Image of -- some Element, the position in the Source Buffer pointed by Sloc -- may or may not correspond to the beginning of the source text -- line -- -- Comment_Sloc - represents the starting Sloc position of a comment -- that is a part of the line. Set to 0 if the line does not contain a -- a comment. Note, that we assume that in the comment text the bracket -- encoding can not be used for wide characters -- -- Length : Character_Position := 0; -- represents the length of the Line, excluding any character -- signifying end of line (RM95, 2.2(2)) -- Note, that in the compiler lines of the source code are represented -- using the String type, and if the line contains a wide character that -- requires more than one one-byte character for its representation, the -- length of one-byte character string used to represent wide-character -- string from the source code may be bigger then the length of the -- original source line (length here is the number of characters). In the -- Line type we keep the lenth of the source line counted in source -- characters, but not the length of the internal representation in -- one-byte characters. Note that this length does not depend on the -- encoding method. -- -- Rel_Sloc : Source_Ptr := No_Location; -- needed to compare string representing elements of the same -- compilation units, but probably obtained from different trees -- containing this unit. Obtained in the same way as for Elements - -- by subtracting from Sloc field the source location of the -- N_Compilation_Unit node -- -- Enclosing_Unit : Unit_Id := Nil_Unit; -- Enclosing_Context : Context_Id := Non_Associated; -- These fields represent the Context in which and the Compilation -- Unit from which the given line was obtained, they are needed -- for comparing Lines and for tree swapping when obtaining -- Line_Image -- -- Enclosing_Tree : Tree_Id := Nil_Tree; -- Sloc field may be used for obtaining the image of a Line only in -- the tree from which it was obtained. So the Line has to keep -- the reference to the tree for tree swapping -- -- Obtained : ASIS_OS_Time := Nil_ASIS_OS_Time; -- Lines, as well as Elements, cannot be used after closing the -- Context from which they were obtained. We use time comparing -- to check the validity of a Line -- In the current implementation, ASIS Lines are mapped onto logical -- GNAT lines, as defined in the Sinput package. -- The child package Asis.Text.Set_Get defines operations for -- accessing and updating fields of Lines, for checking the validity -- of a Line and for creating the new value of the Line type. -- (This package is similar to the Asis.Set_Get package, which -- defines similar things for other ASIS abstractions - Element, -- Context, Compilation_Unit.) Nil_Line_List : constant Line_List (1 .. 0) := (1 .. 0 => Nil_Line); ------------------------------------------------------------------------------ end Asis.Text;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . C O M P L E X _ A U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routines for Ada.Wide_Text_IO.Complex_IO that -- are shared among separate instantiations of this package. The routines -- in this package are identical semantically to those in Complex_IO itself, -- except that the generic parameter Complex has been replaced by separate -- real and imaginary values of type Long_Long_Float, and default parameters -- have been removed because they are supplied explicitly by the calls from -- within the generic template. package Ada.Wide_Text_IO.Complex_Aux is procedure Get (File : File_Type; ItemR : out Long_Long_Float; ItemI : out Long_Long_Float; Width : Field); procedure Gets (From : String; ItemR : out Long_Long_Float; ItemI : out Long_Long_Float; Last : out Positive); procedure Put (File : File_Type; ItemR : Long_Long_Float; ItemI : Long_Long_Float; Fore : Field; Aft : Field; Exp : Field); procedure Puts (To : out String; ItemR : Long_Long_Float; ItemI : Long_Long_Float; Aft : Field; Exp : Field); end Ada.Wide_Text_IO.Complex_Aux;
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with glib.Values; with System; with glib; with System; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstobject_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h; with Interfaces.C.Strings; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_interfaces_navigation_h is -- unsupported macro: GST_TYPE_NAVIGATION (gst_navigation_get_type ()) -- arg-macro: function GST_NAVIGATION (obj) -- return G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NAVIGATION, GstNavigation); -- arg-macro: function GST_IS_NAVIGATION (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NAVIGATION); -- arg-macro: function GST_NAVIGATION_GET_IFACE (obj) -- return G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_NAVIGATION, GstNavigationInterface); -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_MENU GST_NAVIGATION_COMMAND_MENU1 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_TITLE_MENU GST_NAVIGATION_COMMAND_MENU2 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_ROOT_MENU GST_NAVIGATION_COMMAND_MENU3 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_SUBPICTURE_MENU GST_NAVIGATION_COMMAND_MENU4 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_AUDIO_MENU GST_NAVIGATION_COMMAND_MENU5 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_ANGLE_MENU GST_NAVIGATION_COMMAND_MENU6 -- unsupported macro: GST_NAVIGATION_COMMAND_DVD_CHAPTER_MENU GST_NAVIGATION_COMMAND_MENU7 -- GStreamer Navigation -- * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net> -- * Copyright (C) 2003 David A. Schleef <ds@schleef.org> -- * -- * navigation.h: navigation interface design -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library General Public -- * License as published by the Free Software Foundation; either -- * version 2 of the License, or (at your option) any later version. -- * -- * This library is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- -- skipped empty struct u_GstNavigation -- skipped empty struct GstNavigation type GstNavigationInterface; type u_GstNavigationInterface_u_gst_reserved_array is array (0 .. 3) of System.Address; --subtype GstNavigationInterface is u_GstNavigationInterface; -- gst/interfaces/navigation.h:40 --* -- * GstNavigationInterface: -- * @g_iface: the parent interface -- * @send_event: sending a navigation event -- * -- * Color-balance interface. -- type GstNavigationInterface is record g_iface : aliased GStreamer.GST_Low_Level.glib_2_0_gobject_gtype_h.GTypeInterface; -- gst/interfaces/navigation.h:50 send_event : access procedure (arg1 : System.Address; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h.GstStructure); -- gst/interfaces/navigation.h:53 u_gst_reserved : u_GstNavigationInterface_u_gst_reserved_array; -- gst/interfaces/navigation.h:56 end record; pragma Convention (C_Pass_By_Copy, GstNavigationInterface); -- gst/interfaces/navigation.h:49 -- virtual functions --< private > function gst_navigation_get_type return GLIB.GType; -- gst/interfaces/navigation.h:59 pragma Import (C, gst_navigation_get_type, "gst_navigation_get_type"); -- Navigation commands --* -- * GstNavigationCommand: -- * @GST_NAVIGATION_COMMAND_INVALID: An invalid command entry -- * @GST_NAVIGATION_COMMAND_MENU1: Execute navigation menu command 1. For DVD, -- * this enters the DVD root menu, or exits back to the title from the menu. -- * @GST_NAVIGATION_COMMAND_MENU2: Execute navigation menu command 2. For DVD, -- * this jumps to the DVD title menu. -- * @GST_NAVIGATION_COMMAND_MENU3: Execute navigation menu command 3. For DVD, -- * this jumps into the DVD root menu. -- * @GST_NAVIGATION_COMMAND_MENU4: Execute navigation menu command 4. For DVD, -- * this jumps to the Subpicture menu. -- * @GST_NAVIGATION_COMMAND_MENU5: Execute navigation menu command 5. For DVD, -- * the jumps to the audio menu. -- * @GST_NAVIGATION_COMMAND_MENU6: Execute navigation menu command 6. For DVD, -- * this jumps to the angles menu. -- * @GST_NAVIGATION_COMMAND_MENU7: Execute navigation menu command 7. For DVD, -- * this jumps to the chapter menu. -- * @GST_NAVIGATION_COMMAND_LEFT: Select the next button to the left in a menu, -- * if such a button exists. -- * @GST_NAVIGATION_COMMAND_RIGHT: Select the next button to the right in a menu, -- * if such a button exists. -- * @GST_NAVIGATION_COMMAND_UP: Select the button above the current one in a -- * menu, if such a button exists. -- * @GST_NAVIGATION_COMMAND_DOWN: Select the button below the current one in a -- * menu, if such a button exists. -- * @GST_NAVIGATION_COMMAND_ACTIVATE: Activate (click) the currently selected -- * button in a menu, if such a button exists. -- * @GST_NAVIGATION_COMMAND_PREV_ANGLE: Switch to the previous angle in a -- * multiangle feature. -- * @GST_NAVIGATION_COMMAND_NEXT_ANGLE: Switch to the next angle in a multiangle -- * feature. -- * -- * A set of commands that may be issued to an element providing the -- * #GstNavigation interface. The available commands can be queried via -- * the gst_navigation_query_new_commands() query. -- * -- * For convenience in handling DVD navigation, the MENU commands are aliased as: -- * GST_NAVIGATION_COMMAND_DVD_MENU = @GST_NAVIGATION_COMMAND_MENU1 -- * GST_NAVIGATION_COMMAND_DVD_TITLE_MENU = @GST_NAVIGATION_COMMAND_MENU2 -- * GST_NAVIGATION_COMMAND_DVD_ROOT_MENU = @GST_NAVIGATION_COMMAND_MENU3 -- * GST_NAVIGATION_COMMAND_DVD_SUBPICTURE_MENU = @GST_NAVIGATION_COMMAND_MENU4 -- * GST_NAVIGATION_COMMAND_DVD_AUDIO_MENU = @GST_NAVIGATION_COMMAND_MENU5 -- * GST_NAVIGATION_COMMAND_DVD_ANGLE_MENU = @GST_NAVIGATION_COMMAND_MENU6 -- * GST_NAVIGATION_COMMAND_DVD_CHAPTER_MENU = @GST_NAVIGATION_COMMAND_MENU7 -- * -- * Since: 0.10.23 -- subtype GstNavigationCommand is unsigned; GST_NAVIGATION_COMMAND_INVALID : constant GstNavigationCommand := 0; GST_NAVIGATION_COMMAND_MENU1 : constant GstNavigationCommand := 1; GST_NAVIGATION_COMMAND_MENU2 : constant GstNavigationCommand := 2; GST_NAVIGATION_COMMAND_MENU3 : constant GstNavigationCommand := 3; GST_NAVIGATION_COMMAND_MENU4 : constant GstNavigationCommand := 4; GST_NAVIGATION_COMMAND_MENU5 : constant GstNavigationCommand := 5; GST_NAVIGATION_COMMAND_MENU6 : constant GstNavigationCommand := 6; GST_NAVIGATION_COMMAND_MENU7 : constant GstNavigationCommand := 7; GST_NAVIGATION_COMMAND_LEFT : constant GstNavigationCommand := 20; GST_NAVIGATION_COMMAND_RIGHT : constant GstNavigationCommand := 21; GST_NAVIGATION_COMMAND_UP : constant GstNavigationCommand := 22; GST_NAVIGATION_COMMAND_DOWN : constant GstNavigationCommand := 23; GST_NAVIGATION_COMMAND_ACTIVATE : constant GstNavigationCommand := 24; GST_NAVIGATION_COMMAND_PREV_ANGLE : constant GstNavigationCommand := 30; GST_NAVIGATION_COMMAND_NEXT_ANGLE : constant GstNavigationCommand := 31; -- gst/interfaces/navigation.h:129 -- Some aliases for the menu command types -- Queries --* -- * GstNavigationQueryType: -- * @GST_NAVIGATION_QUERY_INVALID: invalid query -- * @GST_NAVIGATION_QUERY_COMMANDS: command query -- * @GST_NAVIGATION_QUERY_ANGLES: viewing angle query -- * -- * Tyoes of navigation interface queries. -- type GstNavigationQueryType is (GST_NAVIGATION_QUERY_INVALID, GST_NAVIGATION_QUERY_COMMANDS, GST_NAVIGATION_QUERY_ANGLES); pragma Convention (C, GstNavigationQueryType); -- gst/interfaces/navigation.h:154 function gst_navigation_query_get_type (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery) return GstNavigationQueryType; -- gst/interfaces/navigation.h:156 pragma Import (C, gst_navigation_query_get_type, "gst_navigation_query_get_type"); function gst_navigation_query_new_commands return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; -- gst/interfaces/navigation.h:158 pragma Import (C, gst_navigation_query_new_commands, "gst_navigation_query_new_commands"); procedure gst_navigation_query_set_commands (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; n_cmds : GLIB.gint -- , ... ); -- gst/interfaces/navigation.h:159 pragma Import (C, gst_navigation_query_set_commands, "gst_navigation_query_set_commands"); procedure gst_navigation_query_set_commandsv (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; n_cmds : GLIB.gint; cmds : access GstNavigationCommand); -- gst/interfaces/navigation.h:160 pragma Import (C, gst_navigation_query_set_commandsv, "gst_navigation_query_set_commandsv"); function gst_navigation_query_parse_commands_length (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; n_cmds : access GLIB.guint) return GLIB.gboolean; -- gst/interfaces/navigation.h:162 pragma Import (C, gst_navigation_query_parse_commands_length, "gst_navigation_query_parse_commands_length"); function gst_navigation_query_parse_commands_nth (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; nth : GLIB.guint; cmd : access GstNavigationCommand) return GLIB.gboolean; -- gst/interfaces/navigation.h:164 pragma Import (C, gst_navigation_query_parse_commands_nth, "gst_navigation_query_parse_commands_nth"); function gst_navigation_query_new_angles return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; -- gst/interfaces/navigation.h:167 pragma Import (C, gst_navigation_query_new_angles, "gst_navigation_query_new_angles"); procedure gst_navigation_query_set_angles (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; cur_angle : GLIB.guint; n_angles : GLIB.guint); -- gst/interfaces/navigation.h:168 pragma Import (C, gst_navigation_query_set_angles, "gst_navigation_query_set_angles"); function gst_navigation_query_parse_angles (query : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstquery_h.GstQuery; cur_angle : access GLIB.guint; n_angles : access GLIB.guint) return GLIB.gboolean; -- gst/interfaces/navigation.h:170 pragma Import (C, gst_navigation_query_parse_angles, "gst_navigation_query_parse_angles"); -- Element messages --* -- * GstNavigationMessageType: -- * @GST_NAVIGATION_MESSAGE_INVALID: Returned from -- * gst_navigation_message_get_type() when the passed message is not a -- * navigation message. -- * @GST_NAVIGATION_MESSAGE_MOUSE_OVER: Sent when the mouse moves over or leaves a -- * clickable region of the output, such as a DVD menu button. -- * @GST_NAVIGATION_MESSAGE_COMMANDS_CHANGED: Sent when the set of available commands -- * changes and should re-queried by interested applications. -- * @GST_NAVIGATION_MESSAGE_ANGLES_CHANGED: Sent when display angles in a multi-angle -- * feature (such as a multiangle DVD) change - either angles have appeared or -- * disappeared. -- * -- * A set of notifications that may be received on the bus when navigation -- * related status changes. -- * -- * Since: 0.10.23 -- type GstNavigationMessageType is (GST_NAVIGATION_MESSAGE_INVALID, GST_NAVIGATION_MESSAGE_MOUSE_OVER, GST_NAVIGATION_MESSAGE_COMMANDS_CHANGED, GST_NAVIGATION_MESSAGE_ANGLES_CHANGED); pragma Convention (C, GstNavigationMessageType); -- gst/interfaces/navigation.h:197 function gst_navigation_message_get_type (message : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage) return GstNavigationMessageType; -- gst/interfaces/navigation.h:199 pragma Import (C, gst_navigation_message_get_type, "gst_navigation_message_get_type"); function gst_navigation_message_new_mouse_over (src : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstobject_h.GstObject; active : GLIB.gboolean) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage; -- gst/interfaces/navigation.h:201 pragma Import (C, gst_navigation_message_new_mouse_over, "gst_navigation_message_new_mouse_over"); function gst_navigation_message_parse_mouse_over (message : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage; active : access GLIB.gboolean) return GLIB.gboolean; -- gst/interfaces/navigation.h:203 pragma Import (C, gst_navigation_message_parse_mouse_over, "gst_navigation_message_parse_mouse_over"); function gst_navigation_message_new_commands_changed (src : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstobject_h.GstObject) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage; -- gst/interfaces/navigation.h:206 pragma Import (C, gst_navigation_message_new_commands_changed, "gst_navigation_message_new_commands_changed"); function gst_navigation_message_new_angles_changed (src : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstobject_h.GstObject; cur_angle : GLIB.guint; n_angles : GLIB.guint) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage; -- gst/interfaces/navigation.h:208 pragma Import (C, gst_navigation_message_new_angles_changed, "gst_navigation_message_new_angles_changed"); function gst_navigation_message_parse_angles_changed (message : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstmessage_h.GstMessage; cur_angle : access GLIB.guint; n_angles : access GLIB.guint) return GLIB.gboolean; -- gst/interfaces/navigation.h:211 pragma Import (C, gst_navigation_message_parse_angles_changed, "gst_navigation_message_parse_angles_changed"); -- event parsing functions --* -- * GstNavigationEventType: -- * @GST_NAVIGATION_EVENT_INVALID: Returned from -- * gst_navigation_event_get_type() when the passed event is not a navigation event. -- * @GST_NAVIGATION_EVENT_KEY_PRESS: A key press event. Use -- * gst_navigation_event_parse_key_event() to extract the details from the event. -- * @GST_NAVIGATION_EVENT_KEY_RELEASE: A key release event. Use -- * gst_navigation_event_parse_key_event() to extract the details from the event. -- * @GST_NAVIGATION_EVENT_MOUSE_BUTTON_PRESS: A mouse button press event. Use -- * gst_navigation_event_parse_mouse_button_event() to extract the details from the -- * event. -- * @GST_NAVIGATION_EVENT_MOUSE_BUTTON_RELEASE: A mouse button release event. Use -- * gst_navigation_event_parse_mouse_button_event() to extract the details from the -- * event. -- * @GST_NAVIGATION_EVENT_MOUSE_MOVE: A mouse movement event. Use -- * gst_navigation_event_parse_mouse_move_event() to extract the details from the -- * event. -- * @GST_NAVIGATION_EVENT_COMMAND: A navigation command event. Use -- * gst_navigation_event_parse_command() to extract the details from the event. -- * -- * Enum values for the various events that an element implementing the -- * GstNavigation interface might send up the pipeline. -- * -- * Since: 0.10.23 -- type GstNavigationEventType is (GST_NAVIGATION_EVENT_INVALID, GST_NAVIGATION_EVENT_KEY_PRESS, GST_NAVIGATION_EVENT_KEY_RELEASE, GST_NAVIGATION_EVENT_MOUSE_BUTTON_PRESS, GST_NAVIGATION_EVENT_MOUSE_BUTTON_RELEASE, GST_NAVIGATION_EVENT_MOUSE_MOVE, GST_NAVIGATION_EVENT_COMMAND); pragma Convention (C, GstNavigationEventType); -- gst/interfaces/navigation.h:249 function gst_navigation_event_get_type (event : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h.GstEvent) return GstNavigationEventType; -- gst/interfaces/navigation.h:251 pragma Import (C, gst_navigation_event_get_type, "gst_navigation_event_get_type"); function gst_navigation_event_parse_key_event (event : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h.GstEvent; key : System.Address) return GLIB.gboolean; -- gst/interfaces/navigation.h:252 pragma Import (C, gst_navigation_event_parse_key_event, "gst_navigation_event_parse_key_event"); function gst_navigation_event_parse_mouse_button_event (event : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h.GstEvent; button : access GLIB.gint; x : access GLIB.gdouble; y : access GLIB.gdouble) return GLIB.gboolean; -- gst/interfaces/navigation.h:254 pragma Import (C, gst_navigation_event_parse_mouse_button_event, "gst_navigation_event_parse_mouse_button_event"); function gst_navigation_event_parse_mouse_move_event (event : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h.GstEvent; x : access GLIB.gdouble; y : access GLIB.gdouble) return GLIB.gboolean; -- gst/interfaces/navigation.h:256 pragma Import (C, gst_navigation_event_parse_mouse_move_event, "gst_navigation_event_parse_mouse_move_event"); function gst_navigation_event_parse_command (event : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstevent_h.GstEvent; command : access GstNavigationCommand) return GLIB.gboolean; -- gst/interfaces/navigation.h:258 pragma Import (C, gst_navigation_event_parse_command, "gst_navigation_event_parse_command"); -- interface virtual function wrappers procedure gst_navigation_send_event (navigation : System.Address; structure : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h.GstStructure); -- gst/interfaces/navigation.h:262 pragma Import (C, gst_navigation_send_event, "gst_navigation_send_event"); procedure gst_navigation_send_key_event (navigation : System.Address; event : Interfaces.C.Strings.chars_ptr; key : Interfaces.C.Strings.chars_ptr); -- gst/interfaces/navigation.h:264 pragma Import (C, gst_navigation_send_key_event, "gst_navigation_send_key_event"); procedure gst_navigation_send_mouse_event (navigation : System.Address; event : Interfaces.C.Strings.chars_ptr; button : int; x : double; y : double); -- gst/interfaces/navigation.h:266 pragma Import (C, gst_navigation_send_mouse_event, "gst_navigation_send_mouse_event"); procedure gst_navigation_send_command (navigation : System.Address; command : GstNavigationCommand); -- gst/interfaces/navigation.h:268 pragma Import (C, gst_navigation_send_command, "gst_navigation_send_command"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_interfaces_navigation_h;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; procedure pgcd is function PGCD_Euclide (a : Integer; b : Integer) return Integer is p : Integer := a; q : Integer := b; r : Integer; begin while q /= 0 loop r := p; p := q; q := r mod p; end loop; return p; end PGCD_Euclide; function PGCD_Diff (a : Integer; b : Integer) return Integer is p : Integer := a; q : Integer := b; begin while p /= q loop if p > q then p := p - q; else q := q - p; end if; end loop; return p; end PGCD_Diff; a, b : Integer; begin loop Put(">>> a = "); Get(a); exit when a = -1; Put(">>> b = "); Get(b); Put_Line("Euclide : " & Integer'Image(PGCD_Euclide(a, b))); Put_Line("Différences : " & Integer'Image(PGCD_Diff(a, b))); end loop; end pgcd;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package xsavesintrin_h is -- Copyright (C) 2014-2017 Free Software Foundation, Inc. -- This file is part of GCC. -- GCC is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3, or (at your option) -- any later version. -- GCC is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- Under Section 7 of GPL version 3, you are granted additional -- permissions described in the GCC Runtime Library Exception, version -- 3.1, as published by the Free Software Foundation. -- You should have received a copy of the GNU General Public License and -- a copy of the GCC Runtime Library Exception along with this program; -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- <http://www.gnu.org/licenses/>. -- skipped func _xsaves -- skipped func _xrstors -- skipped func _xrstors64 -- skipped func _xsaves64 end xsavesintrin_h;
-- This spec has been automatically generated from STM32F40x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.ADC is pragma Preelaborate; --------------- -- Registers -- --------------- -- status register type SR_Register is record -- Analog watchdog flag AWD : Boolean := False; -- Regular channel end of conversion EOC : Boolean := False; -- Injected channel end of conversion JEOC : Boolean := False; -- Injected channel start flag JSTRT : Boolean := False; -- Regular channel start flag STRT : Boolean := False; -- Overrun OVR : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record AWD at 0 range 0 .. 0; EOC at 0 range 1 .. 1; JEOC at 0 range 2 .. 2; JSTRT at 0 range 3 .. 3; STRT at 0 range 4 .. 4; OVR at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype CR1_AWDCH_Field is HAL.UInt5; subtype CR1_DISCNUM_Field is HAL.UInt3; subtype CR1_RES_Field is HAL.UInt2; -- control register 1 type CR1_Register is record -- Analog watchdog channel select bits AWDCH : CR1_AWDCH_Field := 16#0#; -- Interrupt enable for EOC EOCIE : Boolean := False; -- Analog watchdog interrupt enable AWDIE : Boolean := False; -- Interrupt enable for injected channels JEOCIE : Boolean := False; -- Scan mode SCAN : Boolean := False; -- Enable the watchdog on a single channel in scan mode AWDSGL : Boolean := False; -- Automatic injected group conversion JAUTO : Boolean := False; -- Discontinuous mode on regular channels DISCEN : Boolean := False; -- Discontinuous mode on injected channels JDISCEN : Boolean := False; -- Discontinuous mode channel count DISCNUM : CR1_DISCNUM_Field := 16#0#; -- unspecified Reserved_16_21 : HAL.UInt6 := 16#0#; -- Analog watchdog enable on injected channels JAWDEN : Boolean := False; -- Analog watchdog enable on regular channels AWDEN : Boolean := False; -- Resolution RES : CR1_RES_Field := 16#0#; -- Overrun interrupt enable OVRIE : Boolean := False; -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR1_Register use record AWDCH at 0 range 0 .. 4; EOCIE at 0 range 5 .. 5; AWDIE at 0 range 6 .. 6; JEOCIE at 0 range 7 .. 7; SCAN at 0 range 8 .. 8; AWDSGL at 0 range 9 .. 9; JAUTO at 0 range 10 .. 10; DISCEN at 0 range 11 .. 11; JDISCEN at 0 range 12 .. 12; DISCNUM at 0 range 13 .. 15; Reserved_16_21 at 0 range 16 .. 21; JAWDEN at 0 range 22 .. 22; AWDEN at 0 range 23 .. 23; RES at 0 range 24 .. 25; OVRIE at 0 range 26 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; subtype CR2_JEXTSEL_Field is HAL.UInt4; subtype CR2_JEXTEN_Field is HAL.UInt2; subtype CR2_EXTSEL_Field is HAL.UInt4; subtype CR2_EXTEN_Field is HAL.UInt2; -- control register 2 type CR2_Register is record -- A/D Converter ON / OFF ADON : Boolean := False; -- Continuous conversion CONT : Boolean := False; -- unspecified Reserved_2_7 : HAL.UInt6 := 16#0#; -- Direct memory access mode (for single ADC mode) DMA : Boolean := False; -- DMA disable selection (for single ADC mode) DDS : Boolean := False; -- End of conversion selection EOCS : Boolean := False; -- Data alignment ALIGN : Boolean := False; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- External event select for injected group JEXTSEL : CR2_JEXTSEL_Field := 16#0#; -- External trigger enable for injected channels JEXTEN : CR2_JEXTEN_Field := 16#0#; -- Start conversion of injected channels JSWSTART : Boolean := False; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- External event select for regular group EXTSEL : CR2_EXTSEL_Field := 16#0#; -- External trigger enable for regular channels EXTEN : CR2_EXTEN_Field := 16#0#; -- Start conversion of regular channels SWSTART : 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 CR2_Register use record ADON at 0 range 0 .. 0; CONT at 0 range 1 .. 1; Reserved_2_7 at 0 range 2 .. 7; DMA at 0 range 8 .. 8; DDS at 0 range 9 .. 9; EOCS at 0 range 10 .. 10; ALIGN at 0 range 11 .. 11; Reserved_12_15 at 0 range 12 .. 15; JEXTSEL at 0 range 16 .. 19; JEXTEN at 0 range 20 .. 21; JSWSTART at 0 range 22 .. 22; Reserved_23_23 at 0 range 23 .. 23; EXTSEL at 0 range 24 .. 27; EXTEN at 0 range 28 .. 29; SWSTART at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- SMPR1_SMP array element subtype SMPR1_SMP_Element is HAL.UInt3; -- SMPR1_SMP array type SMPR1_SMP_Field_Array is array (10 .. 18) of SMPR1_SMP_Element with Component_Size => 3, Size => 27; -- Type definition for SMPR1_SMP type SMPR1_SMP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SMP as a value Val : HAL.UInt27; when True => -- SMP as an array Arr : SMPR1_SMP_Field_Array; end case; end record with Unchecked_Union, Size => 27; for SMPR1_SMP_Field use record Val at 0 range 0 .. 26; Arr at 0 range 0 .. 26; end record; -- sample time register 1 type SMPR1_Register is record -- Sample time bits SMP : SMPR1_SMP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SMPR1_Register use record SMP at 0 range 0 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; -- SMPR2_SMP array element subtype SMPR2_SMP_Element is HAL.UInt3; -- SMPR2_SMP array type SMPR2_SMP_Field_Array is array (0 .. 9) of SMPR2_SMP_Element with Component_Size => 3, Size => 30; -- Type definition for SMPR2_SMP type SMPR2_SMP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SMP as a value Val : HAL.UInt30; when True => -- SMP as an array Arr : SMPR2_SMP_Field_Array; end case; end record with Unchecked_Union, Size => 30; for SMPR2_SMP_Field use record Val at 0 range 0 .. 29; Arr at 0 range 0 .. 29; end record; -- sample time register 2 type SMPR2_Register is record -- Sample time bits SMP : SMPR2_SMP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SMPR2_Register use record SMP at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype JOFR1_JOFFSET1_Field is HAL.UInt12; -- injected channel data offset register x type JOFR1_Register is record -- Data offset for injected channel x JOFFSET1 : JOFR1_JOFFSET1_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 JOFR1_Register use record JOFFSET1 at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype JOFR2_JOFFSET2_Field is HAL.UInt12; -- injected channel data offset register x type JOFR2_Register is record -- Data offset for injected channel x JOFFSET2 : JOFR2_JOFFSET2_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 JOFR2_Register use record JOFFSET2 at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype JOFR3_JOFFSET3_Field is HAL.UInt12; -- injected channel data offset register x type JOFR3_Register is record -- Data offset for injected channel x JOFFSET3 : JOFR3_JOFFSET3_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 JOFR3_Register use record JOFFSET3 at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype JOFR4_JOFFSET4_Field is HAL.UInt12; -- injected channel data offset register x type JOFR4_Register is record -- Data offset for injected channel x JOFFSET4 : JOFR4_JOFFSET4_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 JOFR4_Register use record JOFFSET4 at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype HTR_HT_Field is HAL.UInt12; -- watchdog higher threshold register type HTR_Register is record -- Analog watchdog higher threshold HT : HTR_HT_Field := 16#FFF#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HTR_Register use record HT at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype LTR_LT_Field is HAL.UInt12; -- watchdog lower threshold register type LTR_Register is record -- Analog watchdog lower threshold LT : LTR_LT_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 LTR_Register use record LT at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; -- SQR1_SQ array element subtype SQR1_SQ_Element is HAL.UInt5; -- SQR1_SQ array type SQR1_SQ_Field_Array is array (13 .. 16) of SQR1_SQ_Element with Component_Size => 5, Size => 20; -- Type definition for SQR1_SQ type SQR1_SQ_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SQ as a value Val : HAL.UInt20; when True => -- SQ as an array Arr : SQR1_SQ_Field_Array; end case; end record with Unchecked_Union, Size => 20; for SQR1_SQ_Field use record Val at 0 range 0 .. 19; Arr at 0 range 0 .. 19; end record; subtype SQR1_L_Field is HAL.UInt4; -- regular sequence register 1 type SQR1_Register is record -- 13th conversion in regular sequence SQ : SQR1_SQ_Field := (As_Array => False, Val => 16#0#); -- Regular channel sequence length L : SQR1_L_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SQR1_Register use record SQ at 0 range 0 .. 19; L at 0 range 20 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- SQR2_SQ array element subtype SQR2_SQ_Element is HAL.UInt5; -- SQR2_SQ array type SQR2_SQ_Field_Array is array (7 .. 12) of SQR2_SQ_Element with Component_Size => 5, Size => 30; -- Type definition for SQR2_SQ type SQR2_SQ_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SQ as a value Val : HAL.UInt30; when True => -- SQ as an array Arr : SQR2_SQ_Field_Array; end case; end record with Unchecked_Union, Size => 30; for SQR2_SQ_Field use record Val at 0 range 0 .. 29; Arr at 0 range 0 .. 29; end record; -- regular sequence register 2 type SQR2_Register is record -- 7th conversion in regular sequence SQ : SQR2_SQ_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SQR2_Register use record SQ at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- SQR3_SQ array element subtype SQR3_SQ_Element is HAL.UInt5; -- SQR3_SQ array type SQR3_SQ_Field_Array is array (1 .. 6) of SQR3_SQ_Element with Component_Size => 5, Size => 30; -- Type definition for SQR3_SQ type SQR3_SQ_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SQ as a value Val : HAL.UInt30; when True => -- SQ as an array Arr : SQR3_SQ_Field_Array; end case; end record with Unchecked_Union, Size => 30; for SQR3_SQ_Field use record Val at 0 range 0 .. 29; Arr at 0 range 0 .. 29; end record; -- regular sequence register 3 type SQR3_Register is record -- 1st conversion in regular sequence SQ : SQR3_SQ_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SQR3_Register use record SQ at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- JSQR_JSQ array element subtype JSQR_JSQ_Element is HAL.UInt5; -- JSQR_JSQ array type JSQR_JSQ_Field_Array is array (1 .. 4) of JSQR_JSQ_Element with Component_Size => 5, Size => 20; -- Type definition for JSQR_JSQ type JSQR_JSQ_Field (As_Array : Boolean := False) is record case As_Array is when False => -- JSQ as a value Val : HAL.UInt20; when True => -- JSQ as an array Arr : JSQR_JSQ_Field_Array; end case; end record with Unchecked_Union, Size => 20; for JSQR_JSQ_Field use record Val at 0 range 0 .. 19; Arr at 0 range 0 .. 19; end record; subtype JSQR_JL_Field is HAL.UInt2; -- injected sequence register type JSQR_Register is record -- 1st conversion in injected sequence JSQ : JSQR_JSQ_Field := (As_Array => False, Val => 16#0#); -- Injected sequence length JL : JSQR_JL_Field := 16#0#; -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for JSQR_Register use record JSQ at 0 range 0 .. 19; JL at 0 range 20 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; subtype JDR_JDATA_Field is HAL.UInt16; -- injected data register x type JDR_Register is record -- Read-only. Injected data JDATA : JDR_JDATA_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for JDR_Register use record JDATA at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype DR_DATA_Field is HAL.UInt16; -- regular data register type DR_Register is record -- Read-only. Regular data DATA : DR_DATA_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DR_Register use record DATA at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- ADC Common status register type CSR_Register is record -- Read-only. Analog watchdog flag of ADC 1 AWD1 : Boolean; -- Read-only. End of conversion of ADC 1 EOC1 : Boolean; -- Read-only. Injected channel end of conversion of ADC 1 JEOC1 : Boolean; -- Read-only. Injected channel Start flag of ADC 1 JSTRT1 : Boolean; -- Read-only. Regular channel Start flag of ADC 1 STRT1 : Boolean; -- Read-only. Overrun flag of ADC 1 OVR1 : Boolean; -- unspecified Reserved_6_7 : HAL.UInt2; -- Read-only. Analog watchdog flag of ADC 2 AWD2 : Boolean; -- Read-only. End of conversion of ADC 2 EOC2 : Boolean; -- Read-only. Injected channel end of conversion of ADC 2 JEOC2 : Boolean; -- Read-only. Injected channel Start flag of ADC 2 JSTRT2 : Boolean; -- Read-only. Regular channel Start flag of ADC 2 STRT2 : Boolean; -- Read-only. Overrun flag of ADC 2 OVR2 : Boolean; -- unspecified Reserved_14_15 : HAL.UInt2; -- Read-only. Analog watchdog flag of ADC 3 AWD3 : Boolean; -- Read-only. End of conversion of ADC 3 EOC3 : Boolean; -- Read-only. Injected channel end of conversion of ADC 3 JEOC3 : Boolean; -- Read-only. Injected channel Start flag of ADC 3 JSTRT3 : Boolean; -- Read-only. Regular channel Start flag of ADC 3 STRT3 : Boolean; -- Read-only. Overrun flag of ADC3 OVR3 : Boolean; -- unspecified Reserved_22_31 : HAL.UInt10; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSR_Register use record AWD1 at 0 range 0 .. 0; EOC1 at 0 range 1 .. 1; JEOC1 at 0 range 2 .. 2; JSTRT1 at 0 range 3 .. 3; STRT1 at 0 range 4 .. 4; OVR1 at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; AWD2 at 0 range 8 .. 8; EOC2 at 0 range 9 .. 9; JEOC2 at 0 range 10 .. 10; JSTRT2 at 0 range 11 .. 11; STRT2 at 0 range 12 .. 12; OVR2 at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; AWD3 at 0 range 16 .. 16; EOC3 at 0 range 17 .. 17; JEOC3 at 0 range 18 .. 18; JSTRT3 at 0 range 19 .. 19; STRT3 at 0 range 20 .. 20; OVR3 at 0 range 21 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; subtype CCR_MULT_Field is HAL.UInt5; subtype CCR_DELAY_Field is HAL.UInt4; subtype CCR_DMA_Field is HAL.UInt2; subtype CCR_ADCPRE_Field is HAL.UInt2; -- ADC common control register type CCR_Register is record -- Multi ADC mode selection MULT : CCR_MULT_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Delay between 2 sampling phases DELAY_k : CCR_DELAY_Field := 16#0#; -- unspecified Reserved_12_12 : HAL.Bit := 16#0#; -- DMA disable selection for multi-ADC mode DDS : Boolean := False; -- Direct memory access mode for multi ADC mode DMA : CCR_DMA_Field := 16#0#; -- ADC prescaler ADCPRE : CCR_ADCPRE_Field := 16#0#; -- unspecified Reserved_18_21 : HAL.UInt4 := 16#0#; -- VBAT enable VBATE : Boolean := False; -- Temperature sensor and VREFINT enable TSVREFE : 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 CCR_Register use record MULT at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; DELAY_k at 0 range 8 .. 11; Reserved_12_12 at 0 range 12 .. 12; DDS at 0 range 13 .. 13; DMA at 0 range 14 .. 15; ADCPRE at 0 range 16 .. 17; Reserved_18_21 at 0 range 18 .. 21; VBATE at 0 range 22 .. 22; TSVREFE at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- CDR_DATA array element subtype CDR_DATA_Element is HAL.UInt16; -- CDR_DATA array type CDR_DATA_Field_Array is array (1 .. 2) of CDR_DATA_Element with Component_Size => 16, Size => 32; -- ADC common regular data register for dual and triple modes type CDR_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : CDR_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for CDR_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Analog-to-digital converter type ADC1_Peripheral is record -- status register SR : aliased SR_Register; -- control register 1 CR1 : aliased CR1_Register; -- control register 2 CR2 : aliased CR2_Register; -- sample time register 1 SMPR1 : aliased SMPR1_Register; -- sample time register 2 SMPR2 : aliased SMPR2_Register; -- injected channel data offset register x JOFR1 : aliased JOFR1_Register; -- injected channel data offset register x JOFR2 : aliased JOFR2_Register; -- injected channel data offset register x JOFR3 : aliased JOFR3_Register; -- injected channel data offset register x JOFR4 : aliased JOFR4_Register; -- watchdog higher threshold register HTR : aliased HTR_Register; -- watchdog lower threshold register LTR : aliased LTR_Register; -- regular sequence register 1 SQR1 : aliased SQR1_Register; -- regular sequence register 2 SQR2 : aliased SQR2_Register; -- regular sequence register 3 SQR3 : aliased SQR3_Register; -- injected sequence register JSQR : aliased JSQR_Register; -- injected data register x JDR1 : aliased JDR_Register; -- injected data register x JDR2 : aliased JDR_Register; -- injected data register x JDR3 : aliased JDR_Register; -- injected data register x JDR4 : aliased JDR_Register; -- regular data register DR : aliased DR_Register; end record with Volatile; for ADC1_Peripheral use record SR at 16#0# range 0 .. 31; CR1 at 16#4# range 0 .. 31; CR2 at 16#8# range 0 .. 31; SMPR1 at 16#C# range 0 .. 31; SMPR2 at 16#10# range 0 .. 31; JOFR1 at 16#14# range 0 .. 31; JOFR2 at 16#18# range 0 .. 31; JOFR3 at 16#1C# range 0 .. 31; JOFR4 at 16#20# range 0 .. 31; HTR at 16#24# range 0 .. 31; LTR at 16#28# range 0 .. 31; SQR1 at 16#2C# range 0 .. 31; SQR2 at 16#30# range 0 .. 31; SQR3 at 16#34# range 0 .. 31; JSQR at 16#38# range 0 .. 31; JDR1 at 16#3C# range 0 .. 31; JDR2 at 16#40# range 0 .. 31; JDR3 at 16#44# range 0 .. 31; JDR4 at 16#48# range 0 .. 31; DR at 16#4C# range 0 .. 31; end record; -- Analog-to-digital converter ADC1_Periph : aliased ADC1_Peripheral with Import, Address => System'To_Address (16#40012000#); -- Analog-to-digital converter ADC2_Periph : aliased ADC1_Peripheral with Import, Address => System'To_Address (16#40012100#); -- Analog-to-digital converter ADC3_Periph : aliased ADC1_Peripheral with Import, Address => System'To_Address (16#40012200#); -- Common ADC registers type C_ADC_Peripheral is record -- ADC Common status register CSR : aliased CSR_Register; -- ADC common control register CCR : aliased CCR_Register; -- ADC common regular data register for dual and triple modes CDR : aliased CDR_Register; end record with Volatile; for C_ADC_Peripheral use record CSR at 16#0# range 0 .. 31; CCR at 16#4# range 0 .. 31; CDR at 16#8# range 0 .. 31; end record; -- Common ADC registers C_ADC_Periph : aliased C_ADC_Peripheral with Import, Address => System'To_Address (16#40012300#); end STM32_SVD.ADC;
-- Copyright 2018-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pack is procedure Do_Nothing (A : System.Address); end Pack;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- SYSTEM.TASKING.PROTECTED_OBJECTS.SINGLE_ENTRY -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2020, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram ordering check, since restricted GNARLI subprograms are -- gathered together at end. -- This package provides an optimized version of Protected_Objects.Operations -- and Protected_Objects.Entries making the following assumptions: -- PO has only one entry -- There is only one caller at a time (No_Entry_Queue) -- There is no dynamic priority support (No_Dynamic_Priorities) -- No Abort Statements -- (No_Abort_Statements, Max_Asynchronous_Select_Nesting => 0) -- PO are at library level -- No Requeue -- None of the tasks will terminate (no need for finalization) -- This interface is intended to be used in the ravenscar and restricted -- profiles, the compiler is responsible for ensuring that the conditions -- mentioned above are respected, except for the No_Entry_Queue restriction -- that is checked dynamically in this package, since the check cannot be -- performed at compile time, and is relatively cheap (see PO_Do_Or_Queue, -- Service_Entry). pragma Suppress (All_Checks); -- Why is this required ??? with Ada.Exceptions; with System.Task_Primitives.Operations; package body System.Tasking.Protected_Objects.Single_Entry is package STPO renames System.Task_Primitives.Operations; ----------------------- -- Local Subprograms -- ----------------------- procedure Send_Program_Error (Entry_Call : Entry_Call_Link); pragma Inline (Send_Program_Error); -- Raise Program_Error in the caller of the specified entry call -------------------------- -- Entry Calls Handling -- -------------------------- procedure Wakeup_Entry_Caller (Entry_Call : Entry_Call_Link); pragma Inline (Wakeup_Entry_Caller); -- This is called at the end of service of an entry call, to abort the -- caller if he is in an abortable part, and to wake up the caller if he -- is on Entry_Caller_Sleep. Call it holding the lock of Entry_Call.Self. procedure Wait_For_Completion (Entry_Call : Entry_Call_Link); pragma Inline (Wait_For_Completion); -- This procedure suspends the calling task until the specified entry call -- has either been completed or cancelled. On exit, the call will not be -- queued. This waits for calls on protected entries. -- Call this only when holding Self_ID locked. procedure Check_Exception (Self_ID : Task_Id; Entry_Call : Entry_Call_Link); pragma Inline (Check_Exception); -- Raise any pending exception from the Entry_Call. This should be called -- at the end of every compiler interface procedure that implements an -- entry call. The caller should not be holding any locks, or there will -- be deadlock. procedure PO_Do_Or_Queue (Object : Protection_Entry_Access; Entry_Call : Entry_Call_Link); -- This procedure executes or queues an entry call, depending on the status -- of the corresponding barrier. The specified object is assumed locked. --------------------- -- Check_Exception -- --------------------- procedure Check_Exception (Self_ID : Task_Id; Entry_Call : Entry_Call_Link) is pragma Warnings (Off, Self_ID); procedure Internal_Raise (X : Ada.Exceptions.Exception_Id); pragma Import (C, Internal_Raise, "__gnat_raise_with_msg"); use type Ada.Exceptions.Exception_Id; E : constant Ada.Exceptions.Exception_Id := Entry_Call.Exception_To_Raise; begin if E /= Ada.Exceptions.Null_Id then Internal_Raise (E); end if; end Check_Exception; ------------------------ -- Send_Program_Error -- ------------------------ procedure Send_Program_Error (Entry_Call : Entry_Call_Link) is Caller : constant Task_Id := Entry_Call.Self; begin Entry_Call.Exception_To_Raise := Program_Error'Identity; STPO.Write_Lock (Caller); Wakeup_Entry_Caller (Entry_Call); STPO.Unlock (Caller); end Send_Program_Error; ------------------------- -- Wait_For_Completion -- ------------------------- procedure Wait_For_Completion (Entry_Call : Entry_Call_Link) is Self_Id : constant Task_Id := Entry_Call.Self; begin Self_Id.Common.State := Entry_Caller_Sleep; STPO.Sleep (Self_Id, Entry_Caller_Sleep); Self_Id.Common.State := Runnable; end Wait_For_Completion; ------------------------- -- Wakeup_Entry_Caller -- ------------------------- -- This is called at the end of service of an entry call, to abort the -- caller if he is in an abortable part, and to wake up the caller if it -- is on Entry_Caller_Sleep. It assumes that the call is already off-queue. -- (This enforces the rule that a task must be off-queue if its state is -- Done or Cancelled.) Call it holding the lock of Entry_Call.Self. -- The caller is waiting on Entry_Caller_Sleep, in Wait_For_Completion. procedure Wakeup_Entry_Caller (Entry_Call : Entry_Call_Link) is Caller : constant Task_Id := Entry_Call.Self; begin pragma Assert (Caller.Common.State /= Terminated and then Caller.Common.State /= Unactivated); Entry_Call.State := Done; STPO.Wakeup (Caller, Entry_Caller_Sleep); end Wakeup_Entry_Caller; ----------------------- -- Restricted GNARLI -- ----------------------- -------------------------------------------- -- Exceptional_Complete_Single_Entry_Body -- -------------------------------------------- procedure Exceptional_Complete_Single_Entry_Body (Object : Protection_Entry_Access; Ex : Ada.Exceptions.Exception_Id) is begin Object.Call_In_Progress.Exception_To_Raise := Ex; end Exceptional_Complete_Single_Entry_Body; --------------------------------- -- Initialize_Protection_Entry -- --------------------------------- procedure Initialize_Protection_Entry (Object : Protection_Entry_Access; Ceiling_Priority : Integer; Compiler_Info : System.Address; Entry_Body : Entry_Body_Access) is begin Initialize_Protection (Object.Common'Access, Ceiling_Priority); Object.Compiler_Info := Compiler_Info; Object.Call_In_Progress := null; Object.Entry_Body := Entry_Body; Object.Entry_Queue := null; end Initialize_Protection_Entry; ---------------- -- Lock_Entry -- ---------------- -- Compiler interface only -- Do not call this procedure from within the run-time system. procedure Lock_Entry (Object : Protection_Entry_Access) is begin Lock (Object.Common'Access); end Lock_Entry; -------------------------- -- Lock_Read_Only_Entry -- -------------------------- -- Compiler interface only -- Do not call this procedure from within the runtime system procedure Lock_Read_Only_Entry (Object : Protection_Entry_Access) is begin Lock_Read_Only (Object.Common'Access); end Lock_Read_Only_Entry; -------------------- -- PO_Do_Or_Queue -- -------------------- procedure PO_Do_Or_Queue (Object : Protection_Entry_Access; Entry_Call : Entry_Call_Link) is Barrier_Value : Boolean; begin -- When the Action procedure for an entry body returns, it must be -- completed (having called [Exceptional_]Complete_Entry_Body). Barrier_Value := Object.Entry_Body.Barrier (Object.Compiler_Info, 1); if Barrier_Value then if Object.Call_In_Progress /= null then -- This violates the No_Entry_Queue restriction, send -- Program_Error to the caller. Send_Program_Error (Entry_Call); return; end if; Object.Call_In_Progress := Entry_Call; Object.Entry_Body.Action (Object.Compiler_Info, Entry_Call.Uninterpreted_Data, 1); Object.Call_In_Progress := null; STPO.Write_Lock (Entry_Call.Self); Wakeup_Entry_Caller (Entry_Call); STPO.Unlock (Entry_Call.Self); else pragma Assert (Entry_Call.Mode = Simple_Call); if Object.Entry_Queue /= null then -- This violates the No_Entry_Queue restriction, send -- Program_Error to the caller. Send_Program_Error (Entry_Call); return; else Object.Entry_Queue := Entry_Call; end if; end if; exception when others => Send_Program_Error (Entry_Call); end PO_Do_Or_Queue; --------------------------- -- Protected_Count_Entry -- --------------------------- function Protected_Count_Entry (Object : Protection_Entry) return Natural is begin if Object.Entry_Queue /= null then return 1; else return 0; end if; end Protected_Count_Entry; --------------------------------- -- Protected_Single_Entry_Call -- --------------------------------- procedure Protected_Single_Entry_Call (Object : Protection_Entry_Access; Uninterpreted_Data : System.Address) is Self_Id : constant Task_Id := STPO.Self; Entry_Call : Entry_Call_Record renames Self_Id.Entry_Calls (Self_Id.Entry_Calls'First); begin -- If pragma Detect_Blocking is active then Program_Error must be -- raised if this potentially blocking operation is called from a -- protected action. if Detect_Blocking and then Self_Id.Common.Protected_Action_Nesting > 0 then raise Program_Error with "potentially blocking operation"; end if; Lock_Entry (Object); Entry_Call.Mode := Simple_Call; Entry_Call.State := Now_Abortable; Entry_Call.Uninterpreted_Data := Uninterpreted_Data; Entry_Call.Exception_To_Raise := Ada.Exceptions.Null_Id; PO_Do_Or_Queue (Object, Entry_Call'Access); Unlock_Entry (Object); -- The call is either `Done' or not. It cannot be cancelled since there -- is no ATC construct. pragma Assert (Entry_Call.State /= Cancelled); if Entry_Call.State /= Done then STPO.Write_Lock (Self_Id); Wait_For_Completion (Entry_Call'Access); STPO.Unlock (Self_Id); end if; Check_Exception (Self_Id, Entry_Call'Access); end Protected_Single_Entry_Call; ----------------------------------- -- Protected_Single_Entry_Caller -- ----------------------------------- function Protected_Single_Entry_Caller (Object : Protection_Entry) return Task_Id is begin return Object.Call_In_Progress.Self; end Protected_Single_Entry_Caller; ------------------- -- Service_Entry -- ------------------- procedure Service_Entry (Object : Protection_Entry_Access) is Entry_Call : constant Entry_Call_Link := Object.Entry_Queue; Caller : Task_Id; begin if Entry_Call /= null and then Object.Entry_Body.Barrier (Object.Compiler_Info, 1) then Object.Entry_Queue := null; if Object.Call_In_Progress /= null then -- Violation of No_Entry_Queue restriction, raise exception Send_Program_Error (Entry_Call); Unlock_Entry (Object); return; end if; Object.Call_In_Progress := Entry_Call; Object.Entry_Body.Action (Object.Compiler_Info, Entry_Call.Uninterpreted_Data, 1); Object.Call_In_Progress := null; Caller := Entry_Call.Self; Unlock_Entry (Object); STPO.Write_Lock (Caller); Wakeup_Entry_Caller (Entry_Call); STPO.Unlock (Caller); else -- Just unlock the entry Unlock_Entry (Object); end if; exception when others => Send_Program_Error (Entry_Call); Unlock_Entry (Object); end Service_Entry; ------------------ -- Unlock_Entry -- ------------------ procedure Unlock_Entry (Object : Protection_Entry_Access) is begin Unlock (Object.Common'Access); end Unlock_Entry; end System.Tasking.Protected_Objects.Single_Entry;
with System; -- ============================================================================= -- Package AVR.WATCHDOG -- -- Implements watchdog mechanisms for the MCU micro-controller. -- ============================================================================= package AVR.WATCHDOG is type Watchdog_Timer_Control_Register_Type is record WPD0 : Boolean; -- Watchdog Timer Prescaler Bit 0 WPD1 : Boolean; -- Watchdog Timer Prescaler Bit 1 WPD2 : Boolean; -- Watchdog Timer Prescaler Bit 2 WDE : Boolean; -- Watchdog System Reset Enable WDCE : Boolean; -- Watchdog Change Enable WDP3 : Boolean; -- Watchdog Timer Prescaler Bit 3 WDIE : Boolean; -- Watchdog Interrupt Enable WDIF : Boolean; -- Watchdog Interrupt Flag end record; pragma Pack (Watchdog_Timer_Control_Register_Type); for Watchdog_Timer_Control_Register_Type'Size use BYTE_SIZE; Reg_WDTCSR : Watchdog_Timer_Control_Register_Type; for Reg_WDTCSR'Address use System'To_Address (16#60#); procedure Watchdog_Reset; end AVR.WATCHDOG;
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- 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. -------------------------------------------------------------------------------------------------------------------- -- SDL.Video -- -- Common display and video driver functionality. -------------------------------------------------------------------------------------------------------------------- with Interfaces.C; package SDL.Video is package C renames Interfaces.C; Video_Error : exception; -- subtype Coordinate is C.int; type Blend_Modes is (None, Alpha_Blend, Additive, Colour_Modulate) with Convention => C; for Blend_Modes use (None => 16#0000_0000#, Alpha_Blend => 16#0000_0001#, Additive => 16#0000_0002#, Colour_Modulate => 16#0000_0004#); -- Screen saver information. procedure Enable_Screen_Saver with Import => True, Convention => C, External_Name => "SDL_EnableScreenSaver"; procedure Disable_Screen_Saver with Import => True, Convention => C, External_Name => "SDL_DisableScreenSaver"; function Is_Screen_Saver_Enabled return Boolean with Inline => True; -- Video drivers. function Initialise (Name : in String) return Boolean; procedure Finalise with Import => True, Convention => C, External_Name => "SDL_VideoQuit"; function Total_Drivers return Positive; function Driver_Name (Index : in Positive) return String; function Current_Driver_Name return String; end SDL.Video;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>dct_dct_2d</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_block</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>out_block</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_block</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</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>69</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>11</id> <name>row_outbuf</name> <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>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>107</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>12</id> <name>col_outbuf</name> <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>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>13</id> <name>col_inbuf</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</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/Design_Analysis/lab1</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>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>109</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</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>110</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>16</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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>17</id> <name>exitcond5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</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>116</item> <item>118</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>19</id> <name>i_4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>121</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>20</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>122</item> <item>123</item> <item>124</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>23</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>24</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</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>131</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name>indvar_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>132</item> <item>133</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name>j</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>137</item> <item>138</item> <item>139</item> <item>140</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>28</id> <name>i_1</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>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> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>29</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>145</item> <item>147</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>30</id> <name>indvar_flatten_next</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>150</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>151</item> <item>152</item> <item>153</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>35</id> <name>exitcond</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</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>154</item> <item>155</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>36</id> <name>i_1_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>37</id> <name>j_s</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>159</item> <item>160</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>38</id> <name>j_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_2_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>164</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>165</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</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>167</item> <item>168</item> <item>170</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>45</id> <name>p_addr_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>171</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_addr5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>172</item> <item>173</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</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>174</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>48</id> <name>row_outbuf_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>175</item> <item>177</item> <item>178</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>49</id> <name>row_outbuf_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</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>179</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</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>180</item> <item>181</item> <item>182</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>51</id> <name>p_addr6_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>183</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_addr7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>184</item> <item>185</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_8</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</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>186</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>54</id> <name>col_inbuf_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>187</item> <item>188</item> <item>189</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>190</item> <item>191</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>57</id> <name>i_6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>192</item> <item>193</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>58</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>194</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>60</id> <name>i_2</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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>195</item> <item>196</item> <item>197</item> <item>198</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>61</id> <name>exitcond2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</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>199</item> <item>200</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>63</id> <name>i_5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>201</item> <item>202</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>64</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</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>203</item> <item>204</item> <item>205</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>67</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>68</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</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>211</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>70</id> <name>indvar_flatten2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> <item>215</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>71</id> <name>j_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>218</item> <item>219</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>72</id> <name>i_3</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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>220</item> <item>221</item> <item>222</item> <item>223</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>73</id> <name>exitcond_flatten2</name> <fileName></fileName> <fileDirectory></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>224</item> <item>225</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>74</id> <name>indvar_flatten_next2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>226</item> <item>227</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>75</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>228</item> <item>229</item> <item>230</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>79</id> <name>exitcond1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</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>231</item> <item>232</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>80</id> <name>i_3_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>233</item> <item>234</item> <item>235</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>81</id> <name>j_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>236</item> <item>237</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>82</id> <name>j_1_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>238</item> <item>239</item> <item>240</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_4_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>241</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_3_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>242</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_s</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</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>243</item> <item>244</item> <item>245</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>89</id> <name>p_addr8_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>246</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>90</id> <name>p_addr9</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>247</item> <item>248</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</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>249</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>92</id> <name>col_outbuf_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>250</item> <item>251</item> <item>252</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>93</id> <name>col_outbuf_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</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>253</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</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>254</item> <item>255</item> <item>256</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>95</id> <name>p_addr3_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>257</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>96</id> <name>p_addr4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>258</item> <item>259</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</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>260</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>98</id> <name>out_block_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>261</item> <item>262</item> <item>263</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>99</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>264</item> <item>265</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>101</id> <name>i_7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>266</item> <item>267</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>102</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>268</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>104</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_72"> <Value> <Obj> <type>2</type> <id>106</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_73"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>117</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_75"> <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>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_76"> <Value> <Obj> <type>2</type> <id>125</id> <name>dct_dct_1d</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_dct_1d&gt;</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>146</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>169</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>176</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>10</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_82"> <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>11</item> <item>12</item> <item>13</item> <item>14</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>21</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>19</item> <item>20</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <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>2</count> <item_version>0</item_version> <item>23</item> <item>24</item> </node_objs> </item> <item class_id_reference="18" object_id="_85"> <Obj> <type>3</type> <id>32</id> <name>.preheader7.preheader</name> <fileName></fileName> <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>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> </node_objs> </item> <item class_id_reference="18" object_id="_86"> <Obj> <type>3</type> <id>59</id> <name>.preheader7</name> <fileName></fileName> <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>20</count> <item_version>0</item_version> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>57</item> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_87"> <Obj> <type>3</type> <id>65</id> <name>.preheader6</name> <fileName></fileName> <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>60</item> <item>61</item> <item>63</item> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_88"> <Obj> <type>3</type> <id>69</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>67</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_89"> <Obj> <type>3</type> <id>76</id> <name>.preheader.preheader</name> <fileName></fileName> <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>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> </node_objs> </item> <item class_id_reference="18" object_id="_90"> <Obj> <type>3</type> <id>103</id> <name>.preheader</name> <fileName></fileName> <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>20</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>101</item> <item>102</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>105</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>104</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>177</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_92"> <id>107</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>108</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>109</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>110</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>113</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>114</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>115</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>116</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>119</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>122</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>123</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>124</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>127</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>128</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>129</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>130</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>131</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>132</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>133</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>136</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>137</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>138</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>139</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>140</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>141</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>142</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>143</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>144</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>145</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>148</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>151</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>152</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>153</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>154</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>155</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>156</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>157</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>158</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>159</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>160</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>161</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>162</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>163</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>164</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>165</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>168</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>170</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>171</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>172</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>173</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>174</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>175</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>177</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>178</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>179</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>181</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>182</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>183</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>184</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>185</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>186</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>187</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>188</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>189</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>190</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>191</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>192</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>193</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>194</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>195</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>196</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>197</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>198</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>199</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>200</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>201</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>202</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>203</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>204</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>205</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>206</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>207</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>208</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>209</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>210</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>211</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>212</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>213</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>214</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>215</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>216</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>217</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>218</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>219</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>220</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>221</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>222</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>223</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <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="_198"> <id>225</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>226</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>227</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>228</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>229</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>230</id> <edge_type>2</edge_type> <source_obj>105</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>231</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>232</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>233</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>234</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>235</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>236</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>237</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>238</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>239</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>240</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>241</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>242</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>244</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>245</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>246</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>247</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>248</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>249</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>250</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>251</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <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="_225"> <id>253</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>255</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>256</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>257</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>258</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>259</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>260</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>261</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>262</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>263</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>264</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>265</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>266</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>267</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>268</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>269</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>270</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>271</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>272</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>273</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>274</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>275</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>276</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>277</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>278</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>279</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>280</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>281</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>282</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>283</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>284</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>351</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>352</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>353</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>354</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>355</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>356</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>357</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>358</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>359</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>360</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>361</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>362</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>363</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>76</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="_269"> <mId>1</mId> <mTag>dct_dct_2d</mTag> <mType>0</mType> <sub_regions> <count>6</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</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>757</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_270"> <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>15</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="_271"> <mId>3</mId> <mTag>Row_DCT_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>21</item> <item>25</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>312</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_272"> <mId>4</mId> <mTag>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>32</item> <item>59</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_273"> <mId>5</mId> <mTag>Col_DCT_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>65</item> <item>69</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>312</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_274"> <mId>6</mId> <mTag>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>76</item> <item>103</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_275"> <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>105</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="_276"> <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="_277"> <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="_278"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_279"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_282"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_283"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>23</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_289"> <id>3</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_290"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>23</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_292"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_293"> <id>4</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_294"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>49</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_311"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_312"> <id>5</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_313"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>49</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_320"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_328"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_329"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>67</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_335"> <id>7</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_336"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>67</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_338"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_339"> <id>8</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_340"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_342"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_343"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_344"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_345"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_354"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>93</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_357"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_358"> <id>9</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_359"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_360"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_361"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_364"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_365"> <id>93</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_366"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_367"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_368"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_369"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_370"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_371"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_372"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_373"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_374"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_375"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_376"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>51</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="_377"> <inState>2</inState> <outState>3</outState> <condition> <id>54</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>17</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_378"> <inState>2</inState> <outState>4</outState> <condition> <id>53</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>17</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_379"> <inState>3</inState> <outState>2</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="_380"> <inState>6</inState> <outState>7</outState> <condition> <id>66</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="_381"> <inState>6</inState> <outState>8</outState> <condition> <id>65</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> <item class_id_reference="30" object_id="_382"> <inState>7</inState> <outState>6</outState> <condition> <id>69</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_383"> <inState>5</inState> <outState>4</outState> <condition> <id>77</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_384"> <inState>4</inState> <outState>6</outState> <condition> <id>76</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>29</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_385"> <inState>4</inState> <outState>5</outState> <condition> <id>78</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>29</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_386"> <inState>9</inState> <outState>8</outState> <condition> <id>80</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_387"> <inState>8</inState> <outState>10</outState> <condition> <id>79</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>73</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_388"> <inState>8</inState> <outState>9</outState> <condition> <id>81</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>73</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_389"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="39" tracking_level="0" version="0"> <count>69</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>11</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>1</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>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>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>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>94</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="42" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>15</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>59</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>65</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>76</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>103</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>105</first> <second> <first>5</first> <second>5</second> </second> </item> </bblk_ent_exit> <regions class_id="45" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="46" tracking_level="1" version="0" object_id="_390"> <region_name>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>32</item> <item>59</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="46" object_id="_391"> <region_name>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>76</item> <item>103</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="47" tracking_level="0" version="0"> <count>58</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>78</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>92</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>49</item> </second> </item> <item> <first>97</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>103</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>109</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>115</first> <second> <count>2</count> <item_version>0</item_version> <item>93</item> <item>93</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>127</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>137</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>149</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>223</first> <second> <count>4</count> <item_version>0</item_version> <item>23</item> <item>23</item> <item>67</item> <item>67</item> </second> </item> <item> <first>252</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>258</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>264</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>270</first> <second> <count>1</count> <item_version>0</item_version> <item>30</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>36</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>320</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>326</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>331</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>42</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>368</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>374</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>380</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>386</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>392</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>400</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>406</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>418</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>426</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>430</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>441</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>447</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>450</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>457</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>461</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>467</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="50" tracking_level="0" version="0"> <count>53</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>col_inbuf_addr_gep_fu_97</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>col_inbuf_alloca_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>col_outbuf_addr_gep_fu_109</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>col_outbuf_alloca_fu_78</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>exitcond1_fu_386</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>exitcond2_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>exitcond5_fu_252</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>exitcond_flatten2_fu_374</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>exitcond_flatten_fu_264</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>exitcond_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>i_1_mid2_fu_282</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>i_1_phi_fu_171</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>i_2_phi_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>i_3_mid2_fu_392</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>i_3_phi_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>i_4_fu_258</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>i_5_fu_368</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>i_6_fu_331</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>i_7_fu_441</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>i_phi_fu_137</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten2_phi_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>indvar_flatten_next2_fu_380</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>indvar_flatten_next_fu_270</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>indvar_flatten_phi_fu_149</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>j_1_mid2_fu_406</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>j_1_phi_fu_205</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>j_2_fu_400</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>j_mid2_fu_296</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>j_phi_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>j_s_fu_290</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>out_block_addr_gep_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>p_addr3_cast_fu_457</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>p_addr4_fu_461</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>p_addr5_fu_320</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_addr6_cast_fu_347</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_addr7_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_addr8_cast_fu_426</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_addr9_fu_430</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>p_addr_cast_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>row_outbuf_addr_gep_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>row_outbuf_alloca_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_1_fu_436</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_2_fu_450</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp_2_trn_cast_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_3_fu_467</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_3_trn_cast_fu_414</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>tmp_4_trn_cast_fu_447</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>tmp_6_fu_326</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_7_fu_340</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_8_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_s_fu_418</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_trn_cast_fu_304</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>1</count> <item_version>0</item_version> <item> <first>grp_dct_dct_1d_fu_223</first> <second> <count>4</count> <item_version>0</item_version> <item>23</item> <item>23</item> <item>67</item> <item>67</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="52" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first class_id="54" tracking_level="0" version="0"> <first>col_inbuf</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first> <first>col_inbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>93</item> <item>93</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_0</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_1</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_2</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_3</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_4</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_5</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_6</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>dct_coeff_table_7</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>23</item> <item>67</item> </second> </item> <item> <first> <first>out_block</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>49</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>24</count> <item_version>0</item_version> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>145</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>476</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>481</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>485</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>490</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>501</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>511</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>515</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>520</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>524</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>529</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>534</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>540</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>545</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>24</count> <item_version>0</item_version> <item> <first>col_outbuf_addr_reg_540</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>exitcond2_reg_511</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>exitcond5_reg_472</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>exitcond_flatten2_reg_520</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>exitcond_flatten_reg_481</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>i_1_mid2_reg_490</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>i_1_reg_167</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>i_2_reg_178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>i_3_mid2_reg_529</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>i_3_reg_212</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>i_4_reg_476</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>i_5_reg_515</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>i_6_reg_506</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>i_7_reg_545</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>i_reg_133</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten2_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>indvar_flatten_next2_reg_524</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>indvar_flatten_next_reg_485</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>indvar_flatten_reg_145</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>j_1_mid2_reg_534</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>j_1_reg_201</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>j_mid2_reg_495</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>j_reg_156</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>row_outbuf_addr_reg_501</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>8</count> <item_version>0</item_version> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>145</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>8</count> <item_version>0</item_version> <item> <first>i_1_reg_167</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>i_2_reg_178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>i_3_reg_212</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>i_reg_133</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten2_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>indvar_flatten_reg_145</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>j_1_reg_201</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>j_reg_156</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="55" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>out_block(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="57" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> </port2core> <node2core> <count>3</count> <item_version>0</item_version> <item> <first>11</first> <second>RAM</second> </item> <item> <first>12</first> <second>RAM</second> </item> <item> <first>13</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer <Juergen.Pfeifer@T-Online.de> 1996 -- Version Control: -- $Revision: 1.5 $ -- Binding Version 00.93 ------------------------------------------------------------------------------ package Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address is pragma Preelaborate (IPV4_Address); type Internet_V4_Address_Field is new Field_Type with null record; procedure Set_Field_Type (Fld : in Field; Typ : in Internet_V4_Address_Field); pragma Inline (Set_Field_Type); end Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address;
-- Copyright 2005, 2007, 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure PA is type Packed_Array is array (4 .. 8) of Boolean; pragma pack (Packed_Array); Var : Packed_Array; begin Var := (True, False, True, False, True); Var (8) := False; -- STOP end PA;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Menus.Item_User_Data -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2003,2009 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.12 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Interfaces.C; with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Menus.Item_User_Data is use type Interfaces.C.int; procedure Set_User_Data (Itm : Item; Data : User_Access) is function Set_Item_Userptr (Itm : Item; Addr : User_Access) return C_Int; pragma Import (C, Set_Item_Userptr, "set_item_userptr"); Res : constant Eti_Error := Set_Item_Userptr (Itm, Data); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_User_Data; function Get_User_Data (Itm : Item) return User_Access is function Item_Userptr (Itm : Item) return User_Access; pragma Import (C, Item_Userptr, "item_userptr"); begin return Item_Userptr (Itm); end Get_User_Data; procedure Get_User_Data (Itm : Item; Data : out User_Access) is begin Data := Get_User_Data (Itm); end Get_User_Data; end Terminal_Interface.Curses.Menus.Item_User_Data;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . C _ S T R E A M S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1998 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces.C_Streams; use Interfaces.C_Streams; with System.File_IO; with System.File_Control_Block; with Unchecked_Conversion; package body Ada.Wide_Text_IO.C_Streams is package FIO renames System.File_IO; package FCB renames System.File_Control_Block; subtype AP is FCB.AFCB_Ptr; function To_FCB is new Unchecked_Conversion (File_Mode, FCB.File_Mode); -------------- -- C_Stream -- -------------- function C_Stream (F : File_Type) return FILEs is begin FIO.Check_File_Open (AP (F)); return F.Stream; end C_Stream; ---------- -- Open -- ---------- procedure Open (File : in out File_Type; Mode : in File_Mode; C_Stream : in FILEs; Form : in String := "") is File_Control_Block : Wide_Text_AFCB; begin FIO.Open (File_Ptr => AP (File), Dummy_FCB => File_Control_Block, Mode => To_FCB (Mode), Name => "", Form => Form, Amethod => 'W', Creat => False, Text => True, C_Stream => C_Stream); end Open; end Ada.Wide_Text_IO.C_Streams;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . E X C E P T I O N _ T R A C E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2005, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides an interface allowing to control *automatic* output -- to standard error upon exception occurrences (as opposed to explicit -- generation of traceback information using GNAT.Traceback). -- This output includes the basic information associated with the exception -- (name, message) as well as a backtrace of the call chain at the point -- where the exception occurred. This backtrace is only output if the call -- chain information is available, depending if the binder switch dedicated -- to that purpose has been used or not. -- The default backtrace is in the form of absolute code locations which may -- be converted to corresponding source locations using the addr2line utility -- or from within GDB. Please refer to GNAT.Traceback for information about -- what is necessary to be able to exploit this possibility. -- The backtrace output can also be customized by way of a "decorator" which -- may return any string output in association with a provided call chain. with GNAT.Traceback; use GNAT.Traceback; package GNAT.Exception_Traces is -- The following defines the exact situations in which raises will -- cause automatic output of trace information. type Trace_Kind is (Every_Raise, -- Denotes the initial raise event for any exception occurrence, either -- explicit or due to a specific language rule, within the context of a -- task or not. Unhandled_Raise -- Denotes the raise events corresponding to exceptions for which there -- is no user defined handler, in particular, when a task dies due to an -- unhandled exception. ); -- The following procedures can be used to activate and deactivate -- traces identified by the above trace kind values. procedure Trace_On (Kind : Trace_Kind); -- Activate the traces denoted by Kind procedure Trace_Off; -- Stop the tracing requested by the last call to Trace_On. -- Has no effect if no such call has ever occurred. -- The following provide the backtrace decorating facilities type Traceback_Decorator is access function (Traceback : Tracebacks_Array) return String; -- A backtrace decorator is a function which returns the string to be -- output for a call chain provided by way of a tracebacks array. procedure Set_Trace_Decorator (Decorator : Traceback_Decorator); -- Set the decorator to be used for future automatic outputs. Restore -- the default behavior (output of raw addresses) if the provided -- access value is null. end GNAT.Exception_Traces;
-------------------------------------------------------------------------------- -- -- -- Copyright (C) 2004, RISC OS Ada Library (RASCAL) developers. -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU Lesser General Public -- -- License as published by the Free Software Foundation; either -- -- version 2.1 of the License, or (at your option) any later version. -- -- -- -- This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- Lesser General Public License for more details. -- -- -- -- You should have received a copy of the GNU Lesser General Public -- -- License along with this library; if not, write to the Free Software -- -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- -------------------------------------------------------------------------------- -- $Author$ -- $Date$ -- $Revision$ with System; use System; with Kernel; use Kernel; with Interfaces.C; use Interfaces.C; with Ada.Strings.Unbounded; with Reporter; with RASCAL.Utility; use RASCAL.Utility; with RASCAL.Memory; use RASCAL.Memory; with RASCAL.WimpWindow; use RASCAL.WimpWindow; package body RASCAL.ToolboxWindow is Toolbox_ObjectMiscOp : constant := 16#44EC6#; Window_GetPointerInfo : constant := 16#82883#; Window_Wimp_To_Toolbox : constant := 16#82884#; Window_ExtractGadgetInfo : constant := 16#828BE#; -- function Gadget_Get_BufferSize (Object : in Object_ID; Component : in Component_ID) return Integer is Icon : Icon_Handle_Type; Window : Wimp_Handle_Type; Buffer_Size: Integer; Index : Integer := 1; begin case Get_Type (Object,Component) is when WritableField_Base => Index := 1; when DisplayField_Base => Index := 1; when ActionButton_Base => Index := 1; when OptionButton_Base => Index := 1; when LabelledBox_Base => Index := 1; when Label_Base => Index := 1; when RadioButton_Base => Index := 2; when others => Index := -1; end case; if Index = -1 then return -1; end if; Icon := ToolboxWindow.Gadget_Get_Icon_List(Object,Component)(Index); Window := ToolboxWindow.Get_Wimp_Handle (Object); Buffer_Size := Memory.GetWord(WimpWindow.Get_WindowInfo(Window).Icon_Block(Integer(Icon)).Icon_Data'Address,8-4); return Buffer_Size; end Gadget_Get_BufferSize; -- procedure Gadget_SetValue (Window : in Object_ID; Component : in Component_ID; Value : in String; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; Value_0 : UString := U(Value & ASCII.NUL); Buffer_Size : Integer := (Gadget_Get_BufferSize(Window,Component))-1; Method : Integer; begin if Buffer_Size > -1 then if Value'Length > Buffer_Size then Value_0 := Ada.Strings.Unbounded.Head(Value_0,Buffer_Size); Ada.Strings.Unbounded.Append(Value_0,ASCII.NUL); end if; case Get_Type (Window,Component) is when WritableField_Base => Method := 512; when DisplayField_Base => Method := 448; when ActionButton_Base => Method := 80; when OptionButton_Base => Method := 192; when RadioButton_Base => Method := 384; when others => Method := -1; end case; if Method /= -1 then Register.R(0) := Int (Unsigned_to_Int(Flags)); Register.R(1) := Int (Window); Register.R(2) := Int (Method); Register.R(3) := Int (Component); Register.R(4) := Adr_To_Int (S(Value_0)'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_SetValue: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end if; end if; end Gadget_SetValue; -- function Gadget_GetBBox (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Toolbox_BBox_Type is Register : aliased Kernel.swi_regs; Error : oserror_access; Buffer : Toolbox_BBox_Type; begin Register.R(0) := int(Unsigned_to_Int(Flags)); Register.R(1) := int(Window); Register.R(2) := 72; Register.R(3) := int(Component); Register.R(4) := Adr_To_Int(Buffer'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_GetBBox: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Buffer; end Gadget_GetBBox; -- function Gadget_GetFlags (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return integer is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 64; Register.R(3) := Int(Component); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_GetFlags: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return integer(Register.R(0)); end Gadget_GetFlags; -- function Get_Type (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Gadget_ID_Type is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 70; Register.R(3) := Int(Component); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Type: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Gadget_ID_Type(Register.R(0)); end Get_Type; -- function Gadget_Get_Help (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return String is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 67; Register.R(3) := Int(Component); Register.R(4) := 0; Register.R(5) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_Get_Help: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := Integer(Register.R(5)); declare Buffer : String(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 67; Register.R(3) := Int(Component); Register.R(4) := Adr_To_Int(Buffer'Address); Register.R(5) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_Get_Help: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return MemoryToString(Buffer'Address); end; end Gadget_Get_Help; -- function Get_Icon_List (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Icon_List_Type is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 68; Register.R(3) := Int(Component); Register.R(4) := 0; Register.R(5) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Icon_List: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := Integer(Register.R(5)); if Buffer_Size mod 4 > 0 then Buffer_Size := Buffer_Size / 4 + 1; else Buffer_Size := Buffer_Size / 4; end if; declare Buffer : Icon_List_Type(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 68; Register.R(3) := Int(Component); Register.R(4) := Adr_To_Int(Buffer'Address); Register.R(5) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Icon_List: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Buffer; end; end Get_Icon_List; -- procedure Gadget_SetFlags (Window : in Object_ID; Component : in Component_ID; New_Flags : in System.Unsigned_Types.Unsigned; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 65; Register.R(3) := Int(Component); Register.R(4) := Int(Utility.Unsigned_To_Int(New_Flags)); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /=null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_SetFlags: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Gadget_SetFlags; -- procedure Gadget_Fade (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Flag : System.Unsigned_Types.Unsigned := 16#80000000#; begin Gadget_SetFlags(Window,Component,Flag); end Gadget_Fade; -- procedure Gadget_UnFade (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Flag : System.Unsigned_Types.Unsigned := 16#0#; begin Gadget_SetFlags(Window,Component,Flag); end Gadget_UnFade; -- procedure Set_Focus (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 68; Register.R(3) := Int(Component); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Focus: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Focus; -- procedure Gadget_Set_Help (Window : in Object_ID; Component : in Component_ID; Help : in String; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; Help_0 : String := Help & Character'Val(0); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 66; Register.R(3) := Int(Component); Register.R(4) := Adr_To_Int(Help_0'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_SetHelp: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Gadget_Set_Help; -- procedure Move_Gadget (Window : in Object_ID; Component : in Component_ID; BBox : in Toolbox_BBox_Type; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 71; Register.R(3) := Int(Component); Register.R(4) := Adr_To_Int(BBox'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Move_Gadget: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Move_Gadget; -- -- Window Methods procedure Extract_GadgetInfo (Template : in Address; Gadget : in Component_ID; Block : out Address; BlockSize: out Integer; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Adr_To_Int(Template); Register.R(2) := int(Gadget); Error := Kernel.Swi (Window_ExtractGadgetInfo, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Extract_GadgetInfo " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Block := Int_To_Adr(Register.R(0)); BlockSize := Integer (Register.R(1)); end Extract_GadgetInfo; -- function Enumerate_Gadgets (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Gadget_List_Type is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := -1; Register.R(3) := 0; Register.R(4) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Enumerate_Gadget(1): " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := integer(Register.R(4)); if Buffer_Size mod 4 > 0 then Buffer_Size := Buffer_Size / 4 + 1; else Buffer_Size := Buffer_Size / 4; end if; if Buffer_Size = -1 then raise No_Toolbox_Window; end if; declare Buffer : Gadget_List_Type(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := -1; Register.R(3) := Adr_To_Int(Buffer'Address); Register.R(4) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Enumerate_Gadget(2): " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; if integer(Register.R(2)) /= 0 then raise Enumeration_Buffer_Overrun; end if; return Buffer; end; end Enumerate_Gadgets; -- function Gadget_Get_Icon_List (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Icon_List_Type is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 68; Register.R(3) := Int(Component); Register.R(4) := 0; Register.R(5) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_Get_Icon_List: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := integer(Register.R(5)); if Buffer_Size mod 4 > 0 then Buffer_Size := Buffer_Size / 4 + 1; else Buffer_Size := Buffer_Size / 4; end if; declare Buffer : Icon_List_Type(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 68; Register.R(3) := Int(Component); Register.R(4) := Adr_To_Int(Buffer'Address); Register.R(5) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Gadget_Get_Icon_List: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; if integer(Register.R(4)) = -1 then raise No_Toolbox_Window; end if; return Buffer; end; end Gadget_Get_Icon_List; -- procedure Add_Gadget (Window : in Object_ID; Gadget : in Gadget_Type; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 1; Register.R(3) := Adr_To_Int(Gadget'Address); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Add_Gadget: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Add_Gadget; -- procedure Add_Gadget (Window : in Object_ID; Gadget : in Address; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 1; Register.R(3) := Adr_To_Int(Gadget); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Add_Gadget (2): " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Add_Gadget; -- procedure Remove_Gadget (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 2; Register.R(3) := Int(Component); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Remove_Gadget: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Remove_Gadget; -- procedure Set_Menu (Window : in Object_ID; Menu : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 3; Register.R(3) := Int(Menu); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Menu: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Menu; -- function Get_Menu (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Object_ID is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 4; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Menu: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Object_ID(Register.R(0)); end Get_Menu; -- procedure Set_Pointer (Window : in Object_ID; Sprite : in string; X_Spot : in integer; Y_Spot : in integer; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; Sprite_0 : String := Sprite & ASCII.NUL; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 5; Register.R(3) := Adr_To_Int(Sprite_0'Address); Register.R(4) := Int(X_Spot); Register.R(5) := Int(Y_Spot); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Pointer: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Pointer; -- function Get_Pointer (Window : in Object_ID; X_Spot : in integer; Y_Spot : in integer; Flags : in System.Unsigned_Types.Unsigned := 0) return String is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 6; Register.R(3) := 0; Register.R(4) := 0; Register.R(5) := Int(X_Spot); Register.R(6) := Int(Y_Spot); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Pointer: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := Integer(Register.R(4)); declare Buffer : String(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 6; Register.R(3) := Adr_To_Int(Buffer'Address); Register.R(4) := Int(Buffer_Size); Register.R(5) := Int(X_Spot); Register.R(6) := Int(Y_Spot); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Pointer: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return MemoryToString(Buffer'Address); end; end Get_Pointer; -- procedure Set_Help (Window : in Object_ID; Help : in String; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; Help_0 : String := Help & ASCII.NUL; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 7; Register.R(3) := Adr_To_Int(Help_0'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Help: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Help; -- function Get_Help (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return String is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 8; Register.R(3) := 0; Register.R(4) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Help: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := Integer(Register.R(4)); declare Buffer : String(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 8; Register.R(3) := Adr_To_Int(Buffer'Address); Register.R(4) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Help: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return MemoryToString(Buffer'Address); end; end Get_Help; -- procedure Set_Title (Window : in Object_ID; Title : in String; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; Title_0 : String := Title & ASCII.NUL; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 11; Register.R(3) := Adr_To_Int(Title_0'Address); Error := Kernel.swi(Toolbox_ObjectMiscOp,register'Access,register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Title: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Title; -- function Get_Title (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return String is Register : aliased Kernel.swi_regs; Buffer_Size : integer := 0; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 12; Register.R(3) := 0; Register.R(4) := 0; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Title: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Buffer_Size := Integer(Register.R(4)); declare Buffer : String(1..Buffer_Size); begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 12; Register.R(3) := Adr_To_Int(Buffer'Address); Register.R(4) := Int(Buffer_Size); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Title: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return MemoryToString(Buffer'Address); end; end Get_Title; -- procedure Set_Default_Focus (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 13; Register.R(3) := Int(Component); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Default_Focus: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Default_Focus; -- function Get_Default_Focus (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Component_ID is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 14; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Default_Focus: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Component_ID(Register.R(0)); end Get_Default_Focus; -- procedure Set_Extent (Window : in Object_ID; BBox : in Toolbox_BBox_Type; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 15; Register.R(3) := Adr_To_Int(BBox'Address); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Extent: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Extent; -- function Get_Extent (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Toolbox_BBox_Type is Register : aliased Kernel.swi_regs; Error : oserror_access; BBox : Toolbox_BBox_Type; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 16; Register.R(3) := Adr_To_Int(BBox'Address); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Extent: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return BBox; end Get_Extent; -- procedure Force_Redraw (Window : in Object_ID; BBox : in Toolbox_BBox_Type; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := 17; Register.R(3) := Adr_To_Int(BBox'Address); Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Force_Redraw: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Force_Redraw; -- procedure Set_Toolbars (Window : in Object_ID; Toolbar: in Object_ID; Bar_Type: in Toolbox_Toolbar_Type) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(3) := 0; Register.R(4) := 0; Register.R(5) := 0; Register.R(6) := 0; case Bar_Type is when Internal_Bottom_Left => Register.R(0) := 1; Register.R(3) := Int(Toolbar); when Internal_Top_Left => Register.R(0) := 2; Register.R(4) := Int(Toolbar); when External_Bottom_Left => Register.R(0) := 4; Register.R(5) := Int(Toolbar); when External_Top_Left => Register.R(0) := 8; Register.R(6) := Int(Toolbar); end case; Register.R(1) := Int(Window); Register.R(2) := 18; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Set_Toolbars: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; end Set_Toolbars; -- function Get_Toolbars (Window : in Object_ID; Bar_Type: in Toolbox_Toolbar_Type) return Object_ID is Register : aliased Kernel.swi_regs; Error : oserror_access; begin case Bar_Type is when Internal_Bottom_Left => Register.R(0) := 1; when Internal_Top_Left => Register.R(0) := 2; when External_Bottom_Left => Register.R(0) := 4; when External_Top_Left => Register.R(0) := 8; end case; Register.R(1) := Int(Window); Register.R(2) := 19; Error := Kernel.Swi (Toolbox_ObjectMiscOp, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Toolbars: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; case Bar_Type is when Internal_Bottom_Left => return Object_ID(Register.R(0)); when Internal_Top_Left => return Object_ID(Register.R(1)); when External_Bottom_Left => return Object_ID(Register.R(2)); when External_Top_Left => return Object_ID(Register.R(3)); end case; end Get_Toolbars; -- function Is_Open (Window : in Object_ID) return Boolean is WinID : Wimp_Handle_Type := Get_Wimp_Handle (Window); begin return WimpWindow.Is_Open (WinID); end Is_Open; -- function Get_Pointer_Info(Flags: in System.Unsigned_Types.Unsigned := 0) return Toolbox_Pointer_Info_Type is Register : aliased Kernel.swi_regs; Error : oserror_access; Info : Toolbox_Pointer_Info_Type; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Error := Kernel.Swi (Window_GetPointerInfo, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Get_Pointer_Info: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Info.X_Pos := integer(Register.R(0)); Info.Y_Pos := integer(Register.R(1)); Info.Buttons := integer(Register.R(2)); return Info; end Get_Pointer_Info; -- procedure Get_WindowPosition (Window : in Object_ID; X_Pos : out Integer; Y_Pos : out Integer) is WinID : Wimp_Handle_Type := Get_Wimp_Handle (Window); begin WimpWindow.Get_WindowPosition(WinID,X_Pos,Y_Pos); end Get_WindowPosition; -- function Get_Wimp_Handle (Window : in Object_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return Wimp_Handle_Type is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := int(Unsigned_to_Int(Flags)); Register.R(1) := int(Window); Register.R(2) := 0; Error := Kernel.swi(Toolbox_ObjectMiscOp,Register'Access,Register'Access); if Error /= null then pragma Debug(Reporter.Report("Toolbox.Get_Wimp_Handle: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; return Wimp_Handle_Type(Register.R(0)); end Get_Wimp_Handle; -- procedure Wimp_To_Toolbox (Window : in Wimp_Handle_Type; Icon : in Icon_Handle_Type; Object : out Object_ID; Component : out Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) is Register : aliased Kernel.swi_regs; Error : oserror_access; begin Register.R(0) := Int(Unsigned_to_Int(Flags)); Register.R(1) := Int(Window); Register.R(2) := Int(Icon); Error := Kernel.Swi (Window_Wimp_To_Toolbox, Register'Access, Register'Access); if Error /= null then pragma Debug(Reporter.Report("ToolboxWindow.Wimp_To_Toolbox: " & To_Ada(Error.ErrMess))); OS.Raise_Error(Error); end if; Object := Object_ID(Register.R(0)); Component := Component_ID(Register.R(1)); end Wimp_To_Toolbox; -- end RASCAL.ToolboxWindow;
package body System.Native_Real_Time is use type C.signed_int; function Clock return Native_Time is Result : aliased C.time.struct_timespec; begin if C.time.clock_gettime (C.time.CLOCK_MONOTONIC, Result'Access) < 0 then raise Program_Error; -- ??? end if; return Result; end Clock; procedure Simple_Delay_Until (T : Native_Time) is Timeout_T : constant Duration := To_Duration (T); Current_T : constant Duration := To_Duration (Clock); D : Duration; begin if Timeout_T > Current_T then D := Timeout_T - Current_T; else D := 0.0; -- always calling Delay_For for abort checking end if; System.Native_Time.Delay_For (D); end Simple_Delay_Until; procedure Delay_Until (T : Native_Time) is begin Delay_Until_Hook.all (T); end Delay_Until; end System.Native_Real_Time;
package STM32GD.Board_Variant is TX_PA_Boost : constant Boolean := True; Output_Power_dBm : constant Integer := 13; end STM32GD.Board_Variant;
-- { dg-do compile } package body Volatile13 is procedure Compute_Index_Map (Self : Shared_String) is Map : Index_Map_Access := Self.Index_Map; begin Map := new Index_Map (Self.Length); end; end Volatile13;
-- Copyright 2015 Steven Stewart-Gallus -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -- implied. See the License for the specific language governing -- permissions and limitations under the License. with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; package Libc.Locale with Spark_Mode => Off is pragma Preelaborate; -- unsupported macro: LC_ALL __LC_ALL -- unsupported macro: LC_CTYPE __LC_CTYPE -- unsupported macro: LC_NUMERIC __LC_NUMERIC -- unsupported macro: LC_COLLATE __LC_COLLATE -- unsupported macro: LC_MONETARY __LC_MONETARY -- unsupported macro: LC_TIME __LC_TIME type lconv is record decimal_point : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:57 thousands_sep : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:58 grouping : Interfaces.C.Strings.chars_ptr; -- /usr/include/locale.h:64 int_curr_symbol : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:70 currency_symbol : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:71 mon_decimal_point : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:72 mon_thousands_sep : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:73 mon_grouping : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:74 positive_sign : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:75 negative_sign : Interfaces.C.Strings .chars_ptr; -- /usr/include/locale.h:76 int_frac_digits : aliased char; -- /usr/include/locale.h:77 frac_digits : aliased char; -- /usr/include/locale.h:78 p_cs_precedes : aliased char; -- /usr/include/locale.h:80 p_sep_by_space : aliased char; -- /usr/include/locale.h:82 n_cs_precedes : aliased char; -- /usr/include/locale.h:84 n_sep_by_space : aliased char; -- /usr/include/locale.h:86 p_sign_posn : aliased char; -- /usr/include/locale.h:93 n_sign_posn : aliased char; -- /usr/include/locale.h:94 int_p_cs_precedes : aliased char; -- /usr/include/locale.h:97 int_p_sep_by_space : aliased char; -- /usr/include/locale.h:99 int_n_cs_precedes : aliased char; -- /usr/include/locale.h:101 int_n_sep_by_space : aliased char; -- /usr/include/locale.h:103 int_p_sign_posn : aliased char; -- /usr/include/locale.h:110 int_n_sign_posn : aliased char; -- /usr/include/locale.h:111 end record; pragma Convention (C_Pass_By_Copy, lconv); -- /usr/include/locale.h:53 function setlocale (category : int; locale : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/locale.h:124 pragma Import (C, setlocale, "setlocale"); function localeconv return access lconv; -- /usr/include/locale.h:127 pragma Import (C, localeconv, "localeconv"); end Libc.Locale;
<?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>softmax</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>data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>14</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>10</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>res_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>14</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>10</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>71</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>5</id> <name>exp_res_V</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>242</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</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>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>242</second> </item> </second> </item> </inlineStackInfo> <originalName>exp_res.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>86</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>6</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</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>87</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>8</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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>88</item> <item>89</item> <item>91</item> <item>92</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</id> <name>tmp</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>245</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>93</item> <item>95</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>11</id> <name>i_1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>245</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>96</item> <item>98</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</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>99</item> <item>100</item> <item>101</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>14</id> <name>tmp_4</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>247</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>247</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>102</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>15</id> <name>data_V_addr</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>247</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>247</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>103</item> <item>105</item> <item>106</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</id> <name>p_Val2_4</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>247</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>247</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>107</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>17</id> <name>y_V</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>softmax_idx_from_real_val&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>247</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax_idx_from_real_val&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>194</second> </item> </second> </item> </inlineStackInfo> <originalName>y.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>109</item> <item>110</item> <item>112</item> <item>114</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_5</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>248</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>115</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>19</id> <name>exp_table2_addr</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>248</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>116</item> <item>117</item> <item>118</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>20</id> <name>exp_table2_load</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>248</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>119</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>21</id> <name>exp_res_V_addr</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>248</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>120</item> <item>121</item> <item>122</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>22</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>248</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>123</item> <item>124</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>23</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>245</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</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>125</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>25</id> <name>exp_sum_V</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>254</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>254</second> </item> </second> </item> </inlineStackInfo> <originalName>exp_sum.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>127</item> <item>128</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>26</id> <name>y_V_2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>softmax_idx_from_real_val&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>256</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax_idx_from_real_val&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>194</second> </item> </second> </item> </inlineStackInfo> <originalName>y.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>130</item> <item>131</item> <item>133</item> <item>135</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>256</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>256</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>136</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>28</id> <name>invert_table3_addr</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>256</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>256</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>137</item> <item>138</item> <item>139</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>29</id> <name>inv_exp_sum_V</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>256</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>256</second> </item> </second> </item> </inlineStackInfo> <originalName>inv_exp_sum.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>140</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_3_cast_cast_cast</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>31</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</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>142</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</id> <name>i3</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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>143</item> <item>144</item> <item>145</item> <item>146</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_7</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</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>147</item> <item>148</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>36</id> <name>i_2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>149</item> <item>150</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>37</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</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>151</item> <item>152</item> <item>153</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_8</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>154</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>40</id> <name>exp_res_V_addr_1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>155</item> <item>156</item> <item>157</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>41</id> <name>exp_res_V_load</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>158</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>42</id> <name>r_V_cast_cast_cast</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>159</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>43</id> <name>r_V</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>160</item> <item>161</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.89</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>44</id> <name>p_Result_s</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>163</item> <item>164</item> <item>166</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>45</id> <name>p_Val2_1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>168</item> <item>169</item> <item>170</item> <item>172</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_Result_5</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_6</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>176</item> <item>177</item> <item>179</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_11_cast</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>49</id> <name>p_Val2_2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>181</item> <item>182</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.81</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_9</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>184</item> <item>185</item> <item>186</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>51</id> <name>rev</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>187</item> <item>189</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>52</id> <name>carry_1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>carry</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>190</item> <item>191</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_Result_6</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>192</item> <item>193</item> <item>194</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_11</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>196</item> <item>197</item> <item>199</item> <item>201</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>55</id> <name>Range2_all_ones</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>Range2_all_ones</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>204</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_12</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>209</item> <item>210</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>57</id> <name>Range1_all_ones</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>Range1_all_ones</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>211</item> <item>213</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>58</id> <name>Range1_all_zeros</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>Range1_all_zeros</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>214</item> <item>216</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>59</id> <name>deleted_zeros</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>deleted_zeros</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>219</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_13</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>220</item> <item>221</item> <item>222</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>61</id> <name>rev1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>223</item> <item>224</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>62</id> <name>p_s</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>225</item> <item>226</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>63</id> <name>deleted_ones</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>deleted_ones</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>227</item> <item>228</item> <item>229</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>64</id> <name>phitmp_demorgan</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>65</id> <name>p_not</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>232</item> <item>233</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>66</id> <name>brmerge</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>234</item> <item>235</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_s</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>236</item> <item>237</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>68</id> <name>overflow</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>overflow</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>238</item> <item>239</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>69</id> <name>brmerge192_demorgan</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>240</item> <item>241</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp1_demorgan</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>242</item> <item>243</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp1</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>244</item> <item>245</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>72</id> <name>underflow</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName>underflow</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>246</item> <item>247</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>73</id> <name>brmerge2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>248</item> <item>249</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>250</item> <item>251</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>75</id> <name>p_197_not</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</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>252</item> <item>253</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>76</id> <name>p_mux</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>254</item> <item>256</item> <item>257</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.70</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>77</id> <name>p_3</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>258</item> <item>260</item> <item>261</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>78</id> <name>p_097_2</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>262</item> <item>263</item> <item>264</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>79</id> <name>res_V_addr</name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>265</item> <item>266</item> <item>267</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>80</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>259</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>259</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>268</item> <item>269</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>81</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>257</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>257</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>270</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>83</id> <name></name> <fileName>firmware/nnet_utils/nnet_activation.h</fileName> <fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory> <lineNumber>261</lineNumber> <contextFuncName>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation.h</first> <second>softmax&amp;lt;ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, ap_fixed&amp;lt;14, 2, 0, 0, 0&amp;gt;, softmax_config19&amp;gt;</second> </first> <second>261</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_74"> <Value> <Obj> <type>2</type> <id>85</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_75"> <Value> <Obj> <type>2</type> <id>90</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_76"> <Value> <Obj> <type>2</type> <id>94</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>10</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>97</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>104</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_79"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_80"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>126</id> <name>reduce_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:reduce.2&gt;</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>132</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_83"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>17</content> </item> <item class_id_reference="16" object_id="_84"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>25</content> </item> <item class_id_reference="16" object_id="_85"> <Value> <Obj> <type>2</type> <id>171</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>21</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>178</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>188</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_88"> <Value> <Obj> <type>2</type> <id>198</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>200</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>26</content> </item> <item class_id_reference="16" object_id="_90"> <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>4</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>208</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>22</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>212</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_93"> <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>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_94"> <Value> <Obj> <type>2</type> <id>255</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <const_type>0</const_type> <content>8191</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>259</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <const_type>0</const_type> <content>8192</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>7</id> <name>arrayctor.loop1.preheader</name> <fileName></fileName> <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>5</item> <item>6</item> </node_objs> </item> <item class_id_reference="18" object_id="_97"> <Obj> <type>3</type> <id>13</id> <name>_ZN8ap_fixedILi18ELi8EL9ap_q_mode5EL9ap_o_mode3ELi0EEC1Ei.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>4</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>11</item> <item>12</item> </node_objs> </item> <item class_id_reference="18" object_id="_98"> <Obj> <type>3</type> <id>24</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>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="_99"> <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>7</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> </node_objs> </item> <item class_id_reference="18" object_id="_100"> <Obj> <type>3</type> <id>38</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>33</item> <item>34</item> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_101"> <Obj> <type>3</type> <id>82</id> <name>_ZN13ap_fixed_baseILi14ELi2ELb1EL9ap_q_mode0EL9ap_o_mode0ELi0EE19quantization_adjustEbbb.exit.i.i.i.i_ifconv</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>43</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> </node_objs> </item> <item class_id_reference="18" object_id="_102"> <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>1</count> <item_version>0</item_version> <item>83</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>154</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_103"> <id>86</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>87</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>6</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>88</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>8</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>89</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>8</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>91</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>92</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>93</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>96</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>98</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>99</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>100</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>101</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>102</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>103</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>105</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>106</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>107</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>110</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>114</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>115</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>116</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>117</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>118</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>119</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>120</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>121</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>122</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>123</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>124</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>125</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>127</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>128</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>131</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>133</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>136</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>137</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>138</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>139</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>140</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>141</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="_146"> <id>142</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>143</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>144</id> <edge_type>2</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="_149"> <id>145</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>146</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>147</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>148</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>149</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>150</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>151</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>152</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>153</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>154</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>155</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>156</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>157</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>158</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>159</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>160</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>161</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>164</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="_167"> <id>166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>169</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>170</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>172</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>174</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>175</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>177</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>179</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>180</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>181</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>182</id> <edge_type>1</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="_178"> <id>185</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>186</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>187</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>189</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>190</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>191</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>193</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>194</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>197</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>199</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>201</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>202</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>204</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>207</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>209</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>210</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>211</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>213</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>214</id> <edge_type>1</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="_197"> <id>216</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>217</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>218</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>219</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>221</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>222</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>223</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>224</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>225</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>226</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>227</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>228</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>229</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>230</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>231</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>232</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>233</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>234</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>235</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>236</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>237</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>238</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>239</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="_220"> <id>240</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>241</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>242</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>243</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>244</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>245</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>246</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>247</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="_228"> <id>248</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>249</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>250</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>251</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="_232"> <id>252</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="_233"> <id>253</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>254</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>256</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>257</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>258</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>260</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>261</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>262</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>263</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>264</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>265</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>266</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>267</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>268</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>269</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>270</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>281</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>282</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>283</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>284</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>13</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>285</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>286</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>287</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>288</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>38</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_257"> <mId>1</mId> <mTag>softmax</mTag> <mType>0</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</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>194</mMinLatency> <mMaxLatency>194</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_258"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>7</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_259"> <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>13</item> <item>24</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>10</mMinTripCount> <mMaxTripCount>10</mMaxTripCount> <mMinLatency>50</mMinLatency> <mMaxLatency>50</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_260"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>32</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>62</mMinLatency> <mMaxLatency>62</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_261"> <mId>5</mId> <mTag>Loop 2</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>38</item> <item>82</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>10</mMinTripCount> <mMaxTripCount>10</mMaxTripCount> <mMinLatency>80</mMinLatency> <mMaxLatency>80</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_262"> <mId>6</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>84</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_263"> <states class_id="25" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_264"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_265"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_267"> <id>2</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_268"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>16</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_276"> <id>25</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_277"> <id>3</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_278"> <id>16</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_279"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_280"> <id>4</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_281"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>20</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_284"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_285"> <id>20</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_286"> <id>6</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_287"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_290"> <id>7</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_291"> <id>25</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_292"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_293"> <id>8</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_294"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>29</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_297"> <id>9</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_298"> <id>29</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_299"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_301"> <id>10</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_302"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>41</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_310"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_311"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_312"> <id>41</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_313"> <id>12</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_314"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>43</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_316"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_317"> <id>43</id> <stage>2</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_318"> <id>14</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_319"> <id>43</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_320"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_322"> <id>15</id> <operations> <count>19</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_323"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_336"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_342"> <id>16</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_343"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_344"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_345"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_354"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_357"> <id>17</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_358"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_359"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_360"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>18</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_361"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_362"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>9</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_363"> <inState>2</inState> <outState>7</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>9</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_364"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_365"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_366"> <inState>5</inState> <outState>6</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_367"> <inState>6</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_368"> <inState>7</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_369"> <inState>8</inState> <outState>9</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_370"> <inState>9</inState> <outState>10</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_371"> <inState>10</inState> <outState>11</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>34</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_372"> <inState>11</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_373"> <inState>12</inState> <outState>13</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_374"> <inState>13</inState> <outState>14</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_375"> <inState>14</inState> <outState>15</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_376"> <inState>15</inState> <outState>16</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_377"> <inState>16</inState> <outState>17</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_378"> <inState>17</inState> <outState>10</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>71</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>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>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>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>21</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>26</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>30</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>42</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>11</first> <second>2</second> </second> </item> <item> <first>44</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>83</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>7</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>13</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>5</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>38</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>82</first> <second> <first>5</first> <second>12</second> </second> </item> <item> <first>84</first> <second> <first>5</first> <second>5</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>63</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>81</first> <second> <count>2</count> <item_version>0</item_version> <item>16</item> <item>16</item> </second> </item> <item> <first>87</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>94</first> <second> <count>2</count> <item_version>0</item_version> <item>20</item> <item>20</item> </second> </item> <item> <first>100</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>106</first> <second> <count>3</count> <item_version>0</item_version> <item>22</item> <item>41</item> <item>41</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>119</first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>29</item> </second> </item> <item> <first>125</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>139</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>149</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>167</first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>184</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>189</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>18</item> </second> </item> <item> <first>203</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>221</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>233</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>238</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>241</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>255</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>264</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>271</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>274</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>300</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>317</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>323</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>332</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>344</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>363</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>371</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>377</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>383</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>388</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>394</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>410</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>420</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>425</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>441</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>455</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>463</first> <second> <count>3</count> <item_version>0</item_version> <item>43</item> <item>43</item> <item>43</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="47" tracking_level="0" version="0"> <count>56</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>Range1_all_ones_fu_332</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>Range1_all_zeros_fu_338</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>Range2_all_ones_fu_317</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>brmerge192_demorgan_fu_377</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>brmerge2_fu_425</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>brmerge_fu_394</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>carry_1_fu_294</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>data_V_addr_gep_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>deleted_ones_fu_363</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>deleted_zeros_fu_383</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>exp_res_V_addr_1_gep_fu_125</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>exp_res_V_addr_gep_fu_100</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>exp_res_V_alloca_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>exp_table2_addr_gep_fu_87</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>i3_phi_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_1_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>i_2_fu_227</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>i_phi_fu_149</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>invert_table3_addr_gep_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>overflow_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>p_097_2_fu_455</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_197_not_fu_436</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>p_3_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>p_Result_5_fu_264</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_Result_6_fu_300</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_Result_s_fu_241</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_Val2_1_fu_255</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>p_Val2_2_fu_274</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_mux_fu_441</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>p_not_fu_388</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>p_s_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>phitmp_demorgan_fu_371</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>r_V_cast_cast_cast_fu_238</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>res_V_addr_gep_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>rev1_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>rev_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp1_demorgan_fu_410</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp1_fu_414</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>tmp2_fu_431</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_11_cast_fu_271</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_11_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_12_fu_323</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_13_fu_344</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_2_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>tmp_3_cast_cast_cast_fu_217</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp_4_fu_184</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>tmp_5_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_6_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_7_fu_221</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_8_fu_233</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_9_fu_280</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>tmp_s_fu_399</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>underflow_fu_420</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>y_V_2_fu_203</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>y_V_fu_189</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_fu_463</first> <second> <count>3</count> <item_version>0</item_version> <item>43</item> <item>43</item> <item>43</item> </second> </item> <item> <first>grp_reduce_2_fu_167</first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="49" tracking_level="0" version="0"> <count>6</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>data_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>16</item> <item>16</item> </second> </item> <item> <first> <first>exp_res_V</first> <second>0</second> </first> <second> <count>3</count> <item_version>0</item_version> <item>22</item> <item>41</item> <item>41</item> </second> </item> <item> <first> <first>exp_res_V</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>exp_table2</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>20</item> <item>20</item> </second> </item> <item> <first> <first>invert_table3</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>29</item> <item>29</item> </second> </item> <item> <first> <first>res_V</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>27</count> <item_version>0</item_version> <item> <first>145</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>473</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>483</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>488</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>493</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>498</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>503</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>508</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>513</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>521</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>526</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>531</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>536</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>541</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>546</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>555</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>561</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>566</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>577</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>582</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>598</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>604</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>27</count> <item_version>0</item_version> <item> <first>Range1_all_ones_reg_582</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>Range1_all_zeros_reg_587</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>brmerge192_demorgan_reg_598</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>carry_1_reg_572</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>data_V_addr_reg_483</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>exp_res_V_addr_1_reg_531</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>exp_res_V_load_reg_536</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>exp_table2_addr_reg_493</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>exp_table2_load_reg_498</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>i3_reg_156</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_1_reg_473</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>i_2_reg_521</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>i_reg_145</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>invert_table3_addr_reg_508</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>p_097_2_reg_604</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_Result_6_reg_577</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_Result_s_reg_555</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_Val2_2_reg_566</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>phitmp_demorgan_reg_592</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>r_V_cast_cast_cast_reg_541</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>r_V_reg_546</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_3_cast_cast_cast_reg_513</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp_4_reg_478</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>tmp_6_reg_561</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_8_reg_526</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>y_V_2_reg_503</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>y_V_reg_488</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>145</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>i3_reg_156</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_reg_145</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="52" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>data_V(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>16</item> <item>16</item> </second> </item> </second> </item> <item> <first>res_V(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="54" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> </port2core> <node2core> <count>1</count> <item_version>0</item_version> <item> <first>5</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with STM32.GPIO; with STM32.Device; with STM32_SVD.RCC; with STM32_SVD.SYSCFG; with STM32_SVD.Ethernet; use STM32_SVD.Ethernet; with STM32.SDRAM; with Ada.Real_Time; with Ada.Interrupts.Names; with Ada.Unchecked_Conversion; package body STM32.Eth is type Rx_Desc_Range is mod 16; type Rx_Desc_Array is array (Rx_Desc_Range) of Rx_Desc_Type; type Rx_Desc_Arr_Ptr is access Rx_Desc_Array; type Rx_Buffer is array (Natural range 0 .. 1023) of Unsigned_8; type Rx_Buffer_Array is array (Rx_Desc_Range) of Rx_Buffer; type Rx_Buffer_Arr_Ptr is access Rx_Buffer_Array; Rx_Descs : Rx_Desc_Arr_Ptr; Rx_Buffs : Rx_Buffer_Arr_Ptr; procedure Init_Rx_Desc (I : Rx_Desc_Range); --------------------- -- Initialize_RMII -- --------------------- procedure Initialize_RMII is use STM32.GPIO; use STM32.Device; use STM32_SVD.RCC; begin -- Enable GPIO clocks Enable_Clock (GPIO_A); Enable_Clock (GPIO_C); Enable_Clock (GPIO_G); -- Enable SYSCFG clock RCC_Periph.APB2ENR.SYSCFGEN := True; -- Select RMII (before enabling the clocks) STM32_SVD.SYSCFG.SYSCFG_Periph.PMC.MII_RMII_SEL := True; Configure_Alternate_Function (PA1, GPIO_AF_11_ETH); -- RMII_REF_CLK Configure_Alternate_Function (PA2, GPIO_AF_11_ETH); -- RMII_MDIO Configure_Alternate_Function (PA7, GPIO_AF_11_ETH); -- RMII_CRS_DV Configure_Alternate_Function (PC1, GPIO_AF_11_ETH); -- RMII_MDC Configure_Alternate_Function (PC4, GPIO_AF_11_ETH); -- RMII_RXD0 Configure_Alternate_Function (PC5, GPIO_AF_11_ETH); -- RMII_RXD1 Configure_Alternate_Function (PG2, GPIO_AF_11_ETH); -- RMII_RXER Configure_Alternate_Function (PG11, GPIO_AF_11_ETH); -- RMII_TX_EN Configure_Alternate_Function (PG13, GPIO_AF_11_ETH); -- RMII_TXD0 Configure_Alternate_Function (PG14, GPIO_AF_11_ETH); -- RMII_TXD1 Configure_IO (PA1, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PA2, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PA7, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PC1, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PC4, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PC5, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PG2, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PG11, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PG13, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); Configure_IO (PG14, (Mode_AF, Push_Pull, Speed_100MHz, Floating)); -- Enable clocks RCC_Periph.AHB1ENR.ETHMACEN := True; RCC_Periph.AHB1ENR.ETHMACTXEN := True; RCC_Periph.AHB1ENR.ETHMACRXEN := True; RCC_Periph.AHB1ENR.ETHMACPTPEN := True; -- Reset RCC_Periph.AHB1RSTR.ETHMACRST := True; RCC_Periph.AHB1RSTR.ETHMACRST := False; -- Software reset Ethernet_DMA_Periph.DMABMR.SR := True; while Ethernet_DMA_Periph.DMABMR.SR loop null; end loop; end Initialize_RMII; -------------- -- Read_MMI -- -------------- procedure Read_MMI (Reg : UInt5; Val : out Unsigned_16) is use Ada.Real_Time; Pa : constant UInt5 := 0; Cr : UInt3; begin case STM32.Device.System_Clock_Frequencies.HCLK is when 20e6 .. 35e6 - 1 => Cr := 2#010#; when 35e6 .. 60e6 - 1 => Cr := 2#011#; when 60e6 .. 100e6 - 1 => Cr := 2#000#; when 100e6 .. 150e6 - 1 => Cr := 2#001#; when 150e6 .. 216e6 => Cr := 2#100#; when others => raise Constraint_Error; end case; Ethernet_MAC_Periph.MACMIIAR := (PA => Pa, MR => Reg, CR => Cr, MW => False, MB => True, others => <>); loop exit when not Ethernet_MAC_Periph.MACMIIAR.MB; delay until Clock + Milliseconds (1); end loop; Val := Ethernet_MAC_Periph.MACMIIDR.TD; end Read_MMI; ------------------ -- Init_Rx_Desc -- ------------------ procedure Init_Rx_Desc (I : Rx_Desc_Range) is function W is new Ada.Unchecked_Conversion (Address, UInt32); Last : constant Boolean := I = Rx_Desc_Range'Last; begin Rx_Descs (I) := (Rdes0 => (Own => 1, others => <>), Rdes1 => (Dic => 0, Rbs2 => 0, Rer => (if Last then 1 else 0), Rch => 1, Rbs => Rx_Buffer'Length, others => <>), Rdes2 => W (Rx_Buffs (I)'Address), Rdes3 => W (Rx_Descs (I + 1)'Address)); end Init_Rx_Desc; procedure Init_Mac is function To_Rx_Desc_Arr_Ptr is new Ada.Unchecked_Conversion (System.Address, Rx_Desc_Arr_Ptr); function To_Rx_Buffer_Arr_Ptr is new Ada.Unchecked_Conversion (System.Address, Rx_Buffer_Arr_Ptr); function W is new Ada.Unchecked_Conversion (Address, UInt32); Desc_Addr : Address; begin -- FIXME: check speed, full duplex Ethernet_MAC_Periph.MACCR := (CSTF => True, WD => False, JD => False, IFG => 2#100#, CSD => False, FES => True, ROD => True, LM => False, DM => True, IPCO => False, RD => False, APCS => True, BL => 2#10#, DC => True, TE => False, RE => False, others => <>); Ethernet_MAC_Periph.MACFFR := (RA => True, others => <>); Ethernet_MAC_Periph.MACHTHR := 0; Ethernet_MAC_Periph.MACHTLR := 0; Ethernet_MAC_Periph.MACFCR := (PT => 0, ZQPD => False, PLT => 0, UPFD => False, RFCE => True, TFCE => True, FCB => False, others => <>); Ethernet_MAC_Periph.MACVLANTR := (VLANTC => False, VLANTI => 0, others => <>); Ethernet_MAC_Periph.MACPMTCSR := (WFFRPR => False, GU => False, WFR => False, MPR => False, WFE => False, MPE => False, PD => False, others => <>); Desc_Addr := STM32.SDRAM.Reserve (Amount => Rx_Desc_Array'Size / 8); Rx_Descs := To_Rx_Desc_Arr_Ptr (Desc_Addr); Ethernet_DMA_Periph.DMARDLAR := W (Desc_Addr); Desc_Addr := STM32.SDRAM.Reserve (Amount => Rx_Buffer_Array'Size / 8); Rx_Buffs := To_Rx_Buffer_Arr_Ptr (Desc_Addr); for I in Rx_Desc_Range loop Init_Rx_Desc (I); end loop; Ethernet_DMA_Periph.DMABMR := (SR => False, DA => False, DSL => 0, EDFE => False, PBL => 4, RTPR => 0, FB => True, RDP => 4, USP => True, FPM => False, AAB => False, MB => False, others => <>); end Init_Mac; protected Sync is entry Wait_Packet; procedure Start_Rx; procedure Interrupt; pragma Attach_Handler (Interrupt, Ada.Interrupts.Names.ETH_Interrupt); private Rx_Pkt : Boolean := False; -- First descriptor of the last received packet. Last_Rx : Rx_Desc_Range; -- Descriptor for the next packet to be received. Next_Rx : Rx_Desc_Range; end Sync; protected body Sync is procedure Start_Rx is begin -- Make as if last packet received was in last descriptor. Last_Rx := Rx_Desc_Range'Last; Next_Rx := Rx_Desc_Range'First; Rx_Descs (Last_Rx).Rdes0.Own := 0; Rx_Descs (Last_Rx).Rdes0.Ls := 1; -- Assume the RxDMA is ok. Ethernet_MAC_Periph.MACCR.RE := True; Ethernet_DMA_Periph.DMAIER.RIE := True; Ethernet_DMA_Periph.DMAIER.NISE := True; Ethernet_DMA_Periph.DMAOMR.SR := True; Ethernet_DMA_Periph.DMARPDR := 1; end Start_Rx; entry Wait_Packet when Rx_Pkt is begin -- Set OWN to last rx descs. loop -- The previous packet is owned by the software. pragma Assert (Rx_Descs (Last_Rx).Rdes0.Own = 0); -- Refill desc. Init_Rx_Desc (Last_Rx); Last_Rx := Last_Rx + 1; exit when Last_Rx = Next_Rx; end loop; -- As we got an interrupt, the next descriptor should be for us. pragma Assert (Rx_Descs (Last_Rx).Rdes0.Own = 0); Last_Rx := Next_Rx; -- Find Next Rx. loop exit when Rx_Descs (Next_Rx).Rdes0.Ls = 1; Next_Rx := Next_Rx + 1; end loop; Next_Rx := Next_Rx + 1; if Rx_Descs (Next_Rx).Rdes0.Own = 1 then -- Have to wait if no packets after the current one. Rx_Pkt := False; end if; end Wait_Packet; procedure Interrupt is begin Ethernet_DMA_Periph.DMASR.RS := True; Rx_Pkt := True; end Interrupt; end Sync; procedure Start_Rx is begin Sync.Start_Rx; end Start_Rx; procedure Wait_Packet is begin Sync.Wait_Packet; end Wait_Packet; end STM32.Eth;
-- Copyright 2013-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pck is procedure Put(S : String); end Pck;
package Problem_35 is procedure Solve; end Problem_35;
package ACO.States is pragma Preelaborate; type State is (Initializing, Pre_Operational, Operational, Stopped, Unknown_State); type State_Transition is record Previous : State := Unknown_State; Current : State := Unknown_State; end record; end ACO.States;
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with console_h; with Interfaces.C.Strings; with Interfaces.C.Extensions; with color_h; with error_h; package console_printing_h is -- BSD 3-Clause License -- * -- * Copyright © 2008-2021, Jice and the libtcod contributors. -- * All rights reserved. -- * -- * 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. -- procedure TCOD_console_print (con : access console_h.TCOD_Console; x : int; y : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) -- console_printing.h:53 with Import => True, Convention => C, External_Name => "TCOD_console_print"; procedure TCOD_console_print_ex (con : access console_h.TCOD_Console; x : int; y : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) -- console_printing.h:55 with Import => True, Convention => C, External_Name => "TCOD_console_print_ex"; function TCOD_console_print_rect (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:58 with Import => True, Convention => C, External_Name => "TCOD_console_print_rect"; function TCOD_console_print_rect_ex (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:60 with Import => True, Convention => C, External_Name => "TCOD_console_print_rect_ex"; procedure TCOD_console_print_frame (con : console_h.TCOD_console_t; x : int; y : int; w : int; h : int; empty : Extensions.bool; flag : console_h.TCOD_bkgnd_flag_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) -- console_printing.h:71 with Import => True, Convention => C, External_Name => "TCOD_console_print_frame"; function TCOD_console_get_height_rect (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:74 with Import => True, Convention => C, External_Name => "TCOD_console_get_height_rect"; procedure TCOD_console_print_utf (con : access console_h.TCOD_Console; x : int; y : int; fmt : access wchar_t -- , ... ) -- console_printing.h:78 with Import => True, Convention => C, External_Name => "TCOD_console_print_utf"; procedure TCOD_console_print_ex_utf (con : access console_h.TCOD_Console; x : int; y : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : access wchar_t -- , ... ) -- console_printing.h:80 with Import => True, Convention => C, External_Name => "TCOD_console_print_ex_utf"; function TCOD_console_print_rect_utf (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : access wchar_t -- , ... ) return int -- console_printing.h:83 with Import => True, Convention => C, External_Name => "TCOD_console_print_rect_utf"; function TCOD_console_print_rect_ex_utf (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : access wchar_t -- , ... ) return int -- console_printing.h:85 with Import => True, Convention => C, External_Name => "TCOD_console_print_rect_ex_utf"; function TCOD_console_get_height_rect_utf (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : access wchar_t -- , ... ) return int -- console_printing.h:96 with Import => True, Convention => C, External_Name => "TCOD_console_get_height_rect_utf"; subtype TCOD_colctrl_t is unsigned; TCOD_COLCTRL_1 : constant unsigned := 1; TCOD_COLCTRL_2 : constant unsigned := 2; TCOD_COLCTRL_3 : constant unsigned := 3; TCOD_COLCTRL_4 : constant unsigned := 4; TCOD_COLCTRL_5 : constant unsigned := 5; TCOD_COLCTRL_NUMBER : constant unsigned := 5; TCOD_COLCTRL_FORE_RGB : constant unsigned := 6; TCOD_COLCTRL_BACK_RGB : constant unsigned := 7; TCOD_COLCTRL_STOP : constant unsigned := 8; -- console_printing.h:110 procedure TCOD_console_set_color_control (con : TCOD_colctrl_t; fore : color_h.TCOD_color_t; back : color_h.TCOD_color_t) -- console_printing.h:112 with Import => True, Convention => C, External_Name => "TCOD_console_set_color_control"; -- UTF-8 functions --* -- Format and print a UTF-8 string to a console. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_printf (con : access console_h.TCOD_Console; x : int; y : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return error_h.TCOD_Error -- console_printing.h:125 with Import => True, Convention => C, External_Name => "TCOD_console_printf"; --* -- Format and print a UTF-8 string to a console. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_printf_ex (con : access console_h.TCOD_Console; x : int; y : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return error_h.TCOD_Error -- console_printing.h:135 with Import => True, Convention => C, External_Name => "TCOD_console_printf_ex"; --* -- Format and print a UTF-8 string to a console. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_printf_rect (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:152 with Import => True, Convention => C, External_Name => "TCOD_console_printf_rect"; --* -- Format and print a UTF-8 string to a console. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_printf_rect_ex (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:163 with Import => True, Convention => C, External_Name => "TCOD_console_printf_rect_ex"; --* -- Print a framed and optionally titled region to a console, using default -- colors and alignment. -- This function uses Unicode box-drawing characters and a UTF-8 formatted -- string. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_printf_frame (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; empty : int; flag : console_h.TCOD_bkgnd_flag_t; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return error_h.TCOD_Error -- console_printing.h:186 with Import => True, Convention => C, External_Name => "TCOD_console_printf_frame"; --* -- Return the number of lines that would be printed by this formatted string. -- \rst -- .. versionadded:: 1.8 -- .. versionchanged:: 1.16 -- Now returns a negative error code on failure. -- \endrst -- function TCOD_console_get_height_rect_fmt (con : access console_h.TCOD_Console; x : int; y : int; w : int; h : int; fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int -- console_printing.h:205 with Import => True, Convention => C, External_Name => "TCOD_console_get_height_rect_fmt"; function TCOD_console_printn (con : access console_h.TCOD_Console; x : int; y : int; n : size_t; str : Interfaces.C.Strings.chars_ptr; fg : access constant color_h.TCOD_color_t; bg : access constant color_h.TCOD_color_t; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t) return error_h.TCOD_Error -- console_printing.h:208 with Import => True, Convention => C, External_Name => "TCOD_console_printn"; function TCOD_console_printn_rect (con : access console_h.TCOD_Console; x : int; y : int; width : int; height : int; n : size_t; str : Interfaces.C.Strings.chars_ptr; fg : access constant color_h.TCOD_color_t; bg : access constant color_h.TCOD_color_t; flag : console_h.TCOD_bkgnd_flag_t; alignment : console_h.TCOD_alignment_t) return int -- console_printing.h:218 with Import => True, Convention => C, External_Name => "TCOD_console_printn_rect"; function TCOD_console_get_height_rect_n (console : access console_h.TCOD_Console; x : int; y : int; width : int; height : int; n : size_t; str : Interfaces.C.Strings.chars_ptr) return int -- console_printing.h:230 with Import => True, Convention => C, External_Name => "TCOD_console_get_height_rect_n"; function TCOD_console_get_height_rect_wn (width : int; n : size_t; str : Interfaces.C.Strings.chars_ptr) return int -- console_printing.h:232 with Import => True, Convention => C, External_Name => "TCOD_console_get_height_rect_wn"; function TCOD_console_printn_frame (con : access console_h.TCOD_Console; x : int; y : int; width : int; height : int; n : size_t; title : Interfaces.C.Strings.chars_ptr; fg : access constant color_h.TCOD_color_t; bg : access constant color_h.TCOD_color_t; flag : console_h.TCOD_bkgnd_flag_t; empty : Extensions.bool) return error_h.TCOD_Error -- console_printing.h:233 with Import => True, Convention => C, External_Name => "TCOD_console_printn_frame"; -- extern "C" -- namespace tcod end console_printing_h;
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- Copyright (C) 2016 Nico Huber <nico.h@gmx.de> -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.GFX.GMA.Config; with HW.GFX.GMA.DP_Info; with HW.GFX.GMA.Registers; with HW.Debug; with GNAT.Source_Info; package body HW.GFX.GMA.PCH.Transcoder is type DPLL_SEL_Array is array (FDI_Port_Type) of Word32; DPLL_SEL_TRANSCODER_x_DPLL_ENABLE : constant DPLL_SEL_Array := (FDI_A => 1 * 2 ** 3, FDI_B => 1 * 2 ** 7, FDI_C => 1 * 2 ** 11); DPLL_SEL_TRANSCODER_x_DPLL_SEL_MASK : constant DPLL_SEL_Array := (FDI_A => 1 * 2 ** 0, FDI_B => 1 * 2 ** 4, FDI_C => 1 * 2 ** 8); function DPLL_SEL_TRANSCODER_x_DPLL_SEL (Port : FDI_Port_Type; PLL : Word32) return Word32 is begin return Shift_Left (PLL, (case Port is when FDI_A => 0, when FDI_B => 4, when FDI_C => 8)); end DPLL_SEL_TRANSCODER_x_DPLL_SEL; TRANS_CONF_TRANSCODER_ENABLE : constant := 1 * 2 ** 31; TRANS_CONF_TRANSCODER_STATE : constant := 1 * 2 ** 30; TRANS_CHICKEN2_TIMING_OVERRIDE : constant := 1 * 2 ** 31; TRANS_DP_CTL_OUTPUT_ENABLE : constant := 1 * 2 ** 31; TRANS_DP_CTL_PORT_SELECT_MASK : constant := 3 * 2 ** 29; TRANS_DP_CTL_PORT_SELECT_NONE : constant := 3 * 2 ** 29; TRANS_DP_CTL_ENHANCED_FRAMING : constant := 1 * 2 ** 18; TRANS_DP_CTL_VSYNC_ACTIVE_HIGH : constant := 1 * 2 ** 4; TRANS_DP_CTL_HSYNC_ACTIVE_HIGH : constant := 1 * 2 ** 3; type TRANS_DP_CTL_PORT_SELECT_Array is array (PCH_Port) of Word32; TRANS_DP_CTL_PORT_SELECT : constant TRANS_DP_CTL_PORT_SELECT_Array := (PCH_DP_B => 0 * 2 ** 29, PCH_DP_C => 1 * 2 ** 29, PCH_DP_D => 2 * 2 ** 29, others => 0); function TRANS_DP_CTL_BPC (BPC : BPC_Type) return Word32 is begin return (case BPC is when 6 => 2 * 2 ** 9, when 10 => 1 * 2 ** 9, when 12 => 3 * 2 ** 9, when others => 0 * 2 ** 9); end TRANS_DP_CTL_BPC; function TRANS_DATA_M_TU (Transfer_Unit : Positive) return Word32 is begin return Shift_Left (Word32 (Transfer_Unit - 1), 25); end TRANS_DATA_M_TU; ---------------------------------------------------------------------------- type Transcoder_Registers is record HTOTAL : Registers.Registers_Index; HBLANK : Registers.Registers_Index; HSYNC : Registers.Registers_Index; VTOTAL : Registers.Registers_Index; VBLANK : Registers.Registers_Index; VSYNC : Registers.Registers_Index; CONF : Registers.Registers_Index; DP_CTL : Registers.Registers_Index; DATA_M : Registers.Registers_Index; DATA_N : Registers.Registers_Index; LINK_M : Registers.Registers_Index; LINK_N : Registers.Registers_Index; CHICKEN2 : Registers.Registers_Index; end record; type Transcoder_Registers_Array is array (FDI_Port_Type) of Transcoder_Registers; TRANS : constant Transcoder_Registers_Array := Transcoder_Registers_Array' (FDI_A => (HTOTAL => Registers.TRANS_HTOTAL_A, HBLANK => Registers.TRANS_HBLANK_A, HSYNC => Registers.TRANS_HSYNC_A, VTOTAL => Registers.TRANS_VTOTAL_A, VBLANK => Registers.TRANS_VBLANK_A, VSYNC => Registers.TRANS_VSYNC_A, CONF => Registers.TRANSACONF, DP_CTL => Registers.TRANS_DP_CTL_A, DATA_M => Registers.TRANSA_DATA_M1, DATA_N => Registers.TRANSA_DATA_N1, LINK_M => Registers.TRANSA_DP_LINK_M1, LINK_N => Registers.TRANSA_DP_LINK_N1, CHICKEN2 => Registers.TRANSA_CHICKEN2), FDI_B => (HTOTAL => Registers.TRANS_HTOTAL_B, HBLANK => Registers.TRANS_HBLANK_B, HSYNC => Registers.TRANS_HSYNC_B, VTOTAL => Registers.TRANS_VTOTAL_B, VBLANK => Registers.TRANS_VBLANK_B, VSYNC => Registers.TRANS_VSYNC_B, CONF => Registers.TRANSBCONF, DP_CTL => Registers.TRANS_DP_CTL_B, DATA_M => Registers.TRANSB_DATA_M1, DATA_N => Registers.TRANSB_DATA_N1, LINK_M => Registers.TRANSB_DP_LINK_M1, LINK_N => Registers.TRANSB_DP_LINK_N1, CHICKEN2 => Registers.TRANSB_CHICKEN2), FDI_C => (HTOTAL => Registers.TRANS_HTOTAL_C, HBLANK => Registers.TRANS_HBLANK_C, HSYNC => Registers.TRANS_HSYNC_C, VTOTAL => Registers.TRANS_VTOTAL_C, VBLANK => Registers.TRANS_VBLANK_C, VSYNC => Registers.TRANS_VSYNC_C, CONF => Registers.TRANSCCONF, DP_CTL => Registers.TRANS_DP_CTL_C, DATA_M => Registers.TRANSC_DATA_M1, DATA_N => Registers.TRANSC_DATA_N1, LINK_M => Registers.TRANSC_DP_LINK_M1, LINK_N => Registers.TRANSC_DP_LINK_N1, CHICKEN2 => Registers.TRANSC_CHICKEN2)); ---------------------------------------------------------------------------- procedure On (Port_Cfg : Port_Config; Port : FDI_Port_Type; PLL : Word32) is Mode : constant Mode_Type := Port_Cfg.Mode; function Encode (LSW, MSW : Pos32) return Word32 is begin return (Word32 (LSW) - 1) or ((Word32 (MSW) - 1) * 2 ** 16); end Encode; begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); if Config.Has_DPLL_SEL then Registers.Unset_And_Set_Mask (Register => Registers.PCH_DPLL_SEL, Mask_Unset => DPLL_SEL_TRANSCODER_x_DPLL_SEL_MASK (Port), Mask_Set => DPLL_SEL_TRANSCODER_x_DPLL_ENABLE (Port) or DPLL_SEL_TRANSCODER_x_DPLL_SEL (Port, PLL)); end if; Registers.Write (Register => TRANS (Port).HTOTAL, Value => Encode (Mode.H_Visible, Mode.H_Total)); Registers.Write (Register => TRANS (Port).HBLANK, Value => Encode (Mode.H_Visible, Mode.H_Total)); Registers.Write (Register => TRANS (Port).HSYNC, Value => Encode (Mode.H_Sync_Begin, Mode.H_Sync_End)); Registers.Write (Register => TRANS (Port).VTOTAL, Value => Encode (Mode.V_Visible, Mode.V_Total)); Registers.Write (Register => TRANS (Port).VBLANK, Value => Encode (Mode.V_Visible, Mode.V_Total)); Registers.Write (Register => TRANS (Port).VSYNC, Value => Encode (Mode.V_Sync_Begin, Mode.V_Sync_End)); if Port_Cfg.Display = DP then declare Data_M, Link_M : DP_Info.M_Type; Data_N, Link_N : DP_Info.N_Type; begin DP_Info.Calculate_M_N (Link => Port_Cfg.DP, Mode => Port_Cfg.Mode, Data_M => Data_M, Data_N => Data_N, Link_M => Link_M, Link_N => Link_N); Registers.Write (Register => TRANS (Port).DATA_M, Value => TRANS_DATA_M_TU (64) or Word32 (Data_M)); Registers.Write (Register => TRANS (Port).DATA_N, Value => Word32 (Data_N)); Registers.Write (Register => TRANS (Port).LINK_M, Value => Word32 (Link_M)); Registers.Write (Register => TRANS (Port).LINK_N, Value => Word32 (Link_N)); end; if Config.Has_Trans_DP_Ctl then declare Polarity : constant Word32 := (if Port_Cfg.Mode.H_Sync_Active_High then TRANS_DP_CTL_HSYNC_ACTIVE_HIGH else 0) or (if Port_Cfg.Mode.V_Sync_Active_High then TRANS_DP_CTL_VSYNC_ACTIVE_HIGH else 0); Enhanced_Framing : constant Word32 := (if Port_Cfg.DP.Enhanced_Framing then TRANS_DP_CTL_ENHANCED_FRAMING else 0); begin Registers.Write (Register => TRANS (Port).DP_CTL, Value => TRANS_DP_CTL_OUTPUT_ENABLE or TRANS_DP_CTL_PORT_SELECT (Port_Cfg.PCH_Port) or Enhanced_Framing or TRANS_DP_CTL_BPC (Port_Cfg.Mode.BPC) or Polarity); end; end if; end if; if Config.Has_Trans_Timing_Ovrrde then Registers.Set_Mask (Register => TRANS (Port).CHICKEN2, Mask => TRANS_CHICKEN2_TIMING_OVERRIDE); end if; Registers.Write (Register => TRANS (Port).CONF, Value => TRANS_CONF_TRANSCODER_ENABLE); end On; procedure Off (Port : FDI_Port_Type) is begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); Registers.Unset_Mask (Register => TRANS (Port).CONF, Mask => TRANS_CONF_TRANSCODER_ENABLE); Registers.Wait_Unset_Mask (Register => TRANS (Port).CONF, Mask => TRANS_CONF_TRANSCODER_STATE, TOut_MS => 50); if Config.Has_Trans_Timing_Ovrrde then Registers.Unset_Mask (Register => TRANS (Port).CHICKEN2, Mask => TRANS_CHICKEN2_TIMING_OVERRIDE); end if; if Config.Has_Trans_DP_Ctl then Registers.Write (Register => TRANS (Port).DP_CTL, Value => TRANS_DP_CTL_PORT_SELECT_NONE); end if; if Config.Has_DPLL_SEL then Registers.Unset_Mask (Register => Registers.PCH_DPLL_SEL, Mask => DPLL_SEL_TRANSCODER_x_DPLL_ENABLE (Port)); end if; end Off; end HW.GFX.GMA.PCH.Transcoder;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . D E C I M A L _ A U X -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- 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 Ada.Text_IO.Float_Aux; use Ada.Text_IO.Float_Aux; with System.Img_Dec; use System.Img_Dec; with System.Img_LLD; use System.Img_LLD; with System.Val_Dec; use System.Val_Dec; with System.Val_LLD; use System.Val_LLD; package body Ada.Text_IO.Decimal_Aux is ------------- -- Get_Dec -- ------------- function Get_Dec (File : in File_Type; Width : in Field; Scale : Integer) return Integer is Buf : String (1 .. Field'Last); Ptr : aliased Integer; Stop : Integer := 0; Item : Integer; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Real (File, Buf, Stop); Ptr := 1; end if; Item := Scan_Decimal (Buf, Ptr'Access, Stop, Scale); Check_End_Of_Field (File, Buf, Stop, Ptr, Width); return Item; end Get_Dec; ------------- -- Get_LLD -- ------------- function Get_LLD (File : in File_Type; Width : in Field; Scale : Integer) return Long_Long_Integer is Buf : String (1 .. Field'Last); Ptr : aliased Integer; Stop : Integer := 0; Item : Long_Long_Integer; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Real (File, Buf, Stop); Ptr := 1; end if; Item := Scan_Long_Long_Decimal (Buf, Ptr'Access, Stop, Scale); Check_End_Of_Field (File, Buf, Stop, Ptr, Width); return Item; end Get_LLD; -------------- -- Gets_Dec -- -------------- function Gets_Dec (From : in String; Last : access Positive; Scale : Integer) return Integer is Pos : aliased Integer; Item : Integer; begin String_Skip (From, Pos); Item := Scan_Decimal (From, Pos'Access, From'Last, Scale); Last.all := Pos - 1; return Item; exception when Constraint_Error => Last.all := Pos - 1; raise Data_Error; end Gets_Dec; -------------- -- Gets_LLD -- -------------- function Gets_LLD (From : in String; Last : access Positive; Scale : Integer) return Long_Long_Integer is Pos : aliased Integer; Item : Long_Long_Integer; begin String_Skip (From, Pos); Item := Scan_Long_Long_Decimal (From, Pos'Access, From'Last, Scale); Last.all := Pos - 1; return Item; exception when Constraint_Error => Last.all := Pos - 1; raise Data_Error; end Gets_LLD; ------------- -- Put_Dec -- ------------- procedure Put_Dec (File : in File_Type; Item : in Integer; Fore : in Field; Aft : in Field; Exp : in Field; Scale : Integer) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin Set_Image_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp); Put_Item (File, Buf (1 .. Ptr)); end Put_Dec; ------------- -- Put_LLD -- ------------- procedure Put_LLD (File : in File_Type; Item : in Long_Long_Integer; Fore : in Field; Aft : in Field; Exp : in Field; Scale : Integer) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin Set_Image_Long_Long_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp); Put_Item (File, Buf (1 .. Ptr)); end Put_LLD; -------------- -- Puts_Dec -- -------------- procedure Puts_Dec (To : out String; Item : in Integer; Aft : in Field; Exp : in Field; Scale : Integer) is Buf : String (1 .. Field'Last); Fore : Integer; Ptr : Natural := 0; begin if Exp = 0 then Fore := To'Length - 1 - Aft; else Fore := To'Length - 2 - Aft - Exp; end if; if Fore < 1 then raise Layout_Error; end if; Set_Image_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp); if Ptr > To'Length then raise Layout_Error; else To := Buf (1 .. Ptr); end if; end Puts_Dec; -------------- -- Puts_Dec -- -------------- procedure Puts_LLD (To : out String; Item : in Long_Long_Integer; Aft : in Field; Exp : in Field; Scale : Integer) is Buf : String (1 .. Field'Last); Fore : Integer; Ptr : Natural := 0; begin if Exp = 0 then Fore := To'Length - 1 - Aft; else Fore := To'Length - 2 - Aft - Exp; end if; if Fore < 1 then raise Layout_Error; end if; Set_Image_Long_Long_Decimal (Item, Buf, Ptr, Scale, Fore, Aft, Exp); if Ptr > To'Length then raise Layout_Error; else To := Buf (1 .. Ptr); end if; end Puts_LLD; end Ada.Text_IO.Decimal_Aux;
-- Mojang Session API -- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -- -- OpenAPI spec version: 2020_06_05 -- -- -- NOTE: This package is auto generated by the swagger code generator 3.3.4. -- https://openapi-generator.tech -- Do not edit the class manually. package body com.github.asyncmc.mojang.sessions.ada.server.model.Models is use Swagger.Streams; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SessionApiError_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("error", Value.Error); Into.Write_Entity ("path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SessionApiError_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SessionApiError_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "error", Value.Error); Swagger.Streams.Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SessionApiError_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : SessionApiError_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerSkinURL_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("url", Value.Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerSkinURL_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerSkinURL_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "url", Value.Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerSkinURL_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerSkinURL_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerTextureURL_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("url", Value.Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerTextureURL_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerTextureURL_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "url", Value.Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerTextureURL_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerTextureURL_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerTexture_Type) is begin Into.Start_Entity (Name); Serialize (Into, "SKIN", Value.S_K_I_N); Serialize (Into, "CAPE", Value.C_A_P_E); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerTexture_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerTexture_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "SKIN", Value.S_K_I_N); Deserialize (Object, "CAPE", Value.C_A_P_E); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerTexture_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerTexture_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfileTexturePropertyValue_Type) is begin Into.Start_Entity (Name); Serialize (Into, "timestamp", Value.Timestamp); Into.Write_Entity ("profileId", Value.Profile_Id); Into.Write_Entity ("profileName", Value.Profile_Name); Into.Write_Entity ("signatureRequired", Value.Signature_Required); Serialize (Into, "textures", Value.Textures); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfileTexturePropertyValue_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfileTexturePropertyValue_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "timestamp", Value.Timestamp); Swagger.Streams.Deserialize (Object, "profileId", Value.Profile_Id); Swagger.Streams.Deserialize (Object, "profileName", Value.Profile_Name); Swagger.Streams.Deserialize (Object, "signatureRequired", Value.Signature_Required); Deserialize (Object, "textures", Value.Textures); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfileTexturePropertyValue_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerProfileTexturePropertyValue_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerSkinMetadata_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("model", Value.Model); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerSkinMetadata_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerSkinMetadata_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "model", Value.Model); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerSkinMetadata_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerSkinMetadata_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfile_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("id", Value.Id); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("legacy", Value.Legacy); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfile_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfile_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "id", Value.Id); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "legacy", Value.Legacy); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfile_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerProfile_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfileProperty_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Serialize (Into, "value", Value.Value); Serialize (Into, "signature", Value.Signature); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PlayerProfileProperty_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfileProperty_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Deserialize (Object, "value", Value.Value); Deserialize (Object, "signature", Value.Signature); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PlayerProfileProperty_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : PlayerProfileProperty_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; end com.github.asyncmc.mojang.sessions.ada.server.model.Models;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . I N I T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a bare board implementation of this package with System.BB.CPU_Primitives; with System.Tasking; package body System.Init is ------------------------ -- Local procedures -- ------------------------ -- These procedures are called by the binder. procedure Initialize; pragma Export (C, Initialize, "__gnat_initialize"); procedure Finalize; pragma Export (C, Finalize, "__gnat_finalize"); -------------- -- Finalize -- -------------- procedure Finalize is begin null; end Finalize; ---------------- -- Initialize -- ---------------- procedure Initialize is begin null; end Initialize; --------------------- -- Install_Handler -- --------------------- procedure Install_Handler is begin BB.CPU_Primitives.Install_Error_Handlers; end Install_Handler; ------------------------ -- Runtime_Initialize -- ------------------------ procedure Runtime_Initialize (Install_Handler : Integer) is pragma Unreferenced (Install_Handler); begin -- Ensure that the tasking run time is initialized when using this run -- time. This initialization is required by the support for exceptions -- (which uses thread local storage). The initialization routine has the -- required machinery to prevent multiple calls to Initialize. System.Tasking.Initialize; Init.Install_Handler; end Runtime_Initialize; ---------------------- -- Runtime_Finalize -- ---------------------- procedure Runtime_Finalize is begin null; end Runtime_Finalize; end System.Init;
with Matriz, Ada.Text_IO, matriz_toeplitz, escribir_matriz; use Matriz, Ada.Text_IO; procedure prueba_matriz_toeplitz is V : Vector_De_Enteros (1..6); M : Matriz_de_Enteros(1..6,1..6); begin V := (1,2,3,4,5,6); -- prueba 1: put_line("El vector es (1,2,3,4,5,6)"); put_line("El resultado tiene que ser:"); put_line("(1 2 3 4 5 6)"); put_line("(6 1 2 3 4 5)"); put_line("(5 6 1 2 3 4)"); put_line("(4 5 6 1 2 3)"); put_line("(3 4 5 6 1 2)"); put_line("(2 3 4 5 6 1)"); Matriz_Toeplitz(V,M); put_line("y vuestro programa dice que:"); escribir_matriz(M); put_line("Pulsa enter"); skip_line; V := (1,0,0,0,0,0); -- prueba 2: put_line("El vector es (1,0,0,0,0,0)"); put_line("El resultado tiene que ser:"); put_line("(1 0 0 0 0 0)"); put_line("(0 1 0 0 0 0)"); put_line("(0 0 1 0 0 0)"); put_line("(0 0 0 1 0 0)"); put_line("(0 0 0 0 1 0)"); put_line("(0 0 0 0 0 1)"); Matriz_Toeplitz(V,M); put_line("y vuestro programa dice que:"); escribir_matriz(M); put_line("Pulsa enter"); skip_line; end prueba_matriz_toeplitz;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- G N A T . B U B B L E _ S O R T _ G -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1995-2000 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). -- -- -- ------------------------------------------------------------------------------ -- Bubblesort generic package using formal procedures -- This package provides a generic bubble sort routine that can be used with -- different types of data. See also GNAT.Bubble_Sort_A, a version that works -- with subprogram parameters, allowing code sharing. The generic version -- is slightly more efficient but does not allow code sharing. The generic -- version is also Pure, while the access version can only be Preelaborate. generic -- The data to be sorted is assumed to be indexed by integer values from -- 1 to N, where N is the number of items to be sorted. In addition, the -- index value zero is used for a temporary location used during the sort. with procedure Move (From : Natural; To : Natural); -- A procedure that moves the data item with index From to the data item -- with Index To. An index value of zero is used for moves from and to a -- single temporary location used by the sort. with function Lt (Op1, Op2 : Natural) return Boolean; -- A function that compares two items and returns True if the item with -- index Op1 is less than the item with Index Op2, and False if the Op2 -- item is greater than or equal to the Op1 item. package GNAT.Bubble_Sort_G is pragma Pure (Bubble_Sort_G); procedure Sort (N : Natural); -- This procedures sorts items in the range from 1 to N into ascending -- order making calls to Lt to do required comparisons, and Move to move -- items around. Note that, as described above, both Move and Lt use a -- single temporary location with index value zero. This sort is not -- stable, i.e. the order of equal elements in the input is not preserved. end GNAT.Bubble_Sort_G;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Curses_Demo -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer <Juergen.Pfeifer@T-Online.de> 1996 -- Version Control -- $Revision: 1.5 $ -- Binding Version 00.93 ------------------------------------------------------------------------------ package Sample.Curses_Demo is procedure Demo; end Sample.Curses_Demo;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Exceptions; -- FIFO package body LR.Synchro.Fifo is function Nom_Strategie return String is begin return "Stratègie FIFO"; end Nom_Strategie; task LectRedTask is entry Demander_Lecture; entry Demander_Ecriture; entry Terminer_Lecture; entry Terminer_Ecriture; end LectRedTask; task body LectRedTask is begin loop select accept Demander_Lecture; accept Terminer_Lecture; or accept Demander_Ecriture; accept Terminer_Ecriture; or terminate; end select; end loop; end LectRedTask; procedure Demander_Lecture is begin LectRedTask.Demander_Lecture; end Demander_Lecture; procedure Demander_Ecriture is begin LectRedTask.Demander_Ecriture; end Demander_Ecriture; procedure Terminer_Lecture is begin LectRedTask.Terminer_Lecture; end Terminer_Lecture; procedure Terminer_Ecriture is begin LectRedTask.Terminer_Ecriture; end Terminer_Ecriture; end LR.Synchro.Fifo;
----------------------------------------------------------------------- -- hestia-scheduler -- Hestia Scheduler -- Copyright (C) 2016, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Hestia.Time; with Hestia.Ports; with HAL.Bitmap; package Hestia.Scheduler is -- The schedule state. type State_Type is (ON, OFF); -- A scheduler day and time. type Day_Time is record Day : Hestia.Time.Day_Name; Hour : Hestia.Time.Hour_Number; Minute : Hestia.Time.Minute_Number; end record; -- Compare two scheduler day and time. function "<" (Left, Right : in Day_Time) return Boolean; -- Add some minutes to the scheduler day and time. function "+" (Date : in Day_Time; Minutes : in Natural) return Day_Time; -- Subtract two scheduler day and time and get the difference in minutes. function "-" (Left, Right : in Day_Time) return Integer; -- Format the time. function Format_Time (Date : in Day_Time) return String; Unit : constant Hestia.Time.Minute_Number; -- The scheduler index. subtype Scheduler_Index is Hestia.Ports.Zone_Type; function Get_State (Date : in Hestia.Time.Date_Time; Zone : in Scheduler_Index) return State_Type; -- Get the scheduler state for the given day and time. function Get_State (Date : in Day_Time; Zone : in Scheduler_Index) return State_Type; -- Set the scheduler state for the given day and time. procedure Set_State (Date : in Day_Time; Zone : in Scheduler_Index; State : in State_Type) with Post => Get_State (Date, Zone) = State; -- Display the heat schedule on the display based on the current date and time. procedure Display (Buffer : in out HAL.Bitmap.Bitmap_Buffer'Class; Date : in Hestia.Time.Date_Time); private Unit : constant Hestia.Time.Minute_Number := 5; type Schedule_Unit is new Natural range 0 .. 86_400 / ((Natural (Unit) * 60)); type Day_Schedule is array (Schedule_Unit) of State_Type with Pack; type Week_Schedule is array (Hestia.Time.Day_Name) of Day_Schedule; type Schedule_Type is limited record Name : String (1 .. 20); Week : Week_Schedule; end record; end Hestia.Scheduler;
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ -- WriteStructuralFeatureAction is an abstract class for structural feature -- actions that change structural feature values. ------------------------------------------------------------------------------ limited with AMF.UML.Input_Pins; limited with AMF.UML.Output_Pins; with AMF.UML.Structural_Feature_Actions; package AMF.UML.Write_Structural_Feature_Actions is pragma Preelaborate; type UML_Write_Structural_Feature_Action is limited interface and AMF.UML.Structural_Feature_Actions.UML_Structural_Feature_Action; type UML_Write_Structural_Feature_Action_Access is access all UML_Write_Structural_Feature_Action'Class; for UML_Write_Structural_Feature_Action_Access'Storage_Size use 0; not overriding function Get_Result (Self : not null access constant UML_Write_Structural_Feature_Action) return AMF.UML.Output_Pins.UML_Output_Pin_Access is abstract; -- Getter of WriteStructuralFeatureAction::result. -- -- Gives the output pin on which the result is put. not overriding procedure Set_Result (Self : not null access UML_Write_Structural_Feature_Action; To : AMF.UML.Output_Pins.UML_Output_Pin_Access) is abstract; -- Setter of WriteStructuralFeatureAction::result. -- -- Gives the output pin on which the result is put. not overriding function Get_Value (Self : not null access constant UML_Write_Structural_Feature_Action) return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract; -- Getter of WriteStructuralFeatureAction::value. -- -- Value to be added or removed from the structural feature. not overriding procedure Set_Value (Self : not null access UML_Write_Structural_Feature_Action; To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract; -- Setter of WriteStructuralFeatureAction::value. -- -- Value to be added or removed from the structural feature. end AMF.UML.Write_Structural_Feature_Actions;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 3 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 13 package System.Pack_13 is pragma Preelaborate; Bits : constant := 13; type Bits_13 is mod 2 ** Bits; for Bits_13'Size use Bits; function Get_13 (Arr : System.Address; N : Natural) return Bits_13; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_13 (Arr : System.Address; N : Natural; E : Bits_13); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_13;
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- 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. -------------------------------------------------------------------------------------------------------------------- -- SDL.Versions -- -- Library version information. -------------------------------------------------------------------------------------------------------------------- package SDL.Versions is type Version_Level is mod 2 ** 8 with Size => 8, Convention => C; -- TODO: Check this against the library, as they use an int. type Revision_Level is mod 2 ** 32; type Version is record Major : Version_Level; Minor : Version_Level; Patch : Version_Level; end record with Convention => C; -- These allow the user to determine which version of SDLAda they compiled with. Compiled_Major : constant Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Major_Version"; Compiled_Minor : constant Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Minor_Version"; Compiled_Patch : constant Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Patch_Version"; Compiled : constant Version := (Major => Compiled_Major, Minor => Compiled_Minor, Patch => Compiled_Patch); function Revision return String with Inline => True; function Revision return Revision_Level; procedure Linked_With (Info : in out Version); end SDL.Versions;
---------------------------------------------------------------------------- -- -- Ada client for BaseX -- ---------------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Containers.Indefinite_Vectors; with GNAT.Sockets; package AdaBaseXClient is package String_Vectors is new Ada.Containers.Indefinite_Vectors (Natural, String); use String_Vectors; -- -- BaseX exception -- BaseXException : exception; -- -- For Query Command Protocol -- type Query is tagged private; -- -- Inserts a document in the database at the specified path -- function Add (Path : String; Input : String) return String; -- -- Authenticate for this session -- function Authenticate (Username : String; Password : String) return Boolean; -- -- Bind procedure for Query class -- procedure Bind (Self : Query; Name : String; Value : String; Stype : String); -- -- Close a connection to the host -- procedure Close; -- -- Close procedure for Query class -- procedure Close (Self : out Query); -- -- Open a connection to the host -- function Connect (Server : String; Port : Natural) return Boolean; -- -- Create a new database, inserts initial content -- function Create (Name : String; Input : String) return String; -- -- Create a new Query instance -- function CreateQuery (Qstring : String) return Query; -- -- Execute BaseX command -- function Execute (command : String) return String; -- -- Execute function for Query class -- function Execute (Self : Query) return String; -- -- Return process information -- function Info return String; -- -- Initialize procedure for Query class -- procedure Initialize (Self : out Query; MyId : String); -- -- Replaces content at the specified path by the given document -- function Replace (Path : String; Input : String) return String; -- -- Results function for Query class -- Returns all resulting items as strings -- function Results (Self : Query) return String_Vectors.Vector; -- -- Stores a binary resource in the opened database -- function Store (Path : String; Input : String) return String; private -- -- Socket variable -- Socket : GNAT.Sockets.Socket_Type; Channel : GNAT.Sockets.Stream_Access; type Query is tagged record Id : Ada.Strings.Unbounded.Unbounded_String; end record; -- -- Read data from server -- function Read return String; -- -- Read string from server -- function ReadString return String; -- -- Send data to server -- procedure Send (Command : String); -- -- Send Command to server -- procedure SendCmd (Code : Natural; Arg : String; Input : String); -- -- Read status single byte from socket. -- Server replies with \00 (success) or \01 (error). -- function Status return Boolean; end AdaBaseXClient;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000 -- Version Control -- $Revision: 1.1 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ procedure ncurses2.demo_panels (nap_mseci : Integer);
with Ada.Text_IO; use Ada.Text_IO; procedure Hello is begin Put_Line ("Hello World!"); end Hello;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>call_Loop_LB2D_buf_p</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;PackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName></rtlName> <coreName></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></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buffer_0_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>73</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>buffer_1_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[1].value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>74</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>75</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>write_idx_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>77</item> <item>78</item> <item>79</item> <item>80</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>row</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>row</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>82</item> <item>83</item> <item>84</item> <item>85</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>13</id> <name>tmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>86</item> <item>88</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>row_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>89</item> <item>91</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>92</item> <item>93</item> <item>94</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_5</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>115</item> <item>116</item> <item>118</item> <item>120</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>icmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>121</item> <item>123</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>124</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> <item>101</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>col</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> <item>105</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>106</item> <item>108</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>col_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>109</item> <item>110</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>28</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>111</item> <item>112</item> <item>113</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name>col_cast</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>139</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_7</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>141</item> <item>142</item> <item>143</item> <item>145</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>35</id> <name>icmp1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>146</item> <item>148</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>36</id> <name>write_idx_1_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>184</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>184</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>149</item> <item>151</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_value_V_4</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>186</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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>156</item> <item>157</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>39</id> <name></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>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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>158</item> <item>159</item> <item>160</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_8</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>buffer_0_value_V_ad_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>162</item> <item>163</item> <item>164</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>43</id> <name>buffer_1_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_real/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_real/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>165</item> <item>166</item> <item>167</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>44</id> <name>buffer_1_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>buffer_0_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_Val2_14_0_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>172</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_Val2_14_1_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_Result_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>96</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>177</item> <item>178</item> <item>179</item> <item>180</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>182</item> <item>183</item> <item>184</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>185</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>52</id> <name>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_real/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_real/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>129</item> <item>130</item> <item>131</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name>buffer_1_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_real/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_real/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>132</item> <item>133</item> <item>134</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>54</id> <name>tmp_9</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>135</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>136</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>57</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>126</item> <item>127</item> <item>305</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>58</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>1</count> <item_version>0</item_version> <item>128</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>60</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>186</item> <item>187</item> <item>304</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>61</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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_real/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>1</count> <item_version>0</item_version> <item>188</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>64</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>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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>125</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>66</id> <name>write_idx_1_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>95</item> <item>96</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>68</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>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_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>97</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>70</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_48"> <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>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>81</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_51"> <Value> <Obj> <type>2</type> <id>87</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1080</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>90</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_53"> <Value> <Obj> <type>2</type> <id>107</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1920</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>117</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>119</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>122</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>144</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_58"> <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>63</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>150</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>18446744073709551614</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_60"> <Obj> <type>3</type> <id>10</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_61"> <Obj> <type>3</type> <id>17</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>13</item> <item>15</item> <item>16</item> </node_objs> </item> <item class_id_reference="18" object_id="_62"> <Obj> <type>3</type> <id>23</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</item> </node_objs> </item> <item class_id_reference="18" object_id="_63"> <Obj> <type>3</type> <id>29</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> </node_objs> </item> <item class_id_reference="18" object_id="_64"> <Obj> <type>3</type> <id>40</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>30</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> </node_objs> </item> <item class_id_reference="18" object_id="_65"> <Obj> <type>3</type> <id>51</id> <name>.preheader56.preheader.critedge.0_ifconv</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> </node_objs> </item> <item class_id_reference="18" object_id="_66"> <Obj> <type>3</type> <id>56</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>4</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>54</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>59</id> <name>branch4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>57</item> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>62</id> <name>branch5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>65</id> <name>._crit_edge31</name> <fileName></fileName> <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>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_70"> <Obj> <type>3</type> <id>69</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>66</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_71"> <Obj> <type>3</type> <id>71</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>70</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>112</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_72"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>74</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>75</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>78</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>79</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>80</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>82</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>83</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>84</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>85</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>86</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>88</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>89</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>91</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>92</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>93</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>94</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>95</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>96</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>97</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>98</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>99</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>100</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>101</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>102</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>103</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>104</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>105</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>106</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>108</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>109</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>110</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>111</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>112</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>113</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>116</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>121</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>123</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>124</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>125</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>126</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>127</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>128</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>129</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>130</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>131</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>132</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>133</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>134</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>135</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>136</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>137</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>138</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>139</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>142</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>143</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>145</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>146</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>148</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>149</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>151</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>152</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>153</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>154</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>157</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>158</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>159</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>160</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>161</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>162</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>163</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>164</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>165</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>166</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>167</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>168</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>169</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>170</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>171</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>172</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>173</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>174</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>175</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>178</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>179</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>180</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>183</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>184</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>185</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>186</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>187</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>188</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>289</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>290</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>291</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>292</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>293</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>294</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>295</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>296</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>297</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>298</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>299</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>300</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>301</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>302</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>303</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>304</id> <edge_type>4</edge_type> <source_obj>44</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>305</id> <edge_type>4</edge_type> <source_obj>45</source_obj> <sink_obj>57</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="_184"> <mId>1</mId> <mTag>call_Loop_LB2D_buf_p</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2077921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_185"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>10</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_186"> <mId>3</mId> <mTag>LB2D_buf</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1080</mMinTripCount> <mMaxTripCount>1080</mMaxTripCount> <mMinLatency>2077920</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_187"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>17</item> <item>23</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_188"> <mId>5</mId> <mTag>LB2D_buf.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>40</item> <item>51</item> <item>56</item> <item>59</item> <item>62</item> <item>65</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>1920</mMinTripCount> <mMaxTripCount>1920</mMaxTripCount> <mMinLatency>1921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_189"> <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>69</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_190"> <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>71</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>7</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>46</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>10</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>71</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_191"> <region_name>LB2D_buf.1</region_name> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>40</item> <item>51</item> <item>56</item> <item>59</item> <item>62</item> <item>65</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2013, 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 is implementation of the package for Windows operation system. ------------------------------------------------------------------------------ with Interfaces.C; with Matreshka.Internals.Calendars.Gregorian; with Matreshka.Internals.Calendars.Times; package body Matreshka.Internals.Calendars.Clocks is type WORD is new Interfaces.C.unsigned_short; type SYSTEMTIME is record wYear : WORD; wMonth : WORD; wDayOfWeek : WORD; wDay : WORD; wHour : WORD; wMinute : WORD; wSecond : WORD; wMilliseconds : WORD; end record; pragma Convention (C, SYSTEMTIME); procedure GetSystemTime (lpSystemTime : not null access SYSTEMTIME); pragma Import (Stdcall, GetSystemTime, "GetSystemTime"); ----------- -- Clock -- ----------- function Clock return Absolute_Time is Current_Time : aliased SYSTEMTIME; begin GetSystemTime (Current_Time'Access); return Times.Create (Matreshka.Internals.Calendars.UTC_Time_Zone'Access, Gregorian.Julian_Day (Integer (Current_Time.wYear), Integer (Current_Time.wMonth), Integer (Current_Time.wDay)), Integer (Current_Time.wHour), Integer (Current_Time.wMinute), Integer (Current_Time.wSecond), Integer (Current_Time.wMilliseconds) * 10_000); end Clock; end Matreshka.Internals.Calendars.Clocks;
<?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>bgr2hsv_9_2160_3840_1_s</name> <ret_bitwidth>0</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>imgInput_499</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>24</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>rgb2hsv_4100</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1701972542</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>p_src_mat_rows</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1952539680</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>p_src_mat_cols</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1210929486</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>103</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>17</id> <name>rows</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName>rows</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>129</item> <item>130</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>18</id> <name>cols</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>121</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>121</second> </item> </second> </item> </inlineStackInfo> <originalName>cols</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>81</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>131</item> <item>132</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>19</id> <name>zext_ln73</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3576361312</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>133</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>20</id> <name>zext_ln73_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577705248</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>134</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>21</id> <name>mul_ln73</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577705728</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>135</item> <item>136</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>7.05</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>22</id> <name>br_ln128</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>24</id> <name>indvar_flatten</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>139</item> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>25</id> <name>add_ln128</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>143</item> <item>145</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.69</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name>icmp_ln128</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3579031808</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>146</item> <item>147</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.26</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name>br_ln128</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>148</item> <item>149</item> <item>150</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>152</item> <item>153</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>34</id> <name>b_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName>b.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>154</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>35</id> <name>g_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName>g.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>159</item> <item>161</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>36</id> <name>r_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>162</item> <item>163</item> <item>165</item> <item>167</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>37</id> <name>zext_ln123</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>38</id> <name>zext_ln1347</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 32, true&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>39</id> <name>sub_ln1347</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 32, true&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>171</item> <item>172</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>40</id> <name>add_ln1346</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;33, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_33_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;33, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>173</item> <item>174</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.99</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>41</id> <name>zext_ln534</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>operator long long</contextFuncName> <contextNormFuncName>operator_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator long long</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>175</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>42</id> <name>xf_cv_icvSaturate8u_cv_addr</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>176</item> <item>177</item> <item>178</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>43</id> <name>xf_cv_icvSaturate8u_cv_load</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3569</coreId> </Obj> <bitwidth>8</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> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>44</id> <name>zext_ln147</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577997592</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>45</id> <name>v_3</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName>v</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>181</item> <item>182</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>46</id> <name>zext_ln123_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>183</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>47</id> <name>zext_ln1347_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 32, true&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>48</id> <name>ret_25</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 32, true&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>185</item> <item>186</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>49</id> <name>ret</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;33, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_33_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;33, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>758591538</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>187</item> <item>189</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.02</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>50</id> <name>sext_ln534</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>operator long long</contextFuncName> <contextNormFuncName>operator_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator long long</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>190</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>51</id> <name>xf_cv_icvSaturate8u_cv_addr_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577724249</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>191</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>52</id> <name>xf_cv_icvSaturate8u_cv_load_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577794208</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>194</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>53</id> <name>zext_ln148</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>195</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>54</id> <name>v</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName>v</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3681</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>196</item> <item>197</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>55</id> <name>ret_26</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577820361</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>198</item> <item>199</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>56</id> <name>ret_17</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;9, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_9_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;9, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577822921</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>200</item> <item>201</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>57</id> <name>zext_ln534_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>operator long long</contextFuncName> <contextNormFuncName>operator_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator long long</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>202</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>58</id> <name>xf_cv_icvSaturate8u_cv_addr_2</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577749672</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>205</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>59</id> <name>xf_cv_icvSaturate8u_cv_load_2</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>206</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>60</id> <name>vmin_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>692</lineNumber> <contextFuncName>operator-=&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_assign_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-=&amp;lt;8, false&amp;gt;</second> </first> <second>692</second> </item> </second> </item> </inlineStackInfo> <originalName>vmin.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577750168</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>207</item> <item>208</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>61</id> <name>zext_ln215</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>ap_int_base&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_8_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;8, false&amp;gt;</second> </first> <second>215</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>209</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>62</id> <name>zext_ln215_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>ap_int_base&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_8_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;8, false&amp;gt;</second> </first> <second>215</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577715248</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>210</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>63</id> <name>ret_27</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577716464</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>211</item> <item>212</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>64</id> <name>ret_19</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;9, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_9_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;9, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1885875827</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>213</item> <item>214</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>65</id> <name>zext_ln534_8</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>operator long long</contextFuncName> <contextNormFuncName>operator_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator long long</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>66</id> <name>xf_cv_icvSaturate8u_cv_addr_3</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>218</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>67</id> <name>xf_cv_icvSaturate8u_cv_load_3</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>193</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>219</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>68</id> <name>add_ln213</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>ap_uint&amp;lt;33&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_33_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;33&amp;gt;</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>220</item> <item>221</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>69</id> <name>add_ln213_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>ap_uint&amp;lt;33&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_33_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;33&amp;gt;</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName>op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577814960</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>222</item> <item>223</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.96</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>70</id> <name>sub_ln213</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>ap_uint&amp;lt;33&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_33_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;33&amp;gt;</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>224</item> <item>225</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>71</id> <name>diff_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>213</lineNumber> <contextFuncName>ap_uint&amp;lt;33&amp;gt;</contextFuncName> <contextNormFuncName>ap_uint_33_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int.h</first> <second>ap_uint&amp;lt;33&amp;gt;</second> </first> <second>213</second> </item> </second> </item> </inlineStackInfo> <originalName>diff.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4289</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>226</item> <item>227</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.96</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>72</id> <name>vr</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>870</lineNumber> <contextFuncName>operator==&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;8, false&amp;gt;</second> </first> <second>870</second> </item> </second> </item> </inlineStackInfo> <originalName>vr</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577968768</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>228</item> <item>229</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.94</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>73</id> <name>select_ln126</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>230</item> <item>232</item> <item>234</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>74</id> <name>zext_ln870</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>870</lineNumber> <contextFuncName>operator==&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;8, false&amp;gt;</second> </first> <second>870</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>737</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>235</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>75</id> <name>vg</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>870</lineNumber> <contextFuncName>operator==&amp;lt;8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_eq_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator==&amp;lt;8, false&amp;gt;</second> </first> <second>870</second> </item> </second> </item> </inlineStackInfo> <originalName>vg</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>236</item> <item>237</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.94</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>76</id> <name>select_ln126_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>11</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>238</item> <item>240</item> <item>242</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>77</id> <name>zext_ln156</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>243</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>78</id> <name>void_bgr2hsv_9_2160_3840_1_Mat_9_2160_3840_1_2_Mat_9_2160_3840_1_2_sdiv_addr</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3579019744</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>244</item> <item>245</item> <item>246</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>79</id> <name>rhs_3</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName>i_op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>247</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>80</id> <name>zext_ln1346</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;40, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_40_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;40, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>11</coreId> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>248</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>81</id> <name>trunc_ln1345</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1345</lineNumber> <contextFuncName>operator*&amp;lt;8, false, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_8_false_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator*&amp;lt;8, false, 32, true&amp;gt;</second> </first> <second>1345</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3579014760</coreId> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>82</id> <name>mul_ln1346</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;40, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_40_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;40, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>250</item> <item>251</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.98</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>83</id> <name>ret_20</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1346</lineNumber> <contextFuncName>operator+&amp;lt;40, true, 32, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_40_true_32_true</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator+&amp;lt;40, true, 32, true&amp;gt;</second> </first> <second>1346</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>252</item> <item>254</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>84</id> <name>ret_28</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>255</item> <item>256</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>85</id> <name>ret_22</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1348</lineNumber> <contextFuncName>operator&amp;amp;&amp;lt;32, true, 9, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_32_true_9_true_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator&amp;amp;&amp;lt;32, true, 9, true&amp;gt;</second> </first> <second>1348</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>257</item> <item>258</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.81</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>86</id> <name>sext_ln1348</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1348</lineNumber> <contextFuncName>operator&amp;amp;&amp;lt;32, true, 9, true&amp;gt;</contextFuncName> <contextNormFuncName>operator_32_true_9_true_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator&amp;amp;&amp;lt;32, true, 9, true&amp;gt;</second> </first> <second>1348</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>5249</coreId> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>259</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>87</id> <name>xor_ln157</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName>i_op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3577970992</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>260</item> <item>262</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>88</id> <name>select_ln1347</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>2817</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>263</item> <item>265</item> <item>267</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>89</id> <name>ret_23</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578535945</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>268</item> <item>269</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>90</id> <name>sext_ln157</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>270</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>91</id> <name>shl_ln</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578720024</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>272</item> <item>273</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>92</id> <name>zext_ln157</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>276</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>93</id> <name>add_ln157</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578722496</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>277</item> <item>278</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>94</id> <name>and_ln157</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>279</item> <item>280</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>95</id> <name>sext_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578638217</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>281</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>96</id> <name>xor_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName>i_op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>282</item> <item>283</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>97</id> <name>select_ln1347_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578988104</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>284</item> <item>286</item> <item>288</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>98</id> <name>ret_24</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>1347</lineNumber> <contextFuncName>operator-&amp;lt;8, false, 8, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_8_false_8_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator-&amp;lt;8, false, 8, false&amp;gt;</second> </first> <second>1347</second> </item> </second> </item> </inlineStackInfo> <originalName>ret</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>289</item> <item>290</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>99</id> <name>sext_ln157_2</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>291</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>100</id> <name>shl_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>293</item> <item>294</item> <item>296</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>101</id> <name>zext_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>297</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>102</id> <name>add_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>6065</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>298</item> <item>299</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.41</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>103</id> <name>and_ln157_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578638393</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>300</item> <item>301</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>104</id> <name>sext_ln157_3</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>302</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>105</id> <name>add_ln157_2</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578640952</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>303</item> <item>304</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.54</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>106</id> <name>and_ln157_2</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>305</item> <item>306</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.82</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>107</id> <name>sext_ln157_4</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>307</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>108</id> <name>h</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName>h</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1869182069</coreId> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>308</item> <item>309</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.58</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>109</id> <name>sext_ln158</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>828322356</coreId> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>310</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>110</id> <name>zext_ln534_9</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>534</lineNumber> <contextFuncName>operator unsigned long long</contextFuncName> <contextNormFuncName>operator_unsigned_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_base.h</first> <second>operator unsigned long long</second> </first> <second>534</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1397314633</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>311</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>111</id> <name>void_bgr2hsv_9_2160_3840_1_Mat_9_2160_3840_1_2_Mat_9_2160_3840_1_2_hdiv_addr</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>539110971</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>112</id> <name>void_bgr2hsv_9_2160_3840_1_Mat_9_2160_3840_1_2_Mat_9_2160_3840_1_2_hdiv_load</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1699560457</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>315</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.77</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>113</id> <name>trunc_ln158</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>539113273</coreId> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>316</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>114</id> <name>zext_ln158</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1819632741</coreId> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>317</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>115</id> <name>mul_ln158</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>318</item> <item>319</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.98</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>116</id> <name>add_ln158</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>320</item> <item>322</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>324</item> <item>325</item> <item>327</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>118</id> <name>trunc_ln159_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3579028112</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>329</item> <item>330</item> <item>332</item> <item>334</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>119</id> <name>select_ln159</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3579029328</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>335</item> <item>337</item> <item>339</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>120</id> <name>add_ln161</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName>op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>340</item> <item>341</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>99</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>121</id> <name>op_assign_1</name> <fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>bgr2hsv_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_bgr2hsv.hpp</first> <second>bgr2hsv&amp;lt;9, 2160, 3840, 1&amp;gt;</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName>op</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>8001</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>343</item> <item>344</item> <item>345</item> <item>346</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>122</id> <name>p_Result_s</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>388</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>388</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>348</item> <item>349</item> <item>350</item> <item>351</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>123</id> <name>rgb2hsv_4100_write_ln174</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first> <second>write</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>353</item> <item>354</item> <item>355</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>124</id> <name>br_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>356</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>126</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_108"> <Value> <Obj> <type>2</type> <id>138</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578933376</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_109"> <Value> <Obj> <type>2</type> <id>144</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>158</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>160</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>164</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_113"> <Value> <Obj> <type>2</type> <id>166</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>170</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <const_type>0</const_type> <content>256</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>188</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>256</content> </item> <item class_id_reference="16" object_id="_116"> <Value> <Obj> <type>2</type> <id>231</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <const_type>0</const_type> <content>511</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>233</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>9</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>239</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>2047</content> </item> <item class_id_reference="16" object_id="_119"> <Value> <Obj> <type>2</type> <id>241</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>253</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578939872</coreId> </Obj> <bitwidth>20</bitwidth> </Value> <const_type>0</const_type> <content>2048</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>261</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_122"> <Value> <Obj> <type>2</type> <id>264</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578943520</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>8191</content> </item> <item class_id_reference="16" object_id="_123"> <Value> <Obj> <type>2</type> <id>266</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>105</coreId> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_124"> <Value> <Obj> <type>2</type> <id>274</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_125"> <Value> <Obj> <type>2</type> <id>285</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>28263</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>4095</content> </item> <item class_id_reference="16" object_id="_126"> <Value> <Obj> <type>2</type> <id>287</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578951049</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_127"> <Value> <Obj> <type>2</type> <id>295</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>113</coreId> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_128"> <Value> <Obj> <type>2</type> <id>321</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>30</bitwidth> </Value> <const_type>0</const_type> <content>2048</content> </item> <item class_id_reference="16" object_id="_129"> <Value> <Obj> <type>2</type> <id>326</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578919776</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>29</content> </item> <item class_id_reference="16" object_id="_130"> <Value> <Obj> <type>2</type> <id>331</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578920360</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_131"> <Value> <Obj> <type>2</type> <id>333</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>19</content> </item> <item class_id_reference="16" object_id="_132"> <Value> <Obj> <type>2</type> <id>336</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578921520</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>180</content> </item> <item class_id_reference="16" object_id="_133"> <Value> <Obj> <type>2</type> <id>338</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</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="_134"> <Obj> <type>3</type> <id>23</id> <name>entry</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> </node_objs> </item> <item class_id_reference="18" object_id="_135"> <Obj> <type>3</type> <id>28</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> </node_objs> </item> <item class_id_reference="18" object_id="_136"> <Obj> <type>3</type> <id>125</id> <name>._crit_edge.loopexit.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>92</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> </node_objs> </item> <item class_id_reference="18" object_id="_137"> <Obj> <type>3</type> <id>127</id> <name>.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>126</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>185</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_138"> <id>130</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>132</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>133</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>134</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>135</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>136</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>137</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>139</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>140</id> <edge_type>2</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="_147"> <id>141</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>24</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>142</id> <edge_type>2</edge_type> <source_obj>125</source_obj> <sink_obj>24</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>143</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>145</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>146</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>147</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>148</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>149</id> <edge_type>2</edge_type> <source_obj>125</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>150</id> <edge_type>2</edge_type> <source_obj>127</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>153</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>154</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>157</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>159</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>161</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>163</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>165</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>167</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>168</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>169</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>171</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>172</id> <edge_type>1</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="_168"> <id>173</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>174</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>175</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>176</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>177</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>178</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>179</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>180</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="_176"> <id>181</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>182</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>183</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>184</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>185</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>186</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>187</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>189</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>190</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>191</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>192</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>193</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>194</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>195</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>196</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>197</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="_192"> <id>198</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>199</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>200</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>201</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>202</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>203</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>204</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>205</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>206</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>207</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>208</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>209</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>210</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>211</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>212</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>213</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>214</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>215</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="_210"> <id>216</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>217</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>218</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>219</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>220</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>221</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>222</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>223</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>224</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="_219"> <id>225</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>226</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>227</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>228</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>229</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>230</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>232</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>234</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>235</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>236</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>237</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="_230"> <id>238</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>240</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>242</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>243</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>244</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>245</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>246</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>247</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>248</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>249</id> <edge_type>1</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="_240"> <id>250</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>251</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>252</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>254</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>255</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>256</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>257</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>258</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>259</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>260</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>262</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>263</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>265</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>267</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>268</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>269</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>270</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>273</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>275</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>276</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>277</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</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>90</source_obj> <sink_obj>93</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>93</source_obj> <sink_obj>94</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>76</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>281</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="_265"> <id>282</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>283</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>284</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</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>285</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>288</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>289</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>290</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>291</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>294</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>296</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>297</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>298</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>299</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>300</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>301</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>302</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>303</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>304</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>305</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>306</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>307</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="_286"> <id>308</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>309</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>310</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>311</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>312</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>313</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>314</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>315</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="_294"> <id>316</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="_295"> <id>317</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>318</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>319</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="_298"> <id>320</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="_299"> <id>322</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>325</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>327</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>330</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>332</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>334</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>335</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>337</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>339</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>340</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>341</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>344</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>345</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>346</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>349</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>350</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="_315"> <id>351</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>354</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>355</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="_318"> <id>356</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>494</id> <edge_type>2</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="_320"> <id>495</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>496</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>497</id> <edge_type>2</edge_type> <source_obj>125</source_obj> <sink_obj>28</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_323"> <mId>1</mId> <mTag>bgr2hsv&lt;9, 2160, 3840, 1&gt;</mTag> <mNormTag>bgr2hsv_9_2160_3840_1_s</mNormTag> <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>3</mMinLatency> <mMaxLatency>8294412</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_324"> <mId>2</mId> <mTag>Entry</mTag> <mNormTag>Entry</mNormTag> <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>1</mMinLatency> <mMaxLatency>1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_325"> <mId>3</mId> <mTag>VITIS_LOOP_128_1_VITIS_LOOP_132_2</mTag> <mNormTag>VITIS_LOOP_128_1_VITIS_LOOP_132_2</mNormTag> <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>28</item> <item>125</item> </basic_blocks> <mII>1</mII> <mDepth>11</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>8294400</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>8294409</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_326"> <mId>4</mId> <mTag>Return</mTag> <mNormTag>Return</mNormTag> <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>127</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>103</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>17</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>38</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>41</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>43</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>44</first> <second> <first>6</first> <second>0</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>47</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>6</first> <second>1</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>4</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>60</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>68</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>7</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>7</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>80</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>8</first> <second>2</second> </second> </item> <item> <first>83</first> <second> <first>10</first> <second>1</second> </second> </item> <item> <first>84</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>113</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>9</first> <second>2</second> </second> </item> <item> <first>116</first> <second> <first>11</first> <second>1</second> </second> </item> <item> <first>117</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>13</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>23</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>125</first> <second> <first>3</first> <second>12</second> </second> </item> <item> <first>127</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_327"> <region_name>VITIS_LOOP_128_1_VITIS_LOOP_132_2</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>28</item> <item>125</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>11</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with gel.Dolly.simple, gel.Dolly.following, gel.Camera.forge, gel.Joint, gel.Events, openGL.Palette, openGL.Renderer.lean.forge, lace.Any, lace.Event.utility, ada.unchecked_Conversion, ada.unchecked_Deallocation, ada.Text_IO; use ada.Text_IO; package body gel.Applet is use lace.Event.utility, ada.Text_IO; procedure my_context_Setter is begin global_Window.enable_GL; end my_context_Setter; procedure my_Swapper is begin global_Window.swap_GL; end my_Swapper; overriding procedure respond (Self : in out add_new_Sprite; to_Event : in lace.Event.item'Class) is the_Event : constant gel.events.new_sprite_added_to_world_Event := gel.events.new_sprite_added_to_world_Event (to_Event); the_Sprite : gel.Sprite.view; begin the_Sprite := Self.Applet.World (the_Event.World_Id).fetch_Sprite (the_event.Sprite_Id); the_Sprite.is_Visible (True); Self.Applet.add (the_Sprite); exception when constraint_Error => put_Line ("Exception in 'add_new_Sprite' response."); end respond; overriding function Name (Self : in add_new_Sprite) return String is pragma unreferenced (Self); begin return "add_new_Sprite"; end Name; procedure define (Self : in View; use_Window : in gel.Window.view) is begin Self.Window := use_Window; global_Window := use_Window; -- Add window resize event repsonse. -- Self.local_Subject_and_Observer.add (Self.resize_Response'unchecked_Access, to_Kind (gel.events.window_resize_Request'Tag), use_Window.Name); Self.Window.register (lace.Observer.view (Self.local_Subject_and_Observer), to_Kind (gel.events.window_resize_Request'Tag)); Self.resize_Response.Applet := Self; -- Setup the renderer. -- Self.Renderer := openGL.Renderer.lean.forge.new_Renderer; Self.Renderer.Background_is (openGL.Palette.Grey); Self.Renderer.Swapper_is (my_Swapper'unrestricted_Access); Self.Window.disable_GL; Self.Renderer.Context_Setter_is (my_context_Setter'unrestricted_Access); Self.Renderer.start_Engine; Self.Renderer.add_Font (Self. Font); Self.Renderer.add_Font (Self.titles_Font); -- Set up the keyboard events. -- Self.Keyboard := Self.Window.Keyboard; Self.Mouse := Self.Window.Mouse; Self.button_press_Response .Applet := Self; Self.button_release_Response.Applet := Self; Self.mouse_motion_Response .Applet := Self; -- Add the new sprite event response. -- the_add_new_sprite_Response.Applet := Self; end define; overriding procedure destroy (Self : in out Item) is use world_Vectors, gel.Dolly, openGL.Renderer.lean, gel.Window, gel.World; procedure free is new ada.unchecked_Deallocation (world_Info, world_Info_view); Cursor : world_Vectors.Cursor := Self.Worlds.First; world_Info : world_Info_view; the_World : gel.World.view; begin while has_Element (Cursor) loop world_Info := Element (Cursor); -- Free the world. -- the_World := world_Info.World; the_World.destroy; free (the_World); -- Free the cameras. -- declare use gel.Camera; the_Cameras : camera_Vector renames world_Info.Cameras; the_Camera : gel.Camera.view; begin for i in 1 .. Integer (the_Cameras.Length) loop the_Camera := the_Cameras.Element (i); free (the_Camera); end loop; end; free (world_Info); next (Cursor); end loop; free (Self.Dolly); free (Self.Renderer); free (Self.Window); Self.local_Subject_and_Observer.destroy; lace.Subject_and_deferred_Observer.item (Self).destroy; -- Destroy base class. end destroy; procedure free (Self : in out View) is procedure deallocate is new ada.unchecked_Deallocation (Applet.item'Class, Applet.view); begin Self.destroy; deallocate (Self); end free; --------- --- Forge -- package body Forge is function to_Applet (Name : in String; use_Window : in gel.Window.view) return Item is use lace.Subject_and_deferred_Observer.Forge; begin return Self : Item := (to_Subject_and_Observer (Name) with local_Subject_and_Observer => new_Subject_and_Observer (Name), others => <>) do define (Self'unchecked_Access, use_Window); end return; end to_Applet; function new_Applet (Name : in String; use_Window : in gel.Window.view) return View is begin return new Item' (to_Applet (Name, use_Window)); end new_Applet; end Forge; -------------- --- Attributes -- procedure add (Self : in out Item; the_World : in world_Info_view) is begin Self.Worlds.append (the_World); end add; function new_World (Self : access Item; Name : in String; space_Kind : in physics.space_Kind) return gel.World.view is begin Self.add_new_World (Name, space_Kind); return Self.Worlds.last_Element.World; end new_World; procedure add_new_World (Self : in out Item; Name : in String; space_Kind : in physics.space_Kind) is use type ada.Containers.Count_type; the_world_Info : constant world_Info_view := new world_Info; the_Camera : constant gel.Camera.view := gel.Camera.forge.new_Camera; begin the_world_Info.World := gel.World.forge.new_World (Name, world_Id (Self.Worlds.Length + 1), space_Kind, Self.Renderer); the_Camera.set_viewport_Size (Self.Window.Width, Self.Window.Height); the_Camera.Renderer_is (Self.Renderer); the_Camera.Site_is ((0.0, 5.0, 50.0)); the_world_Info.Cameras.append (the_Camera); Self.Worlds.append (the_world_Info); Self.local_Subject_and_Observer.add (the_add_new_sprite_Response'Access, to_Kind (gel.Events.new_sprite_added_to_world_Event'Tag), the_world_Info.World.Name); the_world_Info.World.start; Self.add (the_world_Info); end add_new_World; function is_Open (Self : in Item) return Boolean is begin return Self.Window.is_Open and not Self.quit_Requested; end is_Open; function Window (Self : in Item) return gel.Window.view is begin return Self.Window; end Window; function world_Count (Self : in Item) return Natural is begin return Natural (Self.Worlds.Length); end world_Count; function Worlds (Self : in Item) return gel.World.views is the_Worlds : gel.World.views (1 .. Natural (Self.Worlds.Length)); begin for i in the_Worlds'Range loop the_Worlds (i) := Self.Worlds.Element (i).World; end loop; return the_Worlds; end Worlds; function World (Self : in Item; Id : in world_Id := 1) return gel.World.view is begin return Self.Worlds.Element (Integer (Id)).World; end World; function World_as_iFace (Self : in Item; Id : in world_Id := 1) return gel.remote.World.view is begin return remote.World.view (Self.Worlds.Element (Integer (Id)).World); end World_as_iFace; function Camera (Self : in Item; world_Id : in gel.world_Id := 1; camera_Id : in gel.camera_Id := 1) return gel.Camera.view is w : Integer := Integer (world_Id); c : Integer := Integer (world_Id); begin return Self.Worlds.Element (w).Cameras.Element (c); end Camera; function Font (Self : in Item) return opengl.Font.font_Id is begin return Self.Font; end Font; function titles_Font (Self : in Item) return opengl.Font.font_Id is begin return Self.titles_Font; end titles_Font; function Renderer (Self : in Item) return openGL.Renderer.lean.view is begin return Self.Renderer; end Renderer; function Keyboard (Self : in Item) return access gel.Keyboard.item'Class is begin return Self.Keyboard; end Keyboard; function Mouse (Self : in Item) return access gel.Mouse.item'Class is begin return Self.Mouse; end Mouse; function Dolly (Self : access Item) return gel.Dolly.view is begin return Self.Dolly; end Dolly; function last_Keypress (Self : access Item) return gel.Keyboard.Key is the_last_Keypress : constant gel.Keyboard.Key := Self.last_pressed_Key; begin Self.last_pressed_Key := gel.Keyboard.Nil; return the_last_Keypress; end last_Keypress; -------------- --- Operations -- procedure evolve_all_Worlds (Self : in out Item; By : in Duration) is use world_Vectors; world_Cursor : world_Vectors.Cursor := Self.Worlds.First; begin while has_Element (world_Cursor) loop declare the_world_Info : world_Info renames Element (world_Cursor).all; begin the_world_Info.World.evolve (By); end; next (world_Cursor); end loop; end evolve_all_Worlds; procedure freshen (Self : in out Item) is use type gel.Dolly.view; Window_is_active : Boolean; begin Self.Window.emit_Events; Self.Window.swap_GL; Self .respond; Self.local_Subject_and_Observer.respond; Self.Window .respond; if Self.Dolly /= null then Self.Dolly.freshen; end if; Window_is_active := Self.Window.is_Open and then Self.Window.is_Exposed and then not Self.Window.is_being_Resized; declare use world_Vectors; world_Cursor : world_Vectors.Cursor := Self.Worlds.First; all_Cameras : gel.Camera.views (1 .. 1000); all_cameras_Last : Natural := 0; begin while has_Element (world_Cursor) loop declare use camera_Vectors; the_world_Info : world_Info renames Element (world_Cursor).all; camera_Cursor : camera_Vectors.Cursor := the_world_Info.Cameras.First; begin -- the_world_Info.World.wait_on_evolve; the_world_Info.World.evolve (By => 1.0/60.0); if Window_is_active then while has_Element (camera_Cursor) loop all_cameras_Last := all_cameras_Last + 1; all_Cameras (all_cameras_Last) := Element (camera_Cursor); Element (camera_Cursor).render (the_world_Info.World, To => Self.Window.Surface); next (camera_Cursor); end loop; end if; end; next (world_Cursor); end loop; loop declare culls_Completed : Boolean := True; begin for i in 1 .. all_cameras_Last loop culls_Completed := culls_Completed and all_Cameras (i).cull_Completed; end loop; exit when culls_Completed; delay Duration'Small; end; end loop; end; Self.Renderer.render; end freshen; procedure add (Self : in out Item; the_Sprite : in gel.Sprite.view) is child_Joints : constant gel.Joint.views := the_Sprite.child_Joints; begin -- Add children and their joints. -- for i in child_Joints'Range loop Self .add (the_Sprite.child_Joints (i).Sprite_B); Self.World (1).add (the_Sprite.child_Joints (i)); end loop; end add; procedure add (Self : in out Item; the_Sprite : in gel.Sprite.view; at_site : in Vector_3) is begin the_Sprite.Site_is (at_site); Self.add (the_Sprite); end add; procedure take_Screenshot (Self : in out Item; Filename : in String) is begin Self.Renderer.Screenshot (Filename); end take_Screenshot; procedure request_Quit (Self : in out Item) is begin Self.quit_Requested := True; end request_Quit; procedure toggle_video_Capture (Self : in out Item'Class) is begin raise Error with "TODO"; end toggle_video_Capture; ---------------------- -- Keyboard Responses -- overriding procedure respond (Self : in out key_press_Response; to_Event : in lace.Event.item'Class) is use gel.Keyboard, gel.Dolly; the_Event : gel.Keyboard.key_press_Event renames gel.Keyboard.key_press_Event (to_Event); the_Dolly : constant gel.Dolly.view := Self.Applet.Dolly; the_Key : constant gel.keyboard.Key := the_Event.modified_Key.Key; the_Modifiers : constant gel.Keyboard.modifier_Set := the_Event.modified_Key.modifier_Set; begin Self.Applet.last_pressed_Key := the_Event.modified_Key.Key; if the_Key = ESCAPE then Self.Applet.quit_Requested := True; end if; if the_Dolly /= null then if the_Modifiers (lShift) then the_Dolly.speed_Multiplier_is (6.0); else the_Dolly.speed_Multiplier_is (1.0); end if; if the_Modifiers (lCtrl) then if the_Key = up then the_Dolly.is_spinning (Forward); elsif the_Key = down then the_Dolly.is_spinning (Backward); elsif the_Key = left then the_Dolly.is_spinning (Left); elsif the_Key = right then the_Dolly.is_spinning (Right); elsif the_Key = pageUp then the_Dolly.is_spinning (Up); elsif the_Key = pageDown then the_Dolly.is_spinning (Down); end if; elsif the_Modifiers (lAlt) then if the_Key = up then the_Dolly.is_orbiting (Forward); elsif the_Key = down then the_Dolly.is_orbiting (Backward); elsif the_Key = left then the_Dolly.is_orbiting (Left); elsif the_Key = right then the_Dolly.is_orbiting (Right); elsif the_Key = pageUp then the_Dolly.is_orbiting (Up); elsif the_Key = pageDown then the_Dolly.is_orbiting (Down); end if; else if the_Key = up then the_Dolly.is_moving (Forward); elsif the_Key = down then the_Dolly.is_moving (Backward); elsif the_Key = left then the_Dolly.is_moving (Left); elsif the_Key = right then the_Dolly.is_moving (Right); elsif the_Key = pageUp then the_Dolly.is_moving (Up); elsif the_Key = pageDown then the_Dolly.is_moving (Down); elsif the_Key = F11 then Self.Applet.take_Screenshot ("./screenshot.bmp"); elsif the_Key = F12 then Self.Applet.toggle_video_Capture; end if; end if; end if; if the_Modifiers (lCtrl) then null; elsif the_Modifiers (lAlt) then null; else if the_Key = F11 then Self.Applet.take_Screenshot ("./screenshot.bmp"); elsif the_Key = F12 then Self.Applet.toggle_video_Capture; end if; end if; end respond; overriding procedure respond (Self : in out key_release_Response; to_Event : in lace.Event.Item'Class) is use gel.Keyboard, gel.Dolly; the_Event : gel.Keyboard.key_release_Event renames gel.Keyboard.key_release_Event (to_Event); the_Dolly : gel.Dolly.view renames Self.Applet.Dolly; the_Key : constant gel.keyboard.Key := the_Event.modified_Key.Key; the_Modifiers : constant gel.Keyboard.modifier_Set := the_Event.modified_Key.modifier_Set; begin if the_Dolly = null then return; end if; if the_Key = up then the_Dolly.is_moving (Forward, False); the_Dolly.is_spinning (Forward, False); the_Dolly.is_orbiting (Forward, False); elsif the_Key = down then the_Dolly.is_moving (Backward, False); the_Dolly.is_spinning (Backward, False); the_Dolly.is_orbiting (Backward, False); elsif the_Key = left then the_Dolly.is_moving (Left, False); the_Dolly.is_spinning (Left, False); the_Dolly.is_orbiting (Left, False); elsif the_Key = right then the_Dolly.is_moving (Right, False); the_Dolly.is_spinning (Right, False); the_Dolly.is_orbiting (Right, False); elsif the_Key = pageUp then the_Dolly.is_moving (Up, False); the_Dolly.is_spinning (Up, False); the_Dolly.is_orbiting (Up, False); elsif the_Key = pageDown then the_Dolly.is_moving (Down, False); the_Dolly.is_spinning (Down, False); the_Dolly.is_orbiting (Down, False); end if; end respond; procedure Dolly_is (Self : access Item; Now : in gel.Dolly.view) is begin Self.Dolly := Now; end Dolly_is; procedure enable_simple_Dolly (Self : access Item; in_World : in world_Id) is begin Self.Dolly := new gel.Dolly.simple.item; Self.Dolly.add_Camera (Self.Camera (in_World, 1)); Self.key_press_Response .Applet := gel.Applet.view (Self); Self.key_release_Response.Applet := gel.Applet.view (Self); lace.Event.utility.connect (lace.Observer.view (Self.local_Subject_and_Observer), lace.Subject .view (Self.Keyboard), Self.key_press_Response'unchecked_Access, to_Kind (gel.Keyboard.key_press_Event'Tag)); lace.Event.utility.connect (lace.Observer.view (Self.local_Subject_and_Observer), lace.Subject .view (Self.Keyboard), Self.key_release_Response'unchecked_Access, to_Kind (gel.Keyboard.key_release_Event'Tag)); end enable_simple_Dolly; procedure enable_following_Dolly (Self : access Item; Follow : in gel.Sprite.view) is the_Dolly : constant gel.Dolly.following.view := new gel.Dolly.following.item; begin the_Dolly.follow (the_Sprite => Follow); Self.Dolly := the_Dolly.all'Access; Self.Dolly.add_Camera (Self.Camera (1, 1)); end enable_following_Dolly; -------------------------- --- Mouse Button Responses -- type button_press_raycast_Context is new lace.Any.limited_item with record is_Motion : Boolean; is_Press : Boolean; button_Id : gel.mouse.Button_Id; end record; type button_press_raycast_Context_view is access all button_press_raycast_Context'Class; overriding procedure respond (Self : in out mouse_click_raycast_Response; to_Event : in lace.Event.item'Class) is use gel.World; the_Event : raycast_collision_Event := raycast_collision_Event (to_Event); the_Context : constant button_press_raycast_Context_view := button_press_raycast_Context_view (the_Event.Context); begin if the_Context.is_Motion then null; else if the_Context.is_Press then declare collide_Event : constant gel.events.sprite_click_down_Event := (mouse_Button => the_Context.button_Id, world_Site => the_Event.Site_world); begin the_Event.near_Sprite.receive (collide_Event, Self.Applet.Name); end; else -- Is a button release. declare collide_Event : constant gel.events.sprite_click_up_Event := (mouse_Button => the_Context.button_Id, world_Site => the_Event.Site_world); begin the_Event.near_Sprite.receive (collide_Event, Self.Applet.Name); end; end if; end if; the_Event.destruct; end respond; type mouse_button_collision_Event is new gel.World.raycast_collision_Event with null record; overriding procedure respond (Self : in out button_press_Response; to_Event : in lace.Event.item'Class) is use world_Vectors, gel.Mouse; the_Event : gel.mouse.button_press_Event renames gel.Mouse.button_press_Event (to_Event); Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First; the_world_Info : world_Info_view; begin while has_Element (Cursor) loop the_world_Info := Element (Cursor); declare use gel.World; the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element; Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0); Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space); the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context; event_Kind : mouse_button_collision_Event; begin the_Context.is_Motion := False; the_Context.is_Press := True; the_Context.button_Id := the_Event.Button; the_world_Info.World.cast_Ray (From => the_Camera.Site, To => Site_world_space, Observer => lace.Observer.view (Self.Applet.local_Subject_and_Observer), Context => the_Context, event_Kind => event_Kind); end; next (Cursor); end loop; end respond; overriding procedure respond (Self : in out button_release_Response; to_Event : in lace.Event.item'Class) is use world_Vectors, gel.Mouse; the_Event : gel.Mouse.button_release_Event renames gel.Mouse.button_release_Event (to_Event); Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First; the_world_Info : world_Info_view; begin while has_Element (Cursor) loop the_world_Info := Element (Cursor); declare the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element; Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0); Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space); the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context; event_Kind : mouse_button_collision_Event; begin the_Context.is_Motion := False; the_Context.is_Press := False; the_Context.button_Id := the_Event.Button; the_world_Info.World.cast_Ray (From => the_Camera.Site, To => Site_world_space, Observer => lace.Observer.view (Self.Applet.local_Subject_and_Observer), Context => the_Context, event_Kind => event_Kind); end; next (Cursor); end loop; end respond; overriding procedure respond (Self : in out mouse_motion_Response; to_Event : in lace.Event.Item'Class) is use world_Vectors; the_Event : gel.mouse.motion_Event renames gel.mouse.motion_Event (to_Event); Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First; the_world_Info : world_Info_view; begin while has_Element (Cursor) loop the_world_Info := Element (Cursor); declare the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element; Site_window_space : constant Vector_3 := (Real (the_Event.Site (1)), Real (the_Event.Site (2)), 1.0); Site_world_space : constant Vector_3 := the_Camera.to_world_Site (Site_window_space); the_Context : constant access button_press_raycast_Context := new button_press_raycast_Context; begin the_Context.is_Motion := True; end; next (Cursor); end loop; end respond; -------------------------- --- Window Resize Response -- overriding procedure respond (Self : in out resize_event_Response; to_Event : in lace.Event.item'Class) is pragma unreferenced (to_Event); use world_Vectors; Cursor : world_Vectors.Cursor := Self.Applet.Worlds.First; the_world_Info : world_Info_view; begin while has_Element (Cursor) loop the_world_Info := Element (Cursor); declare the_Camera : constant gel.Camera.view := the_world_Info.Cameras.first_Element; begin the_Camera.set_viewport_Size (Self.Applet.Window.Width, Self.Applet.Window.Height); end; next (Cursor); end loop; end respond; --------- --- Mouse -- procedure enable_Mouse (Self : access Item; detect_Motion : in Boolean) is begin Self.local_Subject_and_Observer.add (Self.button_press_Response'unchecked_Access, to_Kind (gel.Mouse.button_press_Event'Tag), Self.Mouse.Name); Self.local_Subject_and_Observer.add (Self.button_release_Response'unchecked_Access, to_Kind (gel.Mouse.button_release_Event'Tag), Self.Mouse.Name); Self.Mouse.register (lace.Observer.view (Self.local_Subject_and_Observer), to_Kind (gel.Mouse.button_press_Event 'Tag)); Self.Mouse.register (lace.Observer.view (Self.local_Subject_and_Observer), to_Kind (gel.Mouse.button_release_Event'Tag)); if detect_Motion then lace.Event.Utility.connect (lace.Observer.view (Self.local_Subject_and_Observer), lace.Subject.view (Self.Mouse), Self.mouse_motion_Response'unchecked_Access, to_Kind (gel.Mouse.motion_Event'Tag)); end if; Self.mouse_click_raycast_Response.Applet := Self.all'unchecked_Access; declare use world_Vectors; Cursor : world_Vectors.Cursor := Self.Worlds.First; the_world_Info : world_Info_view; begin while has_Element (Cursor) loop the_world_Info := Element (Cursor); Self.local_Subject_and_Observer.add (the_Response => Self.mouse_click_raycast_Response'unchecked_Access, to_Kind => lace.event.Utility.to_Kind (mouse_button_collision_Event'Tag), from_Subject => the_world_Info.World.Name); next (Cursor); end loop; end; end enable_Mouse; ---------------- --- Local Events -- function local_Subject_and_Observer (Self : access Item) return lace.Subject_and_deferred_Observer.view is begin return Self.local_Subject_and_Observer; end local_Subject_and_Observer; function local_Subject (Self : access Item) return lace.Subject.view is begin return lace.Subject.view (Self.local_Subject_and_Observer); end local_Subject; function local_Observer (Self : access Item) return lace.Observer.view is begin return lace.Observer.view (Self.local_Subject_and_Observer); end local_Observer; end gel.Applet;
-- CC1311B.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT IF PARAMETERS OF DEFAULT AND FORMAL SUBPROGRAMS HAVE -- THE SAME TYPE BUT NOT THE SAME SUBTYPE, THE PARAMETER SUBTYPES OF -- THE SUBPROGRAM DENOTED BY THE DEFAULT ARE USED INSTEAD OF -- SUBTYPES SPECIFIED IN THE FORMAL SUBPROGRAM DECLARATION. -- HISTORY: -- RJW 06/11/86 CREATED ORIGINAL TEST. -- DHH 10/20/86 CORRECTED RANGE ERRORS. -- PWN 01/31/95 REMOVED INCONSISTENCIES WITH ADA 9X. -- PWN 10/27/95 REMOVED CHECKS AGAINST ARRAY SLIDING RULES THAT -- HAVE BEEN RELAXED. -- PWN 10/25/96 RESTORED CHECKS WITH NEW ADA 95 EXPECTED RESULTS. WITH REPORT; USE REPORT; PROCEDURE CC1311B IS BEGIN TEST ("CC1311B", "CHECK THAT IF PARAMETERS OF DEFAULT AND " & "FORMAL SUBPROGRAMS HAVE THE SAME TYPE BUT " & "NOT THE SAME SUBTYPE, THE PARAMETER SUBTYPES " & "OF THE SUBPROGRAM DENOTED BY THE DEFAULT ARE " & "USED INSTEAD OF SUBTYPES SPECIFIED IN THE " & "FORMAL SUBPROGRAM DECLARATION" ); DECLARE TYPE NUMBERS IS (ZERO, ONE ,TWO); SUBTYPE ZERO_TWO IS NUMBERS; SUBTYPE ZERO_ONE IS NUMBERS RANGE ZERO .. ONE; FUNCTION FSUB (X : ZERO_ONE) RETURN ZERO_ONE IS BEGIN RETURN NUMBERS'VAL (IDENT_INT (NUMBERS'POS (ONE))); END FSUB; GENERIC WITH FUNCTION F (X : ZERO_TWO := TWO) RETURN ZERO_TWO IS FSUB; FUNCTION FUNC RETURN ZERO_TWO; FUNCTION FUNC RETURN ZERO_TWO IS BEGIN RETURN F; EXCEPTION WHEN CONSTRAINT_ERROR => RETURN ZERO; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "NFUNC1" ); RETURN ZERO; END FUNC; FUNCTION NFUNC1 IS NEW FUNC; BEGIN IF NFUNC1 = ONE THEN FAILED ( "NO EXCEPTION RAISED WITH NFUNC1" ); END IF; END; DECLARE TYPE GENDER IS (MALE, FEMALE); TYPE PERSON (SEX : GENDER) IS RECORD CASE SEX IS WHEN MALE => BEARDED : BOOLEAN; WHEN FEMALE => CHILDREN : INTEGER; END CASE; END RECORD; SUBTYPE MAN IS PERSON (SEX => MALE); SUBTYPE TESTWRITER IS PERSON (FEMALE); ROSA : TESTWRITER := (FEMALE, 4); FUNCTION F (X : MAN) RETURN PERSON IS TOM : PERSON (MALE) := (MALE, FALSE); BEGIN IF EQUAL (3, 3) THEN RETURN X; ELSE RETURN TOM; END IF; END F; GENERIC TYPE T IS PRIVATE; X1 : T; WITH FUNCTION F (X : T) RETURN T IS <> ; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF F(X1) = X1 THEN FAILED ( "NO EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PACKAGE " & "'PKG' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PACKAGE " & "'PKG' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PACKAGE 'PKG'" ); END PKG; PACKAGE NPKG IS NEW PKG (TESTWRITER, ROSA); BEGIN COMMENT ( "PACKAGE BODY ELABORATED - 1" ); END; DECLARE TYPE VECTOR IS ARRAY (POSITIVE RANGE <>) OF INTEGER; SUBTYPE SUBV1 IS VECTOR (1 .. 5); SUBTYPE SUBV2 IS VECTOR (2 .. 6); V1 : SUBV1 := (1, 2, 3, 4, 5); FUNCTION FSUB (Y : SUBV2) RETURN VECTOR IS Z : SUBV2; BEGIN FOR I IN Y'RANGE LOOP Z (I) := IDENT_INT (Y (I)); END LOOP; RETURN Z; END; GENERIC WITH FUNCTION F (X : SUBV1 := V1) RETURN SUBV1 IS FSUB; PROCEDURE PROC; PROCEDURE PROC IS BEGIN IF F = V1 THEN COMMENT ( "NO EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PROCEDURE " & "'PROC' - 1" ); ELSE COMMENT ( "NO EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PROCEDURE " & "'PROC' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ( "CONSTRAINT_ERROR RAISED WITH " & "FUNCTION 'F' AND PROCEDURE " & "'PROC'" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "FUNCTION 'F' AND PROCEDURE " & "'PROC'" ); END PROC; PROCEDURE NPROC IS NEW PROC; BEGIN NPROC; END; DECLARE TYPE ACC IS ACCESS STRING; SUBTYPE INDEX1 IS INTEGER RANGE 1 .. 5; SUBTYPE INDEX2 IS INTEGER RANGE 2 .. 6; SUBTYPE ACC1 IS ACC (INDEX1); SUBTYPE ACC2 IS ACC (INDEX2); AC2 : ACC2 := NEW STRING'(2 .. 6 => 'A'); AC : ACC; PROCEDURE P (RESULTS : OUT ACC1; X : ACC1) IS BEGIN RESULTS := NULL; END P; GENERIC WITH PROCEDURE P1 (RESULTS : OUT ACC2; X : ACC2 := AC2) IS P; FUNCTION FUNC RETURN ACC; FUNCTION FUNC RETURN ACC IS RESULTS : ACC; BEGIN P1 (RESULTS); RETURN RESULTS; EXCEPTION WHEN CONSTRAINT_ERROR => RETURN NEW STRING'("ABCDE"); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "NFUNC2" ); RETURN NULL; END FUNC; FUNCTION NFUNC2 IS NEW FUNC; BEGIN AC := NFUNC2; IF AC = NULL OR ELSE AC.ALL /= "ABCDE" THEN FAILED ( "NO OR WRONG EXCEPTION RAISED WITH NFUNC2" ); END IF; END; DECLARE SUBTYPE FLOAT1 IS FLOAT RANGE -1.0 .. 0.0; SUBTYPE FLOAT2 IS FLOAT RANGE 0.0 .. 1.0; PROCEDURE PSUB (RESULTS : OUT FLOAT2; X : FLOAT2) IS BEGIN IF EQUAL (3, 3) THEN RESULTS := X; ELSE RESULTS := 0.0; END IF; END PSUB; GENERIC WITH PROCEDURE P (RESULTS : OUT FLOAT1; X : FLOAT1 := -0.0625) IS PSUB; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS RESULTS : FLOAT1; BEGIN P (RESULTS); IF RESULTS = 1.0 THEN FAILED ( "NO EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PACKAGE " & "'PKG' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PACKAGE " & "'PKG' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PACKAGE 'PKG'" ); END PKG; PACKAGE NPKG IS NEW PKG; BEGIN COMMENT ( "PACKAGE BODY ELABORATED - 2" ); END; DECLARE TYPE FIXED IS DELTA 0.125 RANGE -1.0 .. 1.0; SUBTYPE FIXED1 IS FIXED RANGE -0.5 .. 0.0; SUBTYPE FIXED2 IS FIXED RANGE 0.0 .. 0.5; PROCEDURE P (RESULTS : OUT FIXED1; X : FIXED1) IS BEGIN IF EQUAL (3, 3) THEN RESULTS := X; ELSE RESULTS := X; END IF; END P; GENERIC TYPE F IS DELTA <>; F1 : F; WITH PROCEDURE P (RESULTS : OUT F; X : F) IS <> ; PROCEDURE PROC; PROCEDURE PROC IS RESULTS : F; BEGIN P (RESULTS, F1); IF RESULTS = 0.0 THEN FAILED ( "NO EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PROCEDURE " & "'PROC' - 1" ); ELSE FAILED ( "NO EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PROCEDURE " & "'PROC' - 2" ); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED WITH " & "PROCEDURE 'P' AND PROCEDURE " & "'PROC'" ); END PROC; PROCEDURE NPROC IS NEW PROC (FIXED2, 0.125); BEGIN NPROC; END; RESULT; END CC1311B;
----------------------------------------------------------------------- -- gen-model-list -- List bean interface for model objects -- Copyright (C) 2009, 2010, 2011, 2012, 2018, 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. ----------------------------------------------------------------------- package body Gen.Model.List is -- ------------------------------ -- Make an iterator for the list. -- ------------------------------ function Iterate (Container : in List_Definition) return List_Iterator.Forward_Iterator'Class is begin return Result : constant Iterator := (List => Container.Self); end Iterate; -- ------------------------------ -- Make an iterator for the list. -- ------------------------------ function Element_Value (Container : in List_Definition; Pos : in Cursor) return T_Access is pragma Unreferenced (Container); begin return Element (Pos); end Element_Value; overriding function First (Object : in Iterator) return Cursor is begin return Object.List.First; end First; overriding function Next (Object : in Iterator; Pos : in Cursor) return Cursor is pragma Unreferenced (Object); C : Cursor := Pos; begin Next (C); return C; end Next; -- ------------------------------ -- Compare the two definitions. -- ------------------------------ function "<" (Left, Right : in T_Access) return Boolean is Left_Name : constant String := Left.Get_Name; Right_Name : constant String := Right.Get_Name; begin return Left_Name < Right_Name; end "<"; -- ------------------------------ -- Get the first item of the list -- ------------------------------ function First (Def : List_Definition) return Cursor is begin return Def.Nodes.First; end First; -- ------------------------------ -- Get the number of elements in the list. -- ------------------------------ overriding function Get_Count (From : List_Definition) return Natural is Count : constant Natural := Natural (From.Nodes.Length); begin return Count; end Get_Count; -- ------------------------------ -- Set the current row index. Valid row indexes start at 1. -- ------------------------------ overriding procedure Set_Row_Index (From : in out List_Definition; Index : in Natural) is begin From.Row := Index; if Index > 0 then declare Current : constant T_Access := From.Nodes.Element (Index - 1); Bean : constant Util.Beans.Basic.Readonly_Bean_Access := Current.all'Access; begin Current.Set_Index (Index); From.Value_Bean := UBO.To_Object (Bean, UBO.STATIC); end; else From.Value_Bean := UBO.Null_Object; end if; end Set_Row_Index; -- ------------------------------ -- Get the element at the current row index. -- ------------------------------ overriding function Get_Row (From : List_Definition) return UBO.Object is begin return From.Value_Bean; end Get_Row; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : List_Definition; Name : String) return UBO.Object is begin if Name = "size" then return UBO.To_Object (From.Get_Count); else return UBO.Null_Object; end if; end Get_Value; -- ------------------------------ -- Append the item in the list -- ------------------------------ procedure Append (Def : in out List_Definition; Item : in T_Access) is begin Def.Nodes.Append (Item); end Append; -- ------------------------------ -- Sort the list of items on their names. -- ------------------------------ procedure Sort (List : in out List_Definition) is begin Sorting.Sort (List.Nodes); end Sort; procedure Sort_On (List : in out List_Definition) is package Sorting is new Vectors.Generic_Sorting; begin Sorting.Sort (List.Nodes); end Sort_On; -- ------------------------------ -- Find a definition given the name. -- Returns the definition object or null. -- ------------------------------ function Find (Def : in List_Definition; Name : in String) return T_Access is Iter : Vectors.Cursor := Def.Nodes.First; begin while Vectors.Has_Element (Iter) loop if Vectors.Element (Iter).Get_Name = Name then return Vectors.Element (Iter); end if; Vectors.Next (Iter); end loop; return null; end Find; -- ------------------------------ -- Iterate over the elements of the list executing the <tt>Process</tt> procedure. -- ------------------------------ procedure Iterate (Def : in List_Definition; Process : not null access procedure (Item : in T_Access)) is Iter : Vectors.Cursor := Def.Nodes.First; begin while Vectors.Has_Element (Iter) loop Process (Vectors.Element (Iter)); Vectors.Next (Iter); end loop; end Iterate; end Gen.Model.List;
----------------------------------------------------------------------- -- AWA.Comments.Models -- AWA.Comments.Models ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-spec.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095 ----------------------------------------------------------------------- -- Copyright (C) 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- pragma Warnings (Off); with ADO.Sessions; with ADO.Objects; with ADO.Statements; with ADO.SQL; with ADO.Schemas; with ADO.Queries; with ADO.Queries.Loaders; with Ada.Calendar; with Ada.Containers.Vectors; with Ada.Strings.Unbounded; with Util.Beans.Objects; with Util.Beans.Objects.Enums; with Util.Beans.Basic.Lists; with ADO.Audits; with AWA.Users.Models; with Util.Beans.Methods; pragma Warnings (On); package AWA.Comments.Models is pragma Style_Checks ("-mr"); -- -------------------- -- The format type defines the message format type. -- -------------------- type Format_Type is (FORMAT_TEXT, FORMAT_WIKI, FORMAT_HTML); for Format_Type use (FORMAT_TEXT => 0, FORMAT_WIKI => 1, FORMAT_HTML => 2); package Format_Type_Objects is new Util.Beans.Objects.Enums (Format_Type); type Nullable_Format_Type is record Is_Null : Boolean := True; Value : Format_Type; end record; -- -------------------- -- The status type defines whether the comment is visible or not. -- The comment can be put in the COMMENT_WAITING state so that -- it is not immediately visible. It must be put in the COMMENT_PUBLISHED -- state to be visible. -- -------------------- type Status_Type is (COMMENT_PUBLISHED, COMMENT_WAITING, COMMENT_SPAM, COMMENT_BLOCKED, COMMENT_ARCHIVED); for Status_Type use (COMMENT_PUBLISHED => 0, COMMENT_WAITING => 1, COMMENT_SPAM => 2, COMMENT_BLOCKED => 3, COMMENT_ARCHIVED => 4); package Status_Type_Objects is new Util.Beans.Objects.Enums (Status_Type); type Nullable_Status_Type is record Is_Null : Boolean := True; Value : Status_Type; end record; type Comment_Ref is new ADO.Objects.Object_Ref with null record; -- -------------------- -- The Comment table records a user comment associated with a database entity. -- The comment can be associated with any other database record. -- -------------------- -- Create an object key for Comment. function Comment_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Comment from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Comment_Key (Id : in String) return ADO.Objects.Object_Key; Null_Comment : constant Comment_Ref; function "=" (Left, Right : Comment_Ref'Class) return Boolean; -- Set the comment publication date procedure Set_Create_Date (Object : in out Comment_Ref; Value : in Ada.Calendar.Time); -- Get the comment publication date function Get_Create_Date (Object : in Comment_Ref) return Ada.Calendar.Time; -- Set the comment message. procedure Set_Message (Object : in out Comment_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Message (Object : in out Comment_Ref; Value : in String); -- Get the comment message. function Get_Message (Object : in Comment_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Message (Object : in Comment_Ref) return String; -- Set the entity identifier to which this comment is associated procedure Set_Entity_Id (Object : in out Comment_Ref; Value : in ADO.Identifier); -- Get the entity identifier to which this comment is associated function Get_Entity_Id (Object : in Comment_Ref) return ADO.Identifier; -- Set the comment identifier procedure Set_Id (Object : in out Comment_Ref; Value : in ADO.Identifier); -- Get the comment identifier function Get_Id (Object : in Comment_Ref) return ADO.Identifier; -- Get the optimistic lock version. function Get_Version (Object : in Comment_Ref) return Integer; -- Set the entity type that identifies the table to which the comment is associated. procedure Set_Entity_Type (Object : in out Comment_Ref; Value : in ADO.Entity_Type); -- Get the entity type that identifies the table to which the comment is associated. function Get_Entity_Type (Object : in Comment_Ref) return ADO.Entity_Type; -- Set the comment status to decide whether the comment is visible (published) or not. procedure Set_Status (Object : in out Comment_Ref; Value : in AWA.Comments.Models.Status_Type); -- Get the comment status to decide whether the comment is visible (published) or not. function Get_Status (Object : in Comment_Ref) return AWA.Comments.Models.Status_Type; -- Set the comment format type. procedure Set_Format (Object : in out Comment_Ref; Value : in AWA.Comments.Models.Format_Type); -- Get the comment format type. function Get_Format (Object : in Comment_Ref) return AWA.Comments.Models.Format_Type; -- procedure Set_Author (Object : in out Comment_Ref; Value : in AWA.Users.Models.User_Ref'Class); -- function Get_Author (Object : in Comment_Ref) return AWA.Users.Models.User_Ref'Class; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Comment_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Comment_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Comment_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Comment_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Comment_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Comment_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition COMMENT_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Comment_Ref); -- Copy of the object. procedure Copy (Object : in Comment_Ref; Into : in out Comment_Ref); -- -------------------- -- The comment information. -- -------------------- type Comment_Info is new Util.Beans.Basic.Bean with record -- the comment identifier. Id : ADO.Identifier; -- the comment author's name. Author : Ada.Strings.Unbounded.Unbounded_String; -- the comment author's email. Email : Ada.Strings.Unbounded.Unbounded_String; -- the comment date. Date : Ada.Calendar.Time; -- the comment format type. Format : AWA.Comments.Models.Format_Type; -- the comment text. Comment : Ada.Strings.Unbounded.Unbounded_String; -- the comment status. Status : AWA.Comments.Models.Status_Type; end record; -- Get the bean attribute identified by the name. overriding function Get_Value (From : in Comment_Info; Name : in String) return Util.Beans.Objects.Object; -- Set the bean attribute identified by the name. overriding procedure Set_Value (Item : in out Comment_Info; Name : in String; Value : in Util.Beans.Objects.Object); package Comment_Info_Beans is new Util.Beans.Basic.Lists (Element_Type => Comment_Info); package Comment_Info_Vectors renames Comment_Info_Beans.Vectors; subtype Comment_Info_List_Bean is Comment_Info_Beans.List_Bean; type Comment_Info_List_Bean_Access is access all Comment_Info_List_Bean; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out Comment_Info_List_Bean'Class; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); subtype Comment_Info_Vector is Comment_Info_Vectors.Vector; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out Comment_Info_Vector; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); Query_Comment_List : constant ADO.Queries.Query_Definition_Access; Query_All_Comment_List : constant ADO.Queries.Query_Definition_Access; type Comment_Bean is abstract new AWA.Comments.Models.Comment_Ref and Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with null record; -- This bean provides some methods that can be used in a Method_Expression. overriding function Get_Method_Bindings (From : in Comment_Bean) return Util.Beans.Methods.Method_Binding_Array_Access; -- Set the bean attribute identified by the name. overriding procedure Set_Value (Item : in out Comment_Bean; Name : in String; Value : in Util.Beans.Objects.Object); procedure Create (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; procedure Delete (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; procedure Save (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; procedure Publish (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; private COMMENT_NAME : aliased constant String := "awa_comment"; COL_0_1_NAME : aliased constant String := "create_date"; COL_1_1_NAME : aliased constant String := "message"; COL_2_1_NAME : aliased constant String := "entity_id"; COL_3_1_NAME : aliased constant String := "id"; COL_4_1_NAME : aliased constant String := "version"; COL_5_1_NAME : aliased constant String := "entity_type"; COL_6_1_NAME : aliased constant String := "status"; COL_7_1_NAME : aliased constant String := "format"; COL_8_1_NAME : aliased constant String := "author_id"; COMMENT_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 9, Table => COMMENT_NAME'Access, Members => ( 1 => COL_0_1_NAME'Access, 2 => COL_1_1_NAME'Access, 3 => COL_2_1_NAME'Access, 4 => COL_3_1_NAME'Access, 5 => COL_4_1_NAME'Access, 6 => COL_5_1_NAME'Access, 7 => COL_6_1_NAME'Access, 8 => COL_7_1_NAME'Access, 9 => COL_8_1_NAME'Access) ); COMMENT_TABLE : constant ADO.Schemas.Class_Mapping_Access := COMMENT_DEF'Access; COMMENT_AUDIT_DEF : aliased constant ADO.Audits.Auditable_Mapping := (Count => 3, Of_Class => COMMENT_DEF'Access, Members => ( 1 => 1, 2 => 6, 3 => 7) ); COMMENT_AUDIT_TABLE : constant ADO.Audits.Auditable_Mapping_Access := COMMENT_AUDIT_DEF'Access; Null_Comment : constant Comment_Ref := Comment_Ref'(ADO.Objects.Object_Ref with null record); type Comment_Impl is new ADO.Audits.Auditable_Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => COMMENT_DEF'Access, With_Audit => COMMENT_AUDIT_DEF'Access) with record Create_Date : Ada.Calendar.Time; Message : Ada.Strings.Unbounded.Unbounded_String; Entity_Id : ADO.Identifier; Version : Integer; Entity_Type : ADO.Entity_Type; Status : AWA.Comments.Models.Status_Type; Format : AWA.Comments.Models.Format_Type; Author : AWA.Users.Models.User_Ref; end record; type Comment_Access is access all Comment_Impl; overriding procedure Destroy (Object : access Comment_Impl); overriding procedure Find (Object : in out Comment_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Comment_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Comment_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Comment_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Comment_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Comment_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Comment_Ref'Class; Impl : out Comment_Access); package File_1 is new ADO.Queries.Loaders.File (Path => "comment-queries.xml", Sha1 => "80302F51E2EC9855EFAFB43954D724A697C1F8E6"); package Def_Commentinfo_Comment_List is new ADO.Queries.Loaders.Query (Name => "comment-list", File => File_1.File'Access); Query_Comment_List : constant ADO.Queries.Query_Definition_Access := Def_Commentinfo_Comment_List.Query'Access; package Def_Commentinfo_All_Comment_List is new ADO.Queries.Loaders.Query (Name => "all-comment-list", File => File_1.File'Access); Query_All_Comment_List : constant ADO.Queries.Query_Definition_Access := Def_Commentinfo_All_Comment_List.Query'Access; end AWA.Comments.Models;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- @author Alexander Senier -- @date 2019-01-24 -- -- Copyright (C) 2018 Componolit GmbH -- 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 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 AUnit; use AUnit; with AUnit.Test_Cases; use AUnit.Test_Cases; -- @summary Tests HMAC RIPEMD-160 package LSC_Test_HMAC_RIPEMD160 is type Test_Case is new Test_Cases.Test_Case with null record; procedure Register_Tests (T : in out Test_Case); -- Register routines to be run function Name (T : Test_Case) return Message_String; -- Provide name identifying the test case end LSC_Test_HMAC_RIPEMD160;
-- This spec has been automatically generated from STM32L4x5.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.TSC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_MCV_Field is HAL.UInt3; subtype CR_PGPSC_Field is HAL.UInt3; subtype CR_SSD_Field is HAL.UInt7; subtype CR_CTPL_Field is HAL.UInt4; subtype CR_CTPH_Field is HAL.UInt4; -- control register type CR_Register is record -- Touch sensing controller enable TSCE : Boolean := False; -- Start a new acquisition START : Boolean := False; -- Acquisition mode AM : Boolean := False; -- Synchronization pin polarity SYNCPOL : Boolean := False; -- I/O Default mode IODEF : Boolean := False; -- Max count value MCV : CR_MCV_Field := 16#0#; -- unspecified Reserved_8_11 : HAL.UInt4 := 16#0#; -- pulse generator prescaler PGPSC : CR_PGPSC_Field := 16#0#; -- Spread spectrum prescaler SSPSC : Boolean := False; -- Spread spectrum enable SSE : Boolean := False; -- Spread spectrum deviation SSD : CR_SSD_Field := 16#0#; -- Charge transfer pulse low CTPL : CR_CTPL_Field := 16#0#; -- Charge transfer pulse high CTPH : CR_CTPH_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record TSCE at 0 range 0 .. 0; START at 0 range 1 .. 1; AM at 0 range 2 .. 2; SYNCPOL at 0 range 3 .. 3; IODEF at 0 range 4 .. 4; MCV at 0 range 5 .. 7; Reserved_8_11 at 0 range 8 .. 11; PGPSC at 0 range 12 .. 14; SSPSC at 0 range 15 .. 15; SSE at 0 range 16 .. 16; SSD at 0 range 17 .. 23; CTPL at 0 range 24 .. 27; CTPH at 0 range 28 .. 31; end record; -- interrupt enable register type IER_Register is record -- End of acquisition interrupt enable EOAIE : Boolean := False; -- Max count error interrupt enable MCEIE : 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 IER_Register use record EOAIE at 0 range 0 .. 0; MCEIE at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- interrupt clear register type ICR_Register is record -- End of acquisition interrupt clear EOAIC : Boolean := False; -- Max count error interrupt clear MCEIC : 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 ICR_Register use record EOAIC at 0 range 0 .. 0; MCEIC at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- interrupt status register type ISR_Register is record -- End of acquisition flag EOAF : Boolean := False; -- Max count error flag MCEF : 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 ISR_Register use record EOAF at 0 range 0 .. 0; MCEF at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- IOHCR_G1_IO array type IOHCR_G1_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G1_IO type IOHCR_G1_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G1_IO as a value Val : HAL.UInt4; when True => -- G1_IO as an array Arr : IOHCR_G1_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G1_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G2_IO array type IOHCR_G2_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G2_IO type IOHCR_G2_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G2_IO as a value Val : HAL.UInt4; when True => -- G2_IO as an array Arr : IOHCR_G2_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G2_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G3_IO array type IOHCR_G3_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G3_IO type IOHCR_G3_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G3_IO as a value Val : HAL.UInt4; when True => -- G3_IO as an array Arr : IOHCR_G3_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G3_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G4_IO array type IOHCR_G4_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G4_IO type IOHCR_G4_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G4_IO as a value Val : HAL.UInt4; when True => -- G4_IO as an array Arr : IOHCR_G4_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G4_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G5_IO array type IOHCR_G5_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G5_IO type IOHCR_G5_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G5_IO as a value Val : HAL.UInt4; when True => -- G5_IO as an array Arr : IOHCR_G5_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G5_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G6_IO array type IOHCR_G6_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G6_IO type IOHCR_G6_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G6_IO as a value Val : HAL.UInt4; when True => -- G6_IO as an array Arr : IOHCR_G6_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G6_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G7_IO array type IOHCR_G7_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G7_IO type IOHCR_G7_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G7_IO as a value Val : HAL.UInt4; when True => -- G7_IO as an array Arr : IOHCR_G7_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G7_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOHCR_G8_IO array type IOHCR_G8_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOHCR_G8_IO type IOHCR_G8_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G8_IO as a value Val : HAL.UInt4; when True => -- G8_IO as an array Arr : IOHCR_G8_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOHCR_G8_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- I/O hysteresis control register type IOHCR_Register is record -- G1_IO1 G1_IO : IOHCR_G1_IO_Field := (As_Array => False, Val => 16#1#); -- G2_IO1 G2_IO : IOHCR_G2_IO_Field := (As_Array => False, Val => 16#1#); -- G3_IO1 G3_IO : IOHCR_G3_IO_Field := (As_Array => False, Val => 16#1#); -- G4_IO1 G4_IO : IOHCR_G4_IO_Field := (As_Array => False, Val => 16#1#); -- G5_IO1 G5_IO : IOHCR_G5_IO_Field := (As_Array => False, Val => 16#1#); -- G6_IO1 G6_IO : IOHCR_G6_IO_Field := (As_Array => False, Val => 16#1#); -- G7_IO1 G7_IO : IOHCR_G7_IO_Field := (As_Array => False, Val => 16#1#); -- G8_IO1 G8_IO : IOHCR_G8_IO_Field := (As_Array => False, Val => 16#1#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOHCR_Register use record G1_IO at 0 range 0 .. 3; G2_IO at 0 range 4 .. 7; G3_IO at 0 range 8 .. 11; G4_IO at 0 range 12 .. 15; G5_IO at 0 range 16 .. 19; G6_IO at 0 range 20 .. 23; G7_IO at 0 range 24 .. 27; G8_IO at 0 range 28 .. 31; end record; -- IOASCR_G1_IO array type IOASCR_G1_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G1_IO type IOASCR_G1_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G1_IO as a value Val : HAL.UInt4; when True => -- G1_IO as an array Arr : IOASCR_G1_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G1_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G2_IO array type IOASCR_G2_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G2_IO type IOASCR_G2_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G2_IO as a value Val : HAL.UInt4; when True => -- G2_IO as an array Arr : IOASCR_G2_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G2_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G3_IO array type IOASCR_G3_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G3_IO type IOASCR_G3_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G3_IO as a value Val : HAL.UInt4; when True => -- G3_IO as an array Arr : IOASCR_G3_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G3_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G4_IO array type IOASCR_G4_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G4_IO type IOASCR_G4_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G4_IO as a value Val : HAL.UInt4; when True => -- G4_IO as an array Arr : IOASCR_G4_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G4_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G5_IO array type IOASCR_G5_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G5_IO type IOASCR_G5_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G5_IO as a value Val : HAL.UInt4; when True => -- G5_IO as an array Arr : IOASCR_G5_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G5_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G6_IO array type IOASCR_G6_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G6_IO type IOASCR_G6_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G6_IO as a value Val : HAL.UInt4; when True => -- G6_IO as an array Arr : IOASCR_G6_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G6_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G7_IO array type IOASCR_G7_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G7_IO type IOASCR_G7_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G7_IO as a value Val : HAL.UInt4; when True => -- G7_IO as an array Arr : IOASCR_G7_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G7_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOASCR_G8_IO array type IOASCR_G8_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOASCR_G8_IO type IOASCR_G8_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G8_IO as a value Val : HAL.UInt4; when True => -- G8_IO as an array Arr : IOASCR_G8_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOASCR_G8_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- I/O analog switch control register type IOASCR_Register is record -- G1_IO1 G1_IO : IOASCR_G1_IO_Field := (As_Array => False, Val => 16#0#); -- G2_IO1 G2_IO : IOASCR_G2_IO_Field := (As_Array => False, Val => 16#0#); -- G3_IO1 G3_IO : IOASCR_G3_IO_Field := (As_Array => False, Val => 16#0#); -- G4_IO1 G4_IO : IOASCR_G4_IO_Field := (As_Array => False, Val => 16#0#); -- G5_IO1 G5_IO : IOASCR_G5_IO_Field := (As_Array => False, Val => 16#0#); -- G6_IO1 G6_IO : IOASCR_G6_IO_Field := (As_Array => False, Val => 16#0#); -- G7_IO1 G7_IO : IOASCR_G7_IO_Field := (As_Array => False, Val => 16#0#); -- G8_IO1 G8_IO : IOASCR_G8_IO_Field := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOASCR_Register use record G1_IO at 0 range 0 .. 3; G2_IO at 0 range 4 .. 7; G3_IO at 0 range 8 .. 11; G4_IO at 0 range 12 .. 15; G5_IO at 0 range 16 .. 19; G6_IO at 0 range 20 .. 23; G7_IO at 0 range 24 .. 27; G8_IO at 0 range 28 .. 31; end record; -- IOSCR_G1_IO array type IOSCR_G1_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G1_IO type IOSCR_G1_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G1_IO as a value Val : HAL.UInt4; when True => -- G1_IO as an array Arr : IOSCR_G1_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G1_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G2_IO array type IOSCR_G2_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G2_IO type IOSCR_G2_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G2_IO as a value Val : HAL.UInt4; when True => -- G2_IO as an array Arr : IOSCR_G2_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G2_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G3_IO array type IOSCR_G3_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G3_IO type IOSCR_G3_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G3_IO as a value Val : HAL.UInt4; when True => -- G3_IO as an array Arr : IOSCR_G3_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G3_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G4_IO array type IOSCR_G4_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G4_IO type IOSCR_G4_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G4_IO as a value Val : HAL.UInt4; when True => -- G4_IO as an array Arr : IOSCR_G4_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G4_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G5_IO array type IOSCR_G5_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G5_IO type IOSCR_G5_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G5_IO as a value Val : HAL.UInt4; when True => -- G5_IO as an array Arr : IOSCR_G5_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G5_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G6_IO array type IOSCR_G6_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G6_IO type IOSCR_G6_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G6_IO as a value Val : HAL.UInt4; when True => -- G6_IO as an array Arr : IOSCR_G6_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G6_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G7_IO array type IOSCR_G7_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G7_IO type IOSCR_G7_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G7_IO as a value Val : HAL.UInt4; when True => -- G7_IO as an array Arr : IOSCR_G7_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G7_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOSCR_G8_IO array type IOSCR_G8_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOSCR_G8_IO type IOSCR_G8_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G8_IO as a value Val : HAL.UInt4; when True => -- G8_IO as an array Arr : IOSCR_G8_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOSCR_G8_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- I/O sampling control register type IOSCR_Register is record -- G1_IO1 G1_IO : IOSCR_G1_IO_Field := (As_Array => False, Val => 16#0#); -- G2_IO1 G2_IO : IOSCR_G2_IO_Field := (As_Array => False, Val => 16#0#); -- G3_IO1 G3_IO : IOSCR_G3_IO_Field := (As_Array => False, Val => 16#0#); -- G4_IO1 G4_IO : IOSCR_G4_IO_Field := (As_Array => False, Val => 16#0#); -- G5_IO1 G5_IO : IOSCR_G5_IO_Field := (As_Array => False, Val => 16#0#); -- G6_IO1 G6_IO : IOSCR_G6_IO_Field := (As_Array => False, Val => 16#0#); -- G7_IO1 G7_IO : IOSCR_G7_IO_Field := (As_Array => False, Val => 16#0#); -- G8_IO1 G8_IO : IOSCR_G8_IO_Field := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOSCR_Register use record G1_IO at 0 range 0 .. 3; G2_IO at 0 range 4 .. 7; G3_IO at 0 range 8 .. 11; G4_IO at 0 range 12 .. 15; G5_IO at 0 range 16 .. 19; G6_IO at 0 range 20 .. 23; G7_IO at 0 range 24 .. 27; G8_IO at 0 range 28 .. 31; end record; -- IOCCR_G1_IO array type IOCCR_G1_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G1_IO type IOCCR_G1_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G1_IO as a value Val : HAL.UInt4; when True => -- G1_IO as an array Arr : IOCCR_G1_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G1_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G2_IO array type IOCCR_G2_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G2_IO type IOCCR_G2_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G2_IO as a value Val : HAL.UInt4; when True => -- G2_IO as an array Arr : IOCCR_G2_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G2_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G3_IO array type IOCCR_G3_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G3_IO type IOCCR_G3_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G3_IO as a value Val : HAL.UInt4; when True => -- G3_IO as an array Arr : IOCCR_G3_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G3_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G4_IO array type IOCCR_G4_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G4_IO type IOCCR_G4_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G4_IO as a value Val : HAL.UInt4; when True => -- G4_IO as an array Arr : IOCCR_G4_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G4_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G5_IO array type IOCCR_G5_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G5_IO type IOCCR_G5_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G5_IO as a value Val : HAL.UInt4; when True => -- G5_IO as an array Arr : IOCCR_G5_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G5_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G6_IO array type IOCCR_G6_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G6_IO type IOCCR_G6_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G6_IO as a value Val : HAL.UInt4; when True => -- G6_IO as an array Arr : IOCCR_G6_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G6_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G7_IO array type IOCCR_G7_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G7_IO type IOCCR_G7_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G7_IO as a value Val : HAL.UInt4; when True => -- G7_IO as an array Arr : IOCCR_G7_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G7_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- IOCCR_G8_IO array type IOCCR_G8_IO_Field_Array is array (1 .. 4) of Boolean with Component_Size => 1, Size => 4; -- Type definition for IOCCR_G8_IO type IOCCR_G8_IO_Field (As_Array : Boolean := False) is record case As_Array is when False => -- G8_IO as a value Val : HAL.UInt4; when True => -- G8_IO as an array Arr : IOCCR_G8_IO_Field_Array; end case; end record with Unchecked_Union, Size => 4; for IOCCR_G8_IO_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- I/O channel control register type IOCCR_Register is record -- G1_IO1 G1_IO : IOCCR_G1_IO_Field := (As_Array => False, Val => 16#0#); -- G2_IO1 G2_IO : IOCCR_G2_IO_Field := (As_Array => False, Val => 16#0#); -- G3_IO1 G3_IO : IOCCR_G3_IO_Field := (As_Array => False, Val => 16#0#); -- G4_IO1 G4_IO : IOCCR_G4_IO_Field := (As_Array => False, Val => 16#0#); -- G5_IO1 G5_IO : IOCCR_G5_IO_Field := (As_Array => False, Val => 16#0#); -- G6_IO1 G6_IO : IOCCR_G6_IO_Field := (As_Array => False, Val => 16#0#); -- G7_IO1 G7_IO : IOCCR_G7_IO_Field := (As_Array => False, Val => 16#0#); -- G8_IO1 G8_IO : IOCCR_G8_IO_Field := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOCCR_Register use record G1_IO at 0 range 0 .. 3; G2_IO at 0 range 4 .. 7; G3_IO at 0 range 8 .. 11; G4_IO at 0 range 12 .. 15; G5_IO at 0 range 16 .. 19; G6_IO at 0 range 20 .. 23; G7_IO at 0 range 24 .. 27; G8_IO at 0 range 28 .. 31; end record; -- I/O group control status register type IOGCSR_Register is record -- Analog I/O group x enable G1E : Boolean := False; -- Analog I/O group x enable G2E : Boolean := False; -- Analog I/O group x enable G3E : Boolean := False; -- Analog I/O group x enable G4E : Boolean := False; -- Analog I/O group x enable G5E : Boolean := False; -- Analog I/O group x enable G6E : Boolean := False; -- Analog I/O group x enable G7E : Boolean := False; -- Analog I/O group x enable G8E : Boolean := False; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#0#; -- Read-only. Analog I/O group x status G1S : Boolean := False; -- Read-only. Analog I/O group x status G2S : Boolean := False; -- Read-only. Analog I/O group x status G3S : Boolean := False; -- Read-only. Analog I/O group x status G4S : Boolean := False; -- Read-only. Analog I/O group x status G5S : Boolean := False; -- Read-only. Analog I/O group x status G6S : Boolean := False; -- Read-only. Analog I/O group x status G7S : Boolean := False; -- Read-only. Analog I/O group x status G8S : 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 IOGCSR_Register use record G1E at 0 range 0 .. 0; G2E at 0 range 1 .. 1; G3E at 0 range 2 .. 2; G4E at 0 range 3 .. 3; G5E at 0 range 4 .. 4; G6E at 0 range 5 .. 5; G7E at 0 range 6 .. 6; G8E at 0 range 7 .. 7; Reserved_8_15 at 0 range 8 .. 15; G1S at 0 range 16 .. 16; G2S at 0 range 17 .. 17; G3S at 0 range 18 .. 18; G4S at 0 range 19 .. 19; G5S at 0 range 20 .. 20; G6S at 0 range 21 .. 21; G7S at 0 range 22 .. 22; G8S at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype IOG1CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG1CR_Register is record -- Read-only. Counter value CNT : IOG1CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG1CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG2CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG2CR_Register is record -- Read-only. Counter value CNT : IOG2CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG2CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG3CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG3CR_Register is record -- Read-only. Counter value CNT : IOG3CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG3CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG4CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG4CR_Register is record -- Read-only. Counter value CNT : IOG4CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG4CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG5CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG5CR_Register is record -- Read-only. Counter value CNT : IOG5CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG5CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG6CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG6CR_Register is record -- Read-only. Counter value CNT : IOG6CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG6CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG7CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG7CR_Register is record -- Read-only. Counter value CNT : IOG7CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG7CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype IOG8CR_CNT_Field is HAL.UInt14; -- I/O group x counter register type IOG8CR_Register is record -- Read-only. Counter value CNT : IOG8CR_CNT_Field; -- unspecified Reserved_14_31 : HAL.UInt18; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IOG8CR_Register use record CNT at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Touch sensing controller type TSC_Peripheral is record -- control register CR : aliased CR_Register; -- interrupt enable register IER : aliased IER_Register; -- interrupt clear register ICR : aliased ICR_Register; -- interrupt status register ISR : aliased ISR_Register; -- I/O hysteresis control register IOHCR : aliased IOHCR_Register; -- I/O analog switch control register IOASCR : aliased IOASCR_Register; -- I/O sampling control register IOSCR : aliased IOSCR_Register; -- I/O channel control register IOCCR : aliased IOCCR_Register; -- I/O group control status register IOGCSR : aliased IOGCSR_Register; -- I/O group x counter register IOG1CR : aliased IOG1CR_Register; -- I/O group x counter register IOG2CR : aliased IOG2CR_Register; -- I/O group x counter register IOG3CR : aliased IOG3CR_Register; -- I/O group x counter register IOG4CR : aliased IOG4CR_Register; -- I/O group x counter register IOG5CR : aliased IOG5CR_Register; -- I/O group x counter register IOG6CR : aliased IOG6CR_Register; -- I/O group x counter register IOG7CR : aliased IOG7CR_Register; -- I/O group x counter register IOG8CR : aliased IOG8CR_Register; end record with Volatile; for TSC_Peripheral use record CR at 16#0# range 0 .. 31; IER at 16#4# range 0 .. 31; ICR at 16#8# range 0 .. 31; ISR at 16#C# range 0 .. 31; IOHCR at 16#10# range 0 .. 31; IOASCR at 16#18# range 0 .. 31; IOSCR at 16#20# range 0 .. 31; IOCCR at 16#28# range 0 .. 31; IOGCSR at 16#30# range 0 .. 31; IOG1CR at 16#34# range 0 .. 31; IOG2CR at 16#38# range 0 .. 31; IOG3CR at 16#3C# range 0 .. 31; IOG4CR at 16#40# range 0 .. 31; IOG5CR at 16#44# range 0 .. 31; IOG6CR at 16#48# range 0 .. 31; IOG7CR at 16#4C# range 0 .. 31; IOG8CR at 16#50# range 0 .. 31; end record; -- Touch sensing controller TSC_Periph : aliased TSC_Peripheral with Import, Address => System'To_Address (16#40024000#); end STM32_SVD.TSC;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . W C H _ C O N -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package defines the codes used to identify the encoding method for -- wide characters in string and character constants. This is needed both -- at compile time and at runtime (for the wide character runtime routines) -- 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.WCh_Con is pragma Pure; ------------------------------------- -- Wide_Character Encoding Methods -- ------------------------------------- -- A wide character encoding method is a method for uniquely representing -- a Wide_Character or Wide_Wide_Character value using a one or more -- Character values. Three types of encoding method are supported by GNAT: -- An escape encoding method uses ESC as the first character of the -- sequence, and subsequent characters determine the wide character -- value that is represented. Any character other than ESC stands -- for itself as a single byte (i.e. any character in Latin-1, other -- than ESC itself, is represented as a single character: itself). -- An upper half encoding method uses a character in the upper half -- range (i.e. in the range 16#80# .. 16#FF#) as the first byte of -- a wide character encoding sequence. Subsequent characters are -- used to determine the wide character value that is represented. -- Any character in the lower half (16#00# .. 16#7F#) represents -- itself as a single character. -- The brackets notation, where a wide character is represented by the -- sequence ["xx"] or ["xxxx"] or ["xxxxxx"] where xx are hexadecimal -- characters. Note that currently this is the only encoding that -- supports the full UTF-32 range. -- Note that GNAT does not currently support escape-in, escape-out -- encoding methods, where an escape sequence is used to set a mode -- used to recognize subsequent characters. All encoding methods use -- individual character-by-character encodings, so that a sequence of -- wide characters is represented by a sequence of encodings. -- To add new encoding methods, the following steps are required: -- 1. Define a code for a new value of type WC_Encoding_Method -- 2. Adjust the definition of WC_Encoding_Method accordingly -- 3. Provide appropriate conversion routines in System.WCh_Cnv -- 4. Adjust definition of WC_Longest_Sequence if necessary -- 5. Add an entry in WC_Encoding_Letters for the new method -- 6. Add proper code to s-wchstw.adb, s-wchwts.adb, s-widwch.adb -- 7. Update documentation (remember section on form strings) -- Note that the WC_Encoding_Method values must be kept ordered so that -- the definitions of the subtypes WC_Upper_Half_Encoding_Method and -- WC_ESC_Encoding_Method are still correct. --------------------------------- -- Encoding Method Definitions -- --------------------------------- type WC_Encoding_Method is range 1 .. 6; -- Type covering the range of values used to represent wide character -- encoding methods. An enumeration type might be a little neater, but -- more trouble than it's worth, given the need to pass these values -- from the compiler to the backend, and to record them in the ALI file. WCEM_Hex : constant WC_Encoding_Method := 1; -- The wide character with code 16#abcd# is represented by the escape -- sequence ESC a b c d (five characters, where abcd are ASCII hex -- characters, using upper case for letters). This method is easy -- to deal with in external environments that do not support wide -- characters, and covers the whole 16-bit BMP. Codes larger than -- 16#FFFF# are not representable using this encoding method. WCEM_Upper : constant WC_Encoding_Method := 2; -- The wide character with encoding 16#abcd#, where the upper bit is on -- (i.e. a is in the range 8-F) is represented as two bytes 16#ab# and -- 16#cd#. The second byte may never be a format control character, but -- is not required to be in the upper half. This method can be also used -- for shift-JIS or EUC where the internal coding matches the external -- coding. Codes larger than 16#FFFF# are not representable using this -- encoding method. WCEM_Shift_JIS : constant WC_Encoding_Method := 3; -- A wide character is represented by a two character sequence 16#ab# -- and 16#cd#, with the restrictions described for upper half encoding -- as described above. The internal character code is the corresponding -- JIS character according to the standard algorithm for Shift-JIS -- conversion. See the body of package System.JIS_Conversions for -- further details. Codes larger than 16#FFFF are not representable -- using this encoding method. WCEM_EUC : constant WC_Encoding_Method := 4; -- A wide character is represented by a two character sequence 16#ab# and -- 16#cd#, with both characters being in the upper half set. The internal -- character code is the corresponding JIS character according to the EUC -- encoding algorithm. See the body of package System.JIS_Conversions for -- further details. Codes larger than 16#FFFF# are not representable using -- this encoding method. WCEM_UTF8 : constant WC_Encoding_Method := 5; -- An ISO 10646-1 BMP/Unicode wide character is represented in UCS -- Transformation Format 8 (UTF-8), as defined in Annex R of ISO -- 10646-1/Am.2. Depending on the character value, a Unicode character -- is represented as the one to six byte sequence. -- -- 16#0000_0000#-16#0000_007f#: 2#0xxxxxxx# -- 16#0000_0080#-16#0000_07ff#: 2#110xxxxx# 2#10xxxxxx# -- 16#0000_0800#-16#0000_ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx# -- 16#0001_0000#-16#001F_FFFF#: 2#11110xxx# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# -- 16#0020_0000#-16#03FF_FFFF#: 2#111110xx# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# 2#10xxxxxx# -- 16#0400_0000#-16#7FFF_FFFF#: 2#1111110x# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# 2#10xxxxxx# 2#10xxxxxx# -- -- where the xxx bits correspond to the left-padded bits of the -- 16-bit character value. Note that all lower half ASCII characters -- are represented as ASCII bytes and all upper half characters and -- other wide characters are represented as sequences of upper-half. This -- encoding method can represent the entire range of Wide_Wide_Character. WCEM_Brackets : constant WC_Encoding_Method := 6; -- A wide character is represented using one of the following sequences: -- -- ["xx"] -- ["xxxx"] -- ["xxxxxx"] -- ["xxxxxxxx"] -- -- where xx are hexadecimal digits representing the character code. This -- encoding method can represent the entire range of Wide_Wide_Character -- but in the general case results in ambiguous representations (there is -- no ambiguity in Ada sources, since the above sequences are illegal Ada). WC_Encoding_Letters : constant array (WC_Encoding_Method) of Character := (WCEM_Hex => 'h', WCEM_Upper => 'u', WCEM_Shift_JIS => 's', WCEM_EUC => 'e', WCEM_UTF8 => '8', WCEM_Brackets => 'b'); -- Letters used for selection of wide character encoding method in the -- compiler options (-gnatW? switch) and for Wide_Text_IO (WCEM parameter -- in the form string). subtype WC_ESC_Encoding_Method is WC_Encoding_Method range WCEM_Hex .. WCEM_Hex; -- Encoding methods using an ESC character at the start of the sequence subtype WC_Upper_Half_Encoding_Method is WC_Encoding_Method range WCEM_Upper .. WCEM_UTF8; -- Encoding methods using an upper half character (16#80#..16#FF) at -- the start of the sequence. WC_Longest_Sequence : constant := 12; -- The longest number of characters that can be used for a wide character -- or wide wide character sequence for any of the active encoding methods. WC_Longest_Sequences : constant array (WC_Encoding_Method) of Natural := (WCEM_Hex => 5, WCEM_Upper => 2, WCEM_Shift_JIS => 2, WCEM_EUC => 2, WCEM_UTF8 => 6, WCEM_Brackets => 12); -- The longest number of characters that can be used for a wide character -- or wide wide character sequence using the given encoding method. function Get_WC_Encoding_Method (C : Character) return WC_Encoding_Method; -- Given a character C, returns corresponding encoding method (see array -- WC_Encoding_Letters above). Raises Constraint_Error if not in list. function Get_WC_Encoding_Method (S : String) return WC_Encoding_Method; -- Given a lower case string that is one of hex, upper, shift_jis, euc, -- utf8, brackets, return the corresponding encoding method. Raises -- Constraint_Error if not in list. function Is_Start_Of_Encoding (C : Character; EM : WC_Encoding_Method) return Boolean; pragma Inline (Is_Start_Of_Encoding); -- Returns True if the Character C is the start of a multi-character -- encoding sequence for the given encoding method EM. If EM is set to -- WCEM_Brackets, this function always returns False. end System.WCh_Con;
with Tkmrpc.Types; with Tkmrpc.Operations.Ike; package Tkmrpc.Request.Ike.Isa_Reset is Data_Size : constant := 8; type Data_Type is record Isa_Id : Types.Isa_Id_Type; end record; for Data_Type use record Isa_Id at 0 range 0 .. (8 * 8) - 1; end record; for Data_Type'Size use Data_Size * 8; Padding_Size : constant := Request.Body_Size - Data_Size; subtype Padding_Range is Natural range 1 .. Padding_Size; subtype Padding_Type is Types.Byte_Sequence (Padding_Range); type Request_Type is record Header : Request.Header_Type; Data : Data_Type; Padding : Padding_Type; end record; for Request_Type use record Header at 0 range 0 .. (Request.Header_Size * 8) - 1; Data at Request.Header_Size range 0 .. (Data_Size * 8) - 1; Padding at Request.Header_Size + Data_Size range 0 .. (Padding_Size * 8) - 1; end record; for Request_Type'Size use Request.Request_Size * 8; Null_Request : constant Request_Type := Request_Type' (Header => Request.Header_Type'(Operation => Operations.Ike.Isa_Reset, Request_Id => 0), Data => Data_Type'(Isa_Id => Types.Isa_Id_Type'First), Padding => Padding_Type'(others => 0)); end Tkmrpc.Request.Ike.Isa_Reset;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . I N T E R R U P T S . N A M E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1997-2005, 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. -- -- -- -- -- -- -- -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a NT (native) version of this package -- This target-dependent package spec contains names of interrupts supported -- by the local system. with System.OS_Interface; -- used for names of interrupts package Ada.Interrupts.Names is -- Beware that the mapping of names to signals may be many-to-one. There -- may be aliases. Also, for all signal names that are not supported on the -- current system the value of the corresponding constant will be zero. SIGINT : constant Interrupt_ID := System.OS_Interface.SIGINT; -- interrupt (rubout) SIGILL : constant Interrupt_ID := System.OS_Interface.SIGILL; -- illegal instruction (not reset) SIGABRT : constant Interrupt_ID := -- used by abort, System.OS_Interface.SIGABRT; -- replace SIGIOT in the future SIGFPE : constant Interrupt_ID := System.OS_Interface.SIGFPE; -- floating point exception SIGSEGV : constant Interrupt_ID := System.OS_Interface.SIGSEGV; -- segmentation violation SIGTERM : constant Interrupt_ID := System.OS_Interface.SIGTERM; -- software termination signal from kill end Ada.Interrupts.Names;
----------------------------------------------------------------------- -- el-functions -- Functions to be plugged in expressions -- Copyright (C) 2009, 2010, 2012, 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. ----------------------------------------------------------------------- -- -- The expression context provides information to resolve runtime -- information when evaluating an expression. The context provides -- a resolver whose role is to find variables given their name. with EL.Objects; package EL.Functions is pragma Preelaborate; use EL.Objects; No_Function : exception; type Function_Type is (F_1_ARG, F_2_ARG, F_3_ARG, F_4_ARG); -- Functions that can be plugged in a context and which can later -- be used in an expression. type Function_1_Access is access function (P : Object) return Object; type Function_2_Access is access function (P1, P2 : Object) return Object; type Function_3_Access is access function (P1, P2, P3 : Object) return Object; type Function_4_Access is access function (P1, P2, P3, P4 : Object) return Object; type Function_Access (Of_Type : Function_Type := F_1_ARG) is record Optimize : Boolean := True; case Of_Type is when F_1_ARG => Func1 : Function_1_Access; when F_2_ARG => Func2 : Function_2_Access; when F_3_ARG => Func3 : Function_3_Access; when F_4_ARG => Func4 : Function_4_Access; end case; end record; -- ------------------------------ -- Function mapper -- ------------------------------ -- type Function_Mapper is interface; type Function_Mapper_Access is access all Function_Mapper'Class; -- Find the function knowing its name. function Get_Function (Mapper : Function_Mapper; Namespace : String; Name : String) return Function_Access is abstract; -- Bind a name to a function in the given namespace. procedure Set_Function (Mapper : in out Function_Mapper; Namespace : in String; Name : in String; Func : in Function_Access) is abstract; -- Bind a name to a function. procedure Set_Function (Mapper : in out Function_Mapper'Class; Namespace : in String; Name : in String; Func : in Function_1_Access; Optimize : in Boolean := True); -- Bind a name to a function. procedure Set_Function (Mapper : in out Function_Mapper'Class; Namespace : in String; Name : in String; Func : in Function_2_Access; Optimize : in Boolean := True); -- Bind a name to a function. procedure Set_Function (Mapper : in out Function_Mapper'Class; Namespace : in String; Name : in String; Func : in Function_3_Access; Optimize : in Boolean := True); -- Bind a name to a function. procedure Set_Function (Mapper : in out Function_Mapper'Class; Namespace : in String; Name : in String; Func : in Function_4_Access; Optimize : in Boolean := True); -- Register some pre-defined functions in the function mapper. procedure Register_Predefined (Mapper : in out Function_Mapper'Class); end EL.Functions;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ P R I M I T I V E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2005 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. -- -- -- ------------------------------------------------------------------------------ -- This is the NT version of this package with Interfaces.C; package body System.OS_Primitives is --------------------------- -- Win32 API Definitions -- --------------------------- -- These definitions are copied from System.OS_Interface because we do not -- want to depend on gnarl here. type DWORD is new Interfaces.C.unsigned_long; type LARGE_INTEGER is delta 1.0 range -2.0**63 .. 2.0**63 - 1.0; type BOOL is new Boolean; for BOOL'Size use Interfaces.C.unsigned_long'Size; procedure GetSystemTimeAsFileTime (lpFileTime : access Long_Long_Integer); pragma Import (Stdcall, GetSystemTimeAsFileTime, "GetSystemTimeAsFileTime"); function QueryPerformanceCounter (lpPerformanceCount : access LARGE_INTEGER) return BOOL; pragma Import (Stdcall, QueryPerformanceCounter, "QueryPerformanceCounter"); function QueryPerformanceFrequency (lpFrequency : access LARGE_INTEGER) return BOOL; pragma Import (Stdcall, QueryPerformanceFrequency, "QueryPerformanceFrequency"); procedure Sleep (dwMilliseconds : DWORD); pragma Import (Stdcall, Sleep, External_Name => "Sleep"); ---------------------------------------- -- Data for the high resolution clock -- ---------------------------------------- -- Declare some pointers to access multi-word data above. This is needed -- to workaround a limitation in the GNU/Linker auto-import feature used -- to build the GNAT runtime DLLs. In fact the Clock and Monotonic_Clock -- routines are inlined and they are using some multi-word variables. -- GNU/Linker will fail to auto-import those variables when building -- libgnarl.dll. The indirection level introduced here has no measurable -- penalties. -- -- Note that access variables below must not be declared as constant -- otherwise the compiler optimization will remove this indirect access. type DA is access all Duration; -- Use to have indirect access to multi-word variables type LIA is access all LARGE_INTEGER; -- Use to have indirect access to multi-word variables type LLIA is access all Long_Long_Integer; -- Use to have indirect access to multi-word variables Tick_Frequency : aliased LARGE_INTEGER; TFA : constant LIA := Tick_Frequency'Access; -- Holds frequency of high-performance counter used by Clock -- Windows NT uses a 1_193_182 Hz counter on PCs. Base_Ticks : aliased LARGE_INTEGER; BTA : constant LIA := Base_Ticks'Access; -- Holds the Tick count for the base time. Base_Monotonic_Ticks : aliased LARGE_INTEGER; BMTA : constant LIA := Base_Monotonic_Ticks'Access; -- Holds the Tick count for the base monotonic time Base_Clock : aliased Duration; BCA : constant DA := Base_Clock'Access; -- Holds the current clock for the standard clock's base time Base_Monotonic_Clock : aliased Duration; BMCA : constant DA := Base_Monotonic_Clock'Access; -- Holds the current clock for monotonic clock's base time Base_Time : aliased Long_Long_Integer; BTiA : constant LLIA := Base_Time'Access; -- Holds the base time used to check for system time change, used with -- the standard clock. procedure Get_Base_Time; -- Retrieve the base time and base ticks. These values will be used by -- clock to compute the current time by adding to it a fraction of the -- performance counter. This is for the implementation of a -- high-resolution clock. Note that this routine does not change the base -- monotonic values used by the monotonic clock. ----------- -- Clock -- ----------- -- This implementation of clock provides high resolution timer values -- using QueryPerformanceCounter. This call return a 64 bits values (based -- on the 8253 16 bits counter). This counter is updated every 1/1_193_182 -- times per seconds. The call to QueryPerformanceCounter takes 6 -- microsecs to complete. function Clock return Duration is Max_Shift : constant Duration := 2.0; Hundreds_Nano_In_Sec : constant Long_Long_Float := 1.0E7; Current_Ticks : aliased LARGE_INTEGER; Elap_Secs_Tick : Duration; Elap_Secs_Sys : Duration; Now : aliased Long_Long_Integer; begin if not QueryPerformanceCounter (Current_Ticks'Access) then return 0.0; end if; GetSystemTimeAsFileTime (Now'Access); Elap_Secs_Sys := Duration (Long_Long_Float (abs (Now - BTiA.all)) / Hundreds_Nano_In_Sec); Elap_Secs_Tick := Duration (Long_Long_Float (Current_Ticks - BTA.all) / Long_Long_Float (TFA.all)); -- If we have a shift of more than Max_Shift seconds we resynchonize the -- Clock. This is probably due to a manual Clock adjustment, an DST -- adjustment or an NTP synchronisation. And we want to adjust the -- time for this system (non-monotonic) clock. if abs (Elap_Secs_Sys - Elap_Secs_Tick) > Max_Shift then Get_Base_Time; Elap_Secs_Tick := Duration (Long_Long_Float (Current_Ticks - BTA.all) / Long_Long_Float (TFA.all)); end if; return BCA.all + Elap_Secs_Tick; end Clock; ------------------- -- Get_Base_Time -- ------------------- procedure Get_Base_Time is -- The resolution for GetSystemTime is 1 millisecond. -- The time to get both base times should take less than 1 millisecond. -- Therefore, the elapsed time reported by GetSystemTime between both -- actions should be null. Max_Elapsed : constant := 0; Test_Now : aliased Long_Long_Integer; epoch_1970 : constant := 16#19D_B1DE_D53E_8000#; -- win32 UTC epoch system_time_ns : constant := 100; -- 100 ns per tick Sec_Unit : constant := 10#1#E9; begin -- Here we must be sure that both of these calls are done in a short -- amount of time. Both are base time and should in theory be taken -- at the very same time. loop GetSystemTimeAsFileTime (Base_Time'Access); if not QueryPerformanceCounter (Base_Ticks'Access) then pragma Assert (Standard.False, "Could not query high performance counter in Clock"); null; end if; GetSystemTimeAsFileTime (Test_Now'Access); exit when Test_Now - Base_Time = Max_Elapsed; end loop; Base_Clock := Duration (Long_Long_Float ((Base_Time - epoch_1970) * system_time_ns) / Long_Long_Float (Sec_Unit)); end Get_Base_Time; --------------------- -- Monotonic_Clock -- --------------------- function Monotonic_Clock return Duration is Current_Ticks : aliased LARGE_INTEGER; Elap_Secs_Tick : Duration; begin if not QueryPerformanceCounter (Current_Ticks'Access) then return 0.0; end if; Elap_Secs_Tick := Duration (Long_Long_Float (Current_Ticks - BMTA.all) / Long_Long_Float (TFA.all)); return BMCA.all + Elap_Secs_Tick; end Monotonic_Clock; ----------------- -- Timed_Delay -- ----------------- procedure Timed_Delay (Time : Duration; Mode : Integer) is Rel_Time : Duration; Abs_Time : Duration; Check_Time : Duration := Monotonic_Clock; begin if Mode = Relative then Rel_Time := Time; Abs_Time := Time + Check_Time; else Rel_Time := Time - Check_Time; Abs_Time := Time; end if; if Rel_Time > 0.0 then loop Sleep (DWORD (Rel_Time * 1000.0)); Check_Time := Monotonic_Clock; exit when Abs_Time <= Check_Time; Rel_Time := Abs_Time - Check_Time; end loop; end if; end Timed_Delay; ---------------- -- Initialize -- ---------------- Initialized : Boolean := False; procedure Initialize is begin if Initialized then return; end if; Initialized := True; -- Get starting time as base if not QueryPerformanceFrequency (Tick_Frequency'Access) then raise Program_Error with "cannot get high performance counter frequency"; end if; Get_Base_Time; -- Keep base clock and ticks for the monotonic clock. These values -- should never be changed to ensure proper behavior of the monotonic -- clock. Base_Monotonic_Clock := Base_Clock; Base_Monotonic_Ticks := Base_Ticks; end Initialize; end System.OS_Primitives;