CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 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$ ------------------------------------------------------------------------------ with League.Application; with CSMIB.Generator; with CSMIB.Parser; procedure CSMIB.Driver is begin CSMIB.Parser.Parse (League.Application.Arguments.Element (1)); CSMIB.Generator.Generate; end CSMIB.Driver;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . B O U N D E D _ H O L D E R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2015-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/>. -- ------------------------------------------------------------------------------ with Unchecked_Conversion; with System.Put_Images; package body Ada.Containers.Bounded_Holders is function Size_In_Storage_Elements (Element : Element_Type) return Natural; -- This returns the size of Element in storage units. It raises an -- exception if the size is not a multiple of Storage_Unit, or if the size -- is too big. ------------------------------ -- Size_In_Storage_Elements -- ------------------------------ function Size_In_Storage_Elements (Element : Element_Type) return Natural is Max_Size : Natural renames Max_Size_In_Storage_Elements; begin return S : constant Natural := Element'Size / System.Storage_Unit do pragma Assert (Element'Size mod System.Storage_Unit = 0, "Size must be a multiple of Storage_Unit"); pragma Assert (S <= Max_Size, "Size is too big:" & S'Img & " >" & Max_Size'Img); end return; end Size_In_Storage_Elements; function Cast is new Unchecked_Conversion (System.Address, Element_Access); --------- -- "=" -- --------- function "=" (Left, Right : Holder) return Boolean is begin return Get (Left) = Get (Right); end "="; --------------- -- Put_Image -- --------------- procedure Put_Image (S : in out Ada.Strings.Text_Output.Sink'Class; V : Holder) is use System.Put_Images; begin Array_Before (S); Element_Type'Put_Image (S, Get (V)); Array_After (S); end Put_Image; --------- -- Get -- --------- function Get (Container : Holder) return Element_Type is begin return Cast (Container'Address).all; end Get; --------- -- Set -- --------- procedure Set (Container : in out Holder; New_Item : Element_Type) is Storage : Storage_Array (1 .. Size_In_Storage_Elements (New_Item)) with Address => New_Item'Address; begin Container.Data (Storage'Range) := Storage; end Set; --------------- -- To_Holder -- --------------- function To_Holder (New_Item : Element_Type) return Holder is begin return Result : Holder do Set (Result, New_Item); end return; end To_Holder; end Ada.Containers.Bounded_Holders;
-------------------------------------------------------- -- E n c o d i n g s -- -- -- -- Tools for convertion strings between Unicode and -- -- national/vendor character sets. -- -- - - - - - - - - - -- -- Read copyright and license at the end of this file -- -------------------------------------------------------- -- This package tries to load encoding tables from file -- at runtime using Encodings.Read package Encodings.Maps.Runtime is procedure Encode (Text : in Wide_String; Text_Last : out Natural; Result : out Raw_String; Result_Last : out Natural; Map : in Encoding); procedure Decode (Text : in Raw_String; Text_Last : out Natural; Result : out Wide_String; Result_Last : out Natural; Map : in Encoding); function File (Map : Encoding) return String; end Encodings.Maps.Runtime; ------------------------------------------------------------------------------ -- 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. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- 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_dsi.c -- -- @author MCD Application Team -- -- @version V1.4.2 -- -- @date 10-November-2015 -- -- -- -- COPYRIGHT(c) 2015 STMicroelectronics -- ------------------------------------------------------------------------------ with Ada.Real_Time; use Ada.Real_Time; with Ada.Unchecked_Conversion; pragma Warnings (Off, "* is an internal GNAT unit"); with System.BB.Parameters; use System.BB.Parameters; pragma Warnings (On, "* is an internal GNAT unit"); with HAL.DSI; use HAL.DSI; with STM32_SVD.DSI; use STM32_SVD.DSI; with STM32_SVD.RCC; use STM32_SVD.RCC; package body STM32.DSI is DSI_Data_Type_Encoding : constant array (DSI_Pkt_Data_Type) of UInt6 := (DCS_Short_Pkt_Write_P0 => 16#05#, DCS_Short_Pkt_Write_P1 => 16#15#, Gen_Short_Pkt_Write_P0 => 16#03#, Gen_Short_Pkt_Write_P1 => 16#13#, Gen_Short_Pkt_Write_P2 => 16#23#, DCS_Long_Pkt_Write => 16#39#, Gen_Long_Pkt_Write => 16#29#, DCS_Short_Pkt_Read => 16#06#, Gen_Short_Pkg_Read_P0 => 16#04#, Gen_Short_Pkg_Read_P1 => 16#14#, Gen_Short_Pkg_Read_P2 => 16#24#); procedure DSI_Config_Packet_Header (This : in out DSI_Host; Channel_ID : DSI_Virtual_Channel_ID; Data_Type : DSI_Pkt_Data_Type; Data0 : UInt8; Data1 : UInt8); ------------------------------ -- DSI_Config_Packet_Header -- ------------------------------ procedure DSI_Config_Packet_Header (This : in out DSI_Host; Channel_ID : DSI_Virtual_Channel_ID; Data_Type : DSI_Pkt_Data_Type; Data0 : UInt8; Data1 : UInt8) is begin This.Periph.DSI_GHCR := (DT => DSI_Data_Type_Encoding (Data_Type), VCID => Channel_ID, WCLSB => Data0, WCMSB => Data1, others => <>); end DSI_Config_Packet_Header; -------------------- -- DSI_Initialize -- -------------------- procedure DSI_Initialize (This : in out DSI_Host; PLL_N_Div : DSI_PLLN_Div; PLL_IN_Div : DSI_PLL_IDF; PLL_OUT_Div : DSI_PLL_ODF; Auto_Clock_Lane_Control : Boolean; TX_Escape_Clock_Division : UInt8; -- The TX_ESC clock division. 0 or 1 stops the clock. Number_Of_Lanes : DSI_Number_Of_Lanes) is Start : Time; begin -- Enable the regulator This.Periph.DSI_WRPCR.REGEN := True; Start := Clock; -- Wait for the Regulator Ready Status while not This.Periph.DSI_WISR.RRS loop if Clock > (Start + Milliseconds (1000)) then raise Program_Error with "Timeout during DSI initialisation"; end if; end loop; -- Enable the DSI clock RCC_Periph.APB2ENR.DSIEN := True; -- Make sure the DSI peripheral is OFF This.DSI_Stop; --------------------------- -- Configure the DSI PLL -- --------------------------- This.Periph.DSI_WRPCR.IDF := PLL_IN_Div; This.Periph.DSI_WRPCR.NDIV := PLL_N_Div; This.Periph.DSI_WRPCR.ODF := DSI_PLL_ODF'Enum_Rep (PLL_OUT_Div); -- Enable the DSI PLL This.Periph.DSI_WRPCR.PLLEN := True; -- Wait for the lock of the PLL Start := Clock; while not This.Periph.DSI_WISR.PLLLS loop if Clock > (Start + Milliseconds (1000)) then raise Program_Error with "Timeout during DSI PLL setup"; end if; end loop; ---------------------------- -- Set the PHY parameters -- ---------------------------- -- Enable D-PHY clock and digital This.Periph.DSI_PCTLR.CKE := True; This.Periph.DSI_PCTLR.DEN := True; -- Clock lane configuration This.Periph.DSI_CLCR.DPCC := True; This.Periph.DSI_CLCR.ACR := Auto_Clock_Lane_Control; -- Configure the number of active data lanes This.Periph.DSI_PCONFR.NL := DSI_Number_Of_Lanes'Enum_Rep (Number_Of_Lanes); ---------------------------------- -- Set the DSI Clock parameters -- ---------------------------------- This.Periph.DSI_CCR.TXECKDIV := TX_Escape_Clock_Division; -- Calculate the bit period in high-speed mode in unit of 0.25 ns. -- The equation is UIX4 = IntegerPart ((1000/F_PHY_Mhz) * 4) -- Where F_PHY_Mhz = (PLLNDIV * HSE_MHz) / (IDF * ODF) -- => UIX4 = 4_000 * IDF * ODV / (PLLNDIV * HSE_MHz) declare HSE_MHz : constant UInt32 := HSE_Clock / 1_000_000; IDF : constant UInt32 := UInt32 (PLL_IN_Div); ODF : constant UInt32 := Shift_Left (1, DSI_PLL_ODF'Enum_Rep (PLL_OUT_Div)); PLLN : constant UInt32 := UInt32 (PLL_N_Div); Unit_Interval_x4 : constant UInt32 := ((4_000 * IDF * ODF) / (PLLN * HSE_MHz)); begin This.Periph.DSI_WPCR1.UIX4 := UInt6 (Unit_Interval_x4); end; ---------------------- -- Error Management -- ---------------------- -- Disable error interrupts This.Periph.DSI_IER0 := (others => <>); This.Periph.DSI_IER1 := (others => <>); end DSI_Initialize; ---------------- -- DSI_Deinit -- ---------------- procedure DSI_Deinit (This : in out DSI_Host) is begin -- Disable the DSI wrapper and host This.DSI_Stop; -- D-PHY clock and digital disable This.Periph.DSI_PCTLR.DEN := False; This.Periph.DSI_PCTLR.CKE := False; -- Turn off the DSI PLL This.Periph.DSI_WRPCR.PLLEN := False; -- Disable the regulator This.Periph.DSI_WRPCR.REGEN := False; end DSI_Deinit; -------------------------- -- DSI_Setup_Video_Mode -- -------------------------- procedure DSI_Setup_Video_Mode (This : in out DSI_Host; Virtual_Channel : HAL.DSI.DSI_Virtual_Channel_ID; Color_Coding : DSI_Color_Mode; Loosely_Packed : Boolean; Video_Mode : DSI_Video_Mode; Packet_Size : UInt14; Number_Of_Chunks : UInt13; Null_Packet_Size : UInt13; HSync_Polarity : DSI_Polarity; VSync_Polarity : DSI_Polarity; DataEn_Polarity : DSI_Polarity; HSync_Active_Duration : UInt12; Horizontal_BackPorch : UInt12; Horizontal_Line : UInt15; VSync_Active_Duration : UInt10; Vertical_BackPorch : UInt10; Vertical_FrontPorch : UInt10; Vertical_Active : UInt14; LP_Command_Enabled : Boolean; LP_Largest_Packet_Size : UInt8; LP_VACT_Largest_Packet_Size : UInt8; LP_H_Front_Porch_Enable : Boolean; LP_H_Back_Porch_Enable : Boolean; LP_V_Active_Enable : Boolean; LP_V_Front_Porch_Enable : Boolean; LP_V_Back_Porch_Enable : Boolean; LP_V_Sync_Active_Enable : Boolean; Frame_BTA_Ack_Enable : Boolean) is function To_Bool is new Ada.Unchecked_Conversion (DSI_Polarity, Boolean); begin -- Select video mode by resetting CMDM and SDIM bits This.Periph.DSI_MCR.CMDM := False; This.Periph.DSI_WCFGR.DSIM := False; -- Configure the video mode transmission type This.Periph.DSI_VMCR.VMT := DSI_Video_Mode'Enum_Rep (Video_Mode); -- Configure the video packet size This.Periph.DSI_VPCR.VPSIZE := Packet_Size; -- Set the chunks number to be transmitted through the DSI link This.Periph.DSI_VCCR.NUMC := Number_Of_Chunks; -- Set the size of the null packet This.Periph.DSI_VNPCR.NPSIZE := Null_Packet_Size; -- Select the virtual channel for the LTDC interface traffic This.Periph.DSI_LVCIDR.VCID := Virtual_Channel; -- Configure the polarity of control signals This.Periph.DSI_LPCR.HSP := To_Bool (HSync_Polarity); This.Periph.DSI_LPCR.VSP := To_Bool (VSync_Polarity); This.Periph.DSI_LPCR.DEP := To_Bool (DataEn_Polarity); -- Select the color coding for the host This.Periph.DSI_LCOLCR.COLC := DSI_Color_Mode'Enum_Rep (Color_Coding); -- ... and for the wrapper This.Periph.DSI_WCFGR.COLMUX := DSI_Color_Mode'Enum_Rep (Color_Coding); -- Enable/disable the loosely packed variant to 18-bit configuration if Color_Coding = RGB666 then This.Periph.DSI_LCOLCR.LPE := Loosely_Packed; end if; -- Set the Horizontal Synchronization Active (HSA) in lane byte clock -- cycles This.Periph.DSI_VHSACR.HSA := HSync_Active_Duration; -- Set the Horizontal Back Porch This.Periph.DSI_VHBPCR.HBP := Horizontal_BackPorch; -- Total line time (HSA+HBP+HACT+HFP This.Periph.DSI_VLCR.HLINE := Horizontal_Line; -- Set the Vertical Synchronization Active This.Periph.DSI_VVSACR.VSA := VSync_Active_Duration; -- VBP This.Periph.DSI_VVBPCR.VBP := Vertical_BackPorch; -- VFP This.Periph.DSI_VVFPCR.VFP := Vertical_FrontPorch; -- Vertical Active Period This.Periph.DSI_VVACR.VA := Vertical_Active; -- Configure the command transmission mode This.Periph.DSI_VMCR.LPCE := LP_Command_Enabled; -- Low power configuration: This.Periph.DSI_LPMCR.LPSIZE := LP_Largest_Packet_Size; This.Periph.DSI_LPMCR.VLPSIZE := LP_VACT_Largest_Packet_Size; This.Periph.DSI_VMCR.LPHFE := LP_H_Front_Porch_Enable; This.Periph.DSI_VMCR.LPHBPE := LP_H_Back_Porch_Enable; This.Periph.DSI_VMCR.LPVAE := LP_V_Active_Enable; This.Periph.DSI_VMCR.LPVFPE := LP_V_Front_Porch_Enable; This.Periph.DSI_VMCR.LPVBPE := LP_V_Back_Porch_Enable; This.Periph.DSI_VMCR.LPVSAE := LP_V_Sync_Active_Enable; This.Periph.DSI_VMCR.FBTAAE := Frame_BTA_Ack_Enable; end DSI_Setup_Video_Mode; ------------------------------------ -- DSI_Setup_Adapted_Command_Mode -- ------------------------------------ procedure DSI_Setup_Adapted_Command_Mode (This : in out DSI_Host; Virtual_Channel : DSI_Virtual_Channel_ID; Color_Coding : DSI_Color_Mode; Command_Size : UInt16; Tearing_Effect_Source : DSI_Tearing_Effect_Source; Tearing_Effect_Polarity : DSI_TE_Polarity; HSync_Polarity : DSI_Polarity; VSync_Polarity : DSI_Polarity; DataEn_Polarity : DSI_Polarity; VSync_Edge : DSI_Edge; Automatic_Refresh : Boolean; TE_Acknowledge_Request : Boolean) is function To_Bool is new Ada.Unchecked_Conversion (DSI_Polarity, Boolean); function To_Bool is new Ada.Unchecked_Conversion (DSI_TE_Polarity, Boolean); function To_Bool is new Ada.Unchecked_Conversion (DSI_Edge, Boolean); begin -- Select the command mode by setting CMDM and DSIM bits This.Periph.DSI_MCR.CMDM := True; This.Periph.DSI_WCFGR.DSIM := True; -- Select the virtual channel for the LTDC interface traffic This.Periph.DSI_LVCIDR.VCID := Virtual_Channel; -- Configure the polarity of control signals This.Periph.DSI_LPCR.HSP := To_Bool (HSync_Polarity); This.Periph.DSI_LPCR.VSP := To_Bool (VSync_Polarity); This.Periph.DSI_LPCR.DEP := To_Bool (DataEn_Polarity); -- Select the color coding for the host This.Periph.DSI_LCOLCR.COLC := DSI_Color_Mode'Enum_Rep (Color_Coding); -- ... and for the wrapper This.Periph.DSI_WCFGR.COLMUX := DSI_Color_Mode'Enum_Rep (Color_Coding); -- Configure the maximum allowed size for write memory command This.Periph.DSI_LCCR.CMDSIZE := Command_Size; -- Configure the tearing effect source and polarity This.Periph.DSI_WCFGR.TESRC := Tearing_Effect_Source = TE_External; This.Periph.DSI_WCFGR.TEPOL := To_Bool (Tearing_Effect_Polarity); This.Periph.DSI_WCFGR.AR := Automatic_Refresh; This.Periph.DSI_WCFGR.VSPOL := To_Bool (VSync_Edge); -- Tearing effect acknowledge request This.Periph.DSI_CMCR.TEARE := TE_Acknowledge_Request; -- Enable the TE interrupt This.Periph.DSI_WIER.TEIE := True; -- Enable the End-of-refresh interrupt This.Periph.DSI_WIER.ERIE := True; end DSI_Setup_Adapted_Command_Mode; ----------------------- -- DSI_Setup_Command -- ----------------------- procedure DSI_Setup_Command (This : in out DSI_Host; LP_Gen_Short_Write_No_P : Boolean := True; LP_Gen_Short_Write_One_P : Boolean := True; LP_Gen_Short_Write_Two_P : Boolean := True; LP_Gen_Short_Read_No_P : Boolean := True; LP_Gen_Short_Read_One_P : Boolean := True; LP_Gen_Short_Read_Two_P : Boolean := True; LP_Gen_Long_Write : Boolean := True; LP_DCS_Short_Write_No_P : Boolean := True; LP_DCS_Short_Write_One_P : Boolean := True; LP_DCS_Short_Read_No_P : Boolean := True; LP_DCS_Long_Write : Boolean := True; LP_Max_Read_Packet : Boolean := False; Acknowledge_Request : Boolean := False) is begin This.Periph.DSI_CMCR.GSW0TX := LP_Gen_Short_Write_No_P; This.Periph.DSI_CMCR.GSW1TX := LP_Gen_Short_Write_One_P; This.Periph.DSI_CMCR.GSW2TX := LP_Gen_Short_Write_Two_P; This.Periph.DSI_CMCR.GSR0TX := LP_Gen_Short_Read_No_P; This.Periph.DSI_CMCR.GSR1TX := LP_Gen_Short_Read_One_P; This.Periph.DSI_CMCR.GSR2TX := LP_Gen_Short_Read_Two_P; This.Periph.DSI_CMCR.GLWTX := LP_Gen_Long_Write; This.Periph.DSI_CMCR.DSW0TX := LP_DCS_Short_Write_No_P; This.Periph.DSI_CMCR.DSW1TX := LP_DCS_Short_Write_One_P; This.Periph.DSI_CMCR.DSR0TX := LP_DCS_Short_Read_No_P; This.Periph.DSI_CMCR.DLWTX := LP_DCS_Long_Write; This.Periph.DSI_CMCR.MRDPS := LP_Max_Read_Packet; This.Periph.DSI_CMCR.ARE := Acknowledge_Request; end DSI_Setup_Command; ---------------------------- -- DSI_Setup_Flow_Control -- ---------------------------- procedure DSI_Setup_Flow_Control (This : in out DSI_Host; Flow_Control : DSI_Flow_Control) is begin This.Periph.DSI_PCR := (others => <>); case Flow_Control is when Flow_Control_CRC_RX => This.Periph.DSI_PCR.CRCRXE := True; when Flow_Control_ECC_RX => This.Periph.DSI_PCR.ECCRXE := True; when Flow_Control_BTA => This.Periph.DSI_PCR.BTAE := True; when Flow_Control_EOTP_RX => This.Periph.DSI_PCR.ETRXE := True; when Flow_Control_EOTP_TX => This.Periph.DSI_PCR.ETTXE := True; end case; end DSI_Setup_Flow_Control; --------------- -- DSI_Start -- --------------- procedure DSI_Start (This : in out DSI_Host) is begin -- Enable the DSI Host This.Periph.DSI_CR.EN := True; -- Enable the DSI wrapper This.DSI_Wrapper_Enable; end DSI_Start; -------------- -- DSI_Stop -- -------------- procedure DSI_Stop (This : in out DSI_Host) is begin -- Disable the DSI Host This.Periph.DSI_CR.EN := False; -- Disable the DSI wrapper This.Periph.DSI_WCR.DSIEN := False; end DSI_Stop; ------------------------ -- DSI_Wrapper_Enable -- ------------------------ procedure DSI_Wrapper_Enable (This : in out DSI_Host) is begin This.Periph.DSI_WCR.DSIEN := True; end DSI_Wrapper_Enable; ------------------------- -- DSI_Wrapper_Disable -- ------------------------- procedure DSI_Wrapper_Disable (This : in out DSI_Host) is begin This.Periph.DSI_WCR.DSIEN := False; end DSI_Wrapper_Disable; ----------------- -- DSI_Refresh -- ----------------- procedure DSI_Refresh (This : in out DSI_Host) is begin This.Periph.DSI_WCR.LTDCEN := True; end DSI_Refresh; --------------------- -- DSI_Short_Write -- --------------------- overriding procedure DSI_Short_Write (This : in out DSI_Host; Channel_ID : DSI_Virtual_Channel_ID; Mode : DSI_Short_Write_Packet_Data_Type; Param1 : UInt8; Param2 : UInt8) is Start : Time; begin -- Wait for FIFO empty Start := Clock; while not This.Periph.DSI_GPSR.CMDFE loop if Clock > Start + Milliseconds (1000) then raise Program_Error with "Timeout while waiting for DSI FIFO empty"; end if; end loop; -- Configure the packet to send a short DCS command with 0 or 1 -- parameter This.DSI_Config_Packet_Header (Channel_ID, Mode, Param1, Param2); end DSI_Short_Write; -------------------- -- DSI_Long_Write -- -------------------- overriding procedure DSI_Long_Write (This : in out DSI_Host; Channel_Id : DSI_Virtual_Channel_ID; Mode : DSI_Long_Write_Packet_Data_Type; Param1 : UInt8; Parameters : DSI_Data) is Start : Time; Off : Natural := 0; Value : DSI_GPDR_Register; Val1 : UInt32; Val2 : UInt32; begin -- Wait for FIFO empty Start := Clock; while not This.Periph.DSI_GPSR.CMDFE loop if Clock > Start + Milliseconds (1000) then raise Program_Error with "Timeout while waiting for DSI FIFO empty"; end if; end loop; Value.Arr (Value.Arr'First) := Param1; Off := Value.Arr'First + 1; for Param of Parameters loop Value.Arr (Off) := Param; Off := Off + 1; if Off > Value.Arr'Last then This.Periph.DSI_GPDR := Value; Value.Val := 0; Off := Value.Arr'First; end if; end loop; if Off /= Value.Arr'First then This.Periph.DSI_GPDR := Value; end if; Val1 := UInt32 (Parameters'Length + 1) and 16#FF#; Val2 := Shift_Right (UInt32 (Parameters'Length + 1) and 16#FF00#, 8); This.DSI_Config_Packet_Header (Channel_Id, Mode, UInt8 (Val1), UInt8 (Val2)); end DSI_Long_Write; end STM32.DSI;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1998-2001 Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a AIX (FSU THREADS) 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 Elaborate_Body. -- It is designed to be a bottom-level (leaf) package. with Interfaces.C; package System.OS_Interface is pragma Preelaborate; -- pragma Elaborate_Body; pragma Linker_Options ("-lgthreads"); pragma Linker_Options ("-lmalloc"); subtype int is Interfaces.C.int; 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 := 11; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; ETIMEDOUT : constant := 78; ------------- -- 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 SIGEMT : constant := 7; -- EMT instruction 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 SIGSYS : constant := 12; -- bad argument to system call 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 SIGUSR1 : constant := 30; -- user defined signal 1 SIGUSR2 : constant := 31; -- user defined signal 2 SIGCLD : constant := 20; -- alias for SIGCHLD SIGCHLD : constant := 20; -- child status change SIGPWR : constant := 29; -- power-fail restart SIGWINCH : constant := 28; -- window size change SIGURG : constant := 16; -- urgent condition on IO channel SIGPOLL : constant := 23; -- pollable event occurred SIGIO : constant := 23; -- I/O possible (Solaris SIGPOLL alias) 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 SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGVTALRM : constant := 34; -- virtual timer expired SIGPROF : constant := 32; -- profiling timer expired SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGWAITING : constant := 39; -- m:n scheduling -- the following signals are AIX specific SIGMSG : constant := 27; -- input data is in the ring buffer SIGDANGER : constant := 33; -- system crash imminent SIGMIGRATE : constant := 35; -- migrate process SIGPRE : constant := 36; -- programming exception SIGVIRT : constant := 37; -- AIX virtual time alarm SIGALRM1 : constant := 38; -- m:n condition variables SIGKAP : constant := 60; -- keep alive poll from native keyboard SIGGRANT : constant := SIGKAP; -- monitor mode granted SIGRETRACT : constant := 61; -- monitor mode should be relinguished SIGSOUND : constant := 62; -- sound control has completed SIGSAK : constant := 63; -- secure attention key SIGADAABORT : constant := SIGABRT; type Signal_Set is array (Natural range <>) of Signal; Unmasked : constant Signal_Set := (SIGTRAP, SIGTTIN, SIGTTOU, SIGTSTP, SIGPROF); Reserved : constant Signal_Set := (SIGKILL, SIGSTOP, SIGALRM, SIGWAITING); 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 struct_sigaction is record sa_handler : System.Address; sa_mask : sigset_t; sa_flags : int; end record; pragma Convention (C, struct_sigaction); type struct_sigaction_ptr is access all struct_sigaction; 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, "_internal_sigaction"); ---------- -- Time -- ---------- Time_Slice_Supported : constant Boolean := True; -- Indicates wether time slicing is supported (i.e FSU threads have been -- compiled with DEF_RR) type timespec is private; type clockid_t is private; CLOCK_REALTIME : constant clockid_t; function clock_gettime (clock_id : clockid_t; tp : access timespec) return int; pragma Import (C, clock_gettime, "clock_gettime"); 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); ------------------------- -- Priority Scheduling -- ------------------------- SCHED_FIFO : constant := 0; SCHED_RR : constant := 1; SCHED_OTHER : 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"); --------- -- LWP -- --------- function lwp_self return System.Address; -- lwp_self does not exist on this thread library, revert to pthread_self -- which is the closest approximation (with getpid). This function is -- needed to share 7staprop.adb across POSIX-like targets. pragma Import (C, lwp_self, "pthread_self"); ------------- -- Threads -- ------------- type Thread_Body is access function (arg : System.Address) return System.Address; type pthread_t is private; subtype Thread_Id is 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 -- ----------- Stack_Base_Available : constant Boolean := True; -- Indicates wether the stack base is available on this target. -- This allows us to share s-osinte.adb between all the FSU run time. -- Note that this value can only be true if pthread_t has a complete -- definition that corresponds exactly to the C header files. function Get_Stack_Base (thread : pthread_t) return Address; pragma Inline (Get_Stack_Base); -- returns the stack base of the specified thread. -- Only call this function when Stack_Base_Available is True. function Get_Page_Size return size_t; function Get_Page_Size return Address; pragma Import (C, Get_Page_Size, "getpagesize"); -- returns the size of a page, or 0 if this is not relevant on this -- target PROT_NONE : constant := 0; PROT_READ : constant := 1; PROT_WRITE : constant := 2; PROT_EXEC : constant := 4; PROT_ALL : constant := PROT_READ + PROT_WRITE + PROT_EXEC; PROT_ON : constant := PROT_READ; PROT_OFF : constant := PROT_ALL; function mprotect (addr : Address; len : size_t; prot : int) return int; pragma Import (C, mprotect); --------------------------------------- -- Nonstandard Thread Initialization -- --------------------------------------- procedure pthread_init; -- FSU_THREADS requires pthread_init, which is nonstandard -- and this should be invoked during the elaboration of s-taprop.adb pragma Import (C, pthread_init, "pthread_init"); ------------------------- -- POSIX.1c Section 3 -- ------------------------- function sigwait (set : access sigset_t; sig : access Signal) return int; -- FSU_THREADS has a nonstandard sigwait function pthread_kill (thread : pthread_t; sig : Signal) return int; pragma Import (C, pthread_kill, "pthread_kill"); -- FSU threads does not have pthread_sigmask. Instead, it redefines -- sigprocmask and then uses a special syscall API to call the system -- version. Doing syscalls on AiX is very difficult, so we rename the -- pthread version instead. type sigset_t_ptr is access all sigset_t; function pthread_sigmask (how : int; set : sigset_t_ptr; oset : sigset_t_ptr) return int; pragma Import (C, pthread_sigmask, "_internal_sigprocmask"); -------------------------- -- 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; -- FSU_THREADS has nonstandard pthread_mutex_lock function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int; -- FSU_THREADS has nonstandard pthread_mutex_lock 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; -- FSU_THREADS has a nonstandard pthread_cond_wait function pthread_cond_timedwait (cond : access pthread_cond_t; mutex : access pthread_mutex_t; abstime : access timespec) return int; -- FSU_THREADS has a nonstandard pthread_cond_timedwait Relative_Timed_Wait : constant Boolean := False; -- pthread_cond_timedwait requires an absolute delay time -------------------------- -- POSIX.1c Section 13 -- -------------------------- PTHREAD_PRIO_NONE : constant := 0; PTHREAD_PRIO_PROTECT : constant := 2; PTHREAD_PRIO_INHERIT : constant := 1; function pthread_mutexattr_setprotocol (attr : access pthread_mutexattr_t; protocol : int) return int; pragma Import (C, pthread_mutexattr_setprotocol); function pthread_mutexattr_setprioceiling (attr : access pthread_mutexattr_t; prioceiling : int) return int; pragma Import (C, pthread_mutexattr_setprioceiling, "pthread_mutexattr_setprio_ceiling"); type struct_sched_param is record sched_priority : int; -- scheduling priority end record; function pthread_setschedparam (thread : pthread_t; policy : int; param : access struct_sched_param) return int; -- FSU_THREADS does not have pthread_setschedparam function pthread_attr_setscope (attr : access pthread_attr_t; contentionscope : int) return int; pragma Import (C, pthread_attr_setscope, "pthread_attr_setscope"); function pthread_attr_setinheritsched (attr : access pthread_attr_t; inheritsched : int) return int; pragma Import (C, pthread_attr_setinheritsched); function pthread_attr_setschedpolicy (attr : access pthread_attr_t; policy : int) return int; pragma Import (C, pthread_attr_setschedpolicy, "pthread_attr_setsched"); function sched_yield return int; -- FSU_THREADS does not have 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; -- FSU_THREADS has a nonstandard pthread_attr_setdetachstate function pthread_attr_setstacksize (attr : access pthread_attr_t; stacksize : size_t) return int; pragma Import (C, 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; -- FSU_THREADS has a nonstandard 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 losigs : unsigned_long; hisigs : unsigned_long; end record; pragma Convention (C_Pass_By_Copy, 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 clockid_t is new int; CLOCK_REALTIME : constant clockid_t := 0; type struct_timeval is record tv_sec : long; tv_usec : long; end record; pragma Convention (C, struct_timeval); type pthread_attr_t is record flags : int; stacksize : int; contentionscope : int; inheritsched : int; detachstate : int; sched : int; prio : int; starttime : timespec; deadline : timespec; period : timespec; end record; pragma Convention (C_Pass_By_Copy, pthread_attr_t); type pthread_condattr_t is record flags : int; end record; pragma Convention (C, pthread_condattr_t); type pthread_mutexattr_t is record flags : int; prio_ceiling : int; protocol : int; end record; pragma Convention (C, pthread_mutexattr_t); type sigjmp_buf is array (Integer range 0 .. 63) of int; type pthread_t_struct is record context : sigjmp_buf; pbody : sigjmp_buf; errno : int; ret : int; stack_base : System.Address; end record; pragma Convention (C, pthread_t_struct); type pthread_t is access all pthread_t_struct; type queue_t is record head : System.Address; tail : System.Address; end record; pragma Convention (C, queue_t); type pthread_mutex_t is record queue : queue_t; lock : plain_char; owner : System.Address; flags : int; prio_ceiling : int; protocol : int; prev_max_ceiling_prio : int; end record; pragma Convention (C, pthread_mutex_t); type pthread_cond_t is record queue : queue_t; flags : int; waiters : int; mutex : System.Address; end record; pragma Convention (C, pthread_cond_t); type pthread_key_t is new int; end System.OS_Interface;
-- { dg-do compile } procedure Bad_Array is A1 : array(Character range <> ) of Character := ( 'a', 'b', 'c' ); begin null; end Bad_Array;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with umingw_h; package ctype_h is -- unsupported macro: isascii __isascii -- unsupported macro: toascii __toascii -- unsupported macro: iscsymf __iscsymf -- unsupported macro: iscsym __iscsym -- skipped func _isctype -- skipped func _isctype_l function isalpha (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:102 pragma Import (C, isalpha, "isalpha"); -- skipped func _isalpha_l function isupper (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:104 pragma Import (C, isupper, "isupper"); -- skipped func _isupper_l function islower (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:106 pragma Import (C, islower, "islower"); -- skipped func _islower_l function isdigit (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:108 pragma Import (C, isdigit, "isdigit"); -- skipped func _isdigit_l function isxdigit (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:110 pragma Import (C, isxdigit, "isxdigit"); -- skipped func _isxdigit_l function isspace (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:112 pragma Import (C, isspace, "isspace"); -- skipped func _isspace_l function ispunct (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:114 pragma Import (C, ispunct, "ispunct"); -- skipped func _ispunct_l function isalnum (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:116 pragma Import (C, isalnum, "isalnum"); -- skipped func _isalnum_l function isprint (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:118 pragma Import (C, isprint, "isprint"); -- skipped func _isprint_l function isgraph (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:120 pragma Import (C, isgraph, "isgraph"); -- skipped func _isgraph_l function iscntrl (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:122 pragma Import (C, iscntrl, "iscntrl"); -- skipped func _iscntrl_l function toupper (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:124 pragma Import (C, toupper, "toupper"); function tolower (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:125 pragma Import (C, tolower, "tolower"); -- skipped func _tolower -- skipped func _tolower_l -- skipped func _toupper -- skipped func _toupper_l function isblank (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:136 pragma Import (C, isblank, "isblank"); function iswalpha (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:143 pragma Import (C, iswalpha, "iswalpha"); -- skipped func _iswalpha_l function iswupper (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:145 pragma Import (C, iswupper, "iswupper"); -- skipped func _iswupper_l function iswlower (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:147 pragma Import (C, iswlower, "iswlower"); -- skipped func _iswlower_l function iswdigit (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:149 pragma Import (C, iswdigit, "iswdigit"); -- skipped func _iswdigit_l function iswxdigit (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:151 pragma Import (C, iswxdigit, "iswxdigit"); -- skipped func _iswxdigit_l function iswspace (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:153 pragma Import (C, iswspace, "iswspace"); -- skipped func _iswspace_l function iswpunct (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:155 pragma Import (C, iswpunct, "iswpunct"); -- skipped func _iswpunct_l function iswalnum (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:157 pragma Import (C, iswalnum, "iswalnum"); -- skipped func _iswalnum_l function iswprint (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:159 pragma Import (C, iswprint, "iswprint"); -- skipped func _iswprint_l function iswgraph (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:161 pragma Import (C, iswgraph, "iswgraph"); -- skipped func _iswgraph_l function iswcntrl (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:163 pragma Import (C, iswcntrl, "iswcntrl"); -- skipped func _iswcntrl_l function iswascii (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:165 pragma Import (C, iswascii, "iswascii"); function isleadbyte (u_C : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:166 pragma Import (C, isleadbyte, "isleadbyte"); -- skipped func _isleadbyte_l function towupper (u_C : umingw_h.wint_t) return umingw_h.wint_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:168 pragma Import (C, towupper, "towupper"); -- skipped func _towupper_l function towlower (u_C : umingw_h.wint_t) return umingw_h.wint_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:170 pragma Import (C, towlower, "towlower"); -- skipped func _towlower_l function iswctype (u_C : umingw_h.wint_t; u_Type : umingw_h.wctype_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:172 pragma Import (C, iswctype, "iswctype"); -- skipped func _iswctype_l -- skipped func _iswcsymf_l -- skipped func _iswcsym_l function is_wctype (u_C : umingw_h.wint_t; u_Type : umingw_h.wctype_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:178 pragma Import (C, is_wctype, "is_wctype"); function iswblank (u_C : umingw_h.wint_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/ctype.h:181 pragma Import (C, iswblank, "iswblank"); end ctype_h;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S E R I A L _ C O M M U N I C A T I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2007-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Serial communications package, implemented on Windows and GNU/Linux with Ada.Streams; with Interfaces.C; with System.OS_Constants; package GNAT.Serial_Communications is -- Following is a simple example of using GNAT.Serial_Communications. -- -- with Ada.Streams; -- with GNAT.Serial_Communications; -- -- procedure Serial is -- use Ada.Streams; -- use GNAT; -- -- subtype Message is Stream_Element_Array (1 .. 20); -- -- Data : constant String (1 .. 20) := "ABCDEFGHIJLKMNOPQRST"; -- Buffer : Message; -- -- S_Port : constant Natural := 5; -- -- Serial port number -- -- begin -- -- Convert message (String -> Stream_Element_Array) -- -- for K in Data'Range loop -- Buffer (Stream_Element_Offset (K)) := Character'Pos (Data (K)); -- end loop; -- -- declare -- Port_Name : constant Serial_Communications.Port_Name := -- Serial_Communications.Name (Number => S_Port); -- Port : Serial_Communications.Serial_Port; -- -- begin -- Serial_Communications.Open -- (Port => Port, -- Name => Port_Name); -- -- Serial_Communications.Set -- (Port => Port, -- Rate => Serial_Communications.B9600, -- Bits => Serial_Communications.CS8, -- Stop_Bits => Serial_Communications.One, -- Parity => Serial_Communications.Even); -- -- Serial_Communications.Write -- (Port => Port, -- Buffer => Buffer); -- -- Serial_Communications.Close -- (Port => Port); -- end; -- end Serial; Serial_Error : exception; -- Raised when a communication problem occurs type Port_Name is new String; -- A serial com port name function Name (Number : Positive) return Port_Name; -- Returns a possible port name for the given legacy PC architecture serial -- port number (COM<number>: on Windows, ttyS<number-1> on Linux). -- Note that this function does not support other kinds of serial ports -- nor operating systems other than Windows and Linux. For all other -- cases, an explicit port name can be passed directly to Open. type Data_Rate is (B75, B110, B150, B300, B600, B1200, B2400, B4800, B9600, B19200, B38400, B57600, B115200, B230400, B460800, B500000, B576000, B921600, B1000000, B1152000, B1500000, B2000000, B2500000, B3000000, B3500000, B4000000); -- Speed of the communication type Data_Bits is (CS8, CS7); -- Communication bits type Stop_Bits_Number is (One, Two); -- One or two stop bits type Parity_Check is (None, Even, Odd); -- Either no parity check or an even or odd parity type Flow_Control is (None, RTS_CTS, Xon_Xoff); -- No flow control, hardware flow control, software flow control type Serial_Port is new Ada.Streams.Root_Stream_Type with private; -- Serial port stream type type Serial_Port_Descriptor is new System.OS_Constants.Serial_Port_Descriptor; -- OS specific serial port descriptor procedure Open (Port : out Serial_Port; Name : Port_Name); -- Open the given port name. Raises Serial_Error if the port cannot be -- opened. procedure Set (Port : Serial_Port; Rate : Data_Rate := B9600; Bits : Data_Bits := CS8; Stop_Bits : Stop_Bits_Number := One; Parity : Parity_Check := None; Block : Boolean := True; Local : Boolean := True; Flow : Flow_Control := None; Timeout : Duration := 10.0); -- The communication port settings. If Block is set then a read call -- will wait for the whole buffer to be filed. If Block is not set then -- the given Timeout (in seconds) is used. If Local is set then modem -- control lines (in particular DCD) are ignored (not supported on -- Windows). Flow indicates the flow control type as defined above. -- Note: the timeout precision may be limited on some implementation -- (e.g. on GNU/Linux the maximum precision is a tenth of seconds). -- Note: calling this procedure may reinitialize the serial port hardware -- and thus cause loss of some buffered data if used during communication. overriding procedure Read (Port : in out Serial_Port; Buffer : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Read a set of bytes, put result into Buffer and set Last accordingly. -- Last is set to Buffer'First - 1 if no byte has been read, unless -- Buffer'First = Stream_Element_Offset'First, in which case the exception -- Constraint_Error is raised instead. overriding procedure Write (Port : in out Serial_Port; Buffer : Ada.Streams.Stream_Element_Array); -- Write buffer into the port procedure Close (Port : in out Serial_Port); -- Close port procedure To_Ada (Port : out Serial_Port; Fd : Serial_Port_Descriptor) with Inline; -- Convert a serial port descriptor to Serial_Port. This is useful when a -- serial port descriptor is obtained from an external library call. function To_C (Port : Serial_Port) return Serial_Port_Descriptor with Inline; -- Return a serial port descriptor to be used by external subprograms. -- This is useful for C functions that are not yet interfaced in this -- package. private type Serial_Port is new Ada.Streams.Root_Stream_Type with record H : Serial_Port_Descriptor := -1; end record; Data_Rate_Value : constant array (Data_Rate) of Interfaces.C.unsigned := (B75 => 75, B110 => 110, B150 => 150, B300 => 300, B600 => 600, B1200 => 1_200, B2400 => 2_400, B4800 => 4_800, B9600 => 9_600, B19200 => 19_200, B38400 => 38_400, B57600 => 57_600, B115200 => 115_200, B230400 => 230_400, B460800 => 460_800, B500000 => 500_000, B576000 => 576_000, B921600 => 921_600, B1000000 => 1_000_000, B1152000 => 1_152_000, B1500000 => 1_500_000, B2000000 => 2_000_000, B2500000 => 2_500_000, B3000000 => 3_000_000, B3500000 => 3_500_000, B4000000 => 4_000_000); function To_C (Port : Serial_Port) return Serial_Port_Descriptor is (Port.H); end GNAT.Serial_Communications;
<?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>relu_array_array_ap_fixed_32u_relu_config13_s</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>64</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_data_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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>data_V_data_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>data_V_data_2_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[2].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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>data_V_data_3_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[3].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>data_V_data_4_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[4].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>data_V_data_5_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[5].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>data_V_data_6_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[6].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>data_V_data_7_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[7].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>data_V_data_8_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[8].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>data_V_data_9_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[9].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>data_V_data_10_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[10].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>data_V_data_11_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[11].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>data_V_data_12_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[12].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_14"> <Value> <Obj> <type>1</type> <id>14</id> <name>data_V_data_13_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[13].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_15"> <Value> <Obj> <type>1</type> <id>15</id> <name>data_V_data_14_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[14].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_16"> <Value> <Obj> <type>1</type> <id>16</id> <name>data_V_data_15_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[15].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_17"> <Value> <Obj> <type>1</type> <id>17</id> <name>data_V_data_16_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[16].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_18"> <Value> <Obj> <type>1</type> <id>18</id> <name>data_V_data_17_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[17].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_19"> <Value> <Obj> <type>1</type> <id>19</id> <name>data_V_data_18_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[18].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_20"> <Value> <Obj> <type>1</type> <id>20</id> <name>data_V_data_19_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[19].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_21"> <Value> <Obj> <type>1</type> <id>21</id> <name>data_V_data_20_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[20].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_22"> <Value> <Obj> <type>1</type> <id>22</id> <name>data_V_data_21_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[21].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_23"> <Value> <Obj> <type>1</type> <id>23</id> <name>data_V_data_22_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[22].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_24"> <Value> <Obj> <type>1</type> <id>24</id> <name>data_V_data_23_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[23].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_25"> <Value> <Obj> <type>1</type> <id>25</id> <name>data_V_data_24_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[24].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_26"> <Value> <Obj> <type>1</type> <id>26</id> <name>data_V_data_25_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[25].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_27"> <Value> <Obj> <type>1</type> <id>27</id> <name>data_V_data_26_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[26].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_28"> <Value> <Obj> <type>1</type> <id>28</id> <name>data_V_data_27_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[27].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_29"> <Value> <Obj> <type>1</type> <id>29</id> <name>data_V_data_28_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[28].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_30"> <Value> <Obj> <type>1</type> <id>30</id> <name>data_V_data_29_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[29].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_31"> <Value> <Obj> <type>1</type> <id>31</id> <name>data_V_data_30_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[30].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_32"> <Value> <Obj> <type>1</type> <id>32</id> <name>data_V_data_31_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[31].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</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="_33"> <Value> <Obj> <type>1</type> <id>33</id> <name>res_V_data_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_34"> <Value> <Obj> <type>1</type> <id>34</id> <name>res_V_data_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_35"> <Value> <Obj> <type>1</type> <id>35</id> <name>res_V_data_2_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[2].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_36"> <Value> <Obj> <type>1</type> <id>36</id> <name>res_V_data_3_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[3].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_37"> <Value> <Obj> <type>1</type> <id>37</id> <name>res_V_data_4_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[4].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_38"> <Value> <Obj> <type>1</type> <id>38</id> <name>res_V_data_5_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[5].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_39"> <Value> <Obj> <type>1</type> <id>39</id> <name>res_V_data_6_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[6].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_40"> <Value> <Obj> <type>1</type> <id>40</id> <name>res_V_data_7_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[7].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_41"> <Value> <Obj> <type>1</type> <id>41</id> <name>res_V_data_8_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[8].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_42"> <Value> <Obj> <type>1</type> <id>42</id> <name>res_V_data_9_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[9].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_43"> <Value> <Obj> <type>1</type> <id>43</id> <name>res_V_data_10_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[10].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_44"> <Value> <Obj> <type>1</type> <id>44</id> <name>res_V_data_11_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[11].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_45"> <Value> <Obj> <type>1</type> <id>45</id> <name>res_V_data_12_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[12].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_46"> <Value> <Obj> <type>1</type> <id>46</id> <name>res_V_data_13_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[13].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_47"> <Value> <Obj> <type>1</type> <id>47</id> <name>res_V_data_14_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[14].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_48"> <Value> <Obj> <type>1</type> <id>48</id> <name>res_V_data_15_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[15].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_49"> <Value> <Obj> <type>1</type> <id>49</id> <name>res_V_data_16_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[16].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_50"> <Value> <Obj> <type>1</type> <id>50</id> <name>res_V_data_17_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[17].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_51"> <Value> <Obj> <type>1</type> <id>51</id> <name>res_V_data_18_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[18].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_52"> <Value> <Obj> <type>1</type> <id>52</id> <name>res_V_data_19_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[19].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_53"> <Value> <Obj> <type>1</type> <id>53</id> <name>res_V_data_20_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[20].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_54"> <Value> <Obj> <type>1</type> <id>54</id> <name>res_V_data_21_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[21].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_55"> <Value> <Obj> <type>1</type> <id>55</id> <name>res_V_data_22_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[22].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_56"> <Value> <Obj> <type>1</type> <id>56</id> <name>res_V_data_23_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[23].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_57"> <Value> <Obj> <type>1</type> <id>57</id> <name>res_V_data_24_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[24].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_58"> <Value> <Obj> <type>1</type> <id>58</id> <name>res_V_data_25_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[25].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_59"> <Value> <Obj> <type>1</type> <id>59</id> <name>res_V_data_26_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[26].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_60"> <Value> <Obj> <type>1</type> <id>60</id> <name>res_V_data_27_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[27].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_61"> <Value> <Obj> <type>1</type> <id>61</id> <name>res_V_data_28_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[28].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_62"> <Value> <Obj> <type>1</type> <id>62</id> <name>res_V_data_29_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[29].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_63"> <Value> <Obj> <type>1</type> <id>63</id> <name>res_V_data_30_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[30].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_64"> <Value> <Obj> <type>1</type> <id>64</id> <name>res_V_data_31_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[31].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>361</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_65"> <Value> <Obj> <type>0</type> <id>129</id> <name>_ln60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</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_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>60</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>499</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>131</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>501</item> <item>502</item> <item>503</item> <item>504</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>132</id> <name>icmp_ln60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>60</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>505</item> <item>507</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.48</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>134</id> <name>i</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>508</item> <item>510</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.87</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>135</id> <name>_ln60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>60</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>511</item> <item>512</item> <item>513</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>140</id> <name>empty_65</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>288</bitwidth> </Value> <oprand_edges> <count>33</count> <item_version>0</item_version> <item>515</item> <item>516</item> <item>517</item> <item>518</item> <item>519</item> <item>520</item> <item>521</item> <item>522</item> <item>523</item> <item>524</item> <item>525</item> <item>526</item> <item>527</item> <item>528</item> <item>529</item> <item>530</item> <item>531</item> <item>532</item> <item>533</item> <item>534</item> <item>535</item> <item>536</item> <item>537</item> <item>538</item> <item>539</item> <item>540</item> <item>541</item> <item>542</item> <item>543</item> <item>544</item> <item>545</item> <item>546</item> <item>547</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.63</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>141</id> <name>tmp_data_V_0</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>548</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>142</id> <name>tmp_data_V_1</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>549</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>143</id> <name>tmp_data_V_2</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>550</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>144</id> <name>tmp_data_V_3</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>551</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>145</id> <name>tmp_data_V_4</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>552</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_data_V_5</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>553</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>147</id> <name>tmp_data_V_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>554</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>148</id> <name>tmp_data_V_7</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>555</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>149</id> <name>tmp_data_V_8</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>556</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>150</id> <name>tmp_data_V_9</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>557</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>151</id> <name>tmp_data_V_10</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>558</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>152</id> <name>tmp_data_V_11</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>559</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>153</id> <name>tmp_data_V_12</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>560</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>154</id> <name>tmp_data_V_13</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>561</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>155</id> <name>tmp_data_V_14</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>562</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>156</id> <name>tmp_data_V_15</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>563</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>157</id> <name>tmp_data_V_16</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>564</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>158</id> <name>tmp_data_V_17</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>565</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>159</id> <name>tmp_data_V_18</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>566</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>160</id> <name>tmp_data_V_19</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>567</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>161</id> <name>tmp_data_V_2038</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>568</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>162</id> <name>tmp_data_V_21</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>569</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>163</id> <name>tmp_data_V_22</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>570</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>164</id> <name>tmp_data_V_23</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>571</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>165</id> <name>tmp_data_V_24</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>572</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>166</id> <name>tmp_data_V_25</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>573</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>167</id> <name>tmp_data_V_26</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>574</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp_data_V_27</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>575</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_data_V_28</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>576</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>170</id> <name>tmp_data_V_29</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>577</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>171</id> <name>tmp_data_V_30</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>578</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>172</id> <name>tmp_data_V_31</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>579</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>173</id> <name>icmp_ln1494</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>580</item> <item>582</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.66</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>174</id> <name>trunc_ln746</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>583</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>40</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>175</id> <name>trunc_ln</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>585</item> <item>586</item> <item>588</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>41</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>176</id> <name>tmp_37</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>590</item> <item>591</item> <item>593</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>42</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>177</id> <name>p_Result_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>595</item> <item>596</item> <item>598</item> <item>600</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>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>178</id> <name>icmp_ln785</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>601</item> <item>603</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>179</id> <name>or_ln785</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>604</item> <item>605</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>45</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>180</id> <name>select_ln785</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>606</item> <item>608</item> <item>609</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>46</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>181</id> <name>tmp_data_0_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>610</item> <item>611</item> <item>612</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.99</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>182</id> <name>zext_ln1494</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>613</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>327</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>183</id> <name>icmp_ln1494_1</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>614</item> <item>615</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.66</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>184</id> <name>trunc_ln746_62</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>616</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>49</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>185</id> <name>trunc_ln746_s</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>617</item> <item>618</item> <item>619</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>50</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>186</id> <name>tmp_38</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>620</item> <item>621</item> <item>622</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>51</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>187</id> <name>p_Result_6_1</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>623</item> <item>624</item> <item>625</item> <item>626</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>188</id> <name>icmp_ln785_1</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>627</item> <item>628</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>189</id> <name>or_ln785_1</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>629</item> <item>630</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>54</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>190</id> <name>select_ln785_35</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>631</item> <item>632</item> <item>633</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="_121"> <Value> <Obj> <type>0</type> <id>191</id> <name>tmp_data_1_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>634</item> <item>635</item> <item>636</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.99</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>192</id> <name>zext_ln1494_35</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>637</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>328</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>193</id> <name>icmp_ln1494_2</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>638</item> <item>639</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.66</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>194</id> <name>trunc_ln746_63</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>640</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>58</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>195</id> <name>trunc_ln746_31</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>641</item> <item>642</item> <item>643</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>59</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>196</id> <name>tmp_39</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>644</item> <item>645</item> <item>646</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>60</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>197</id> <name>p_Result_6_2</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>647</item> <item>648</item> <item>649</item> <item>650</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>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>198</id> <name>icmp_ln785_2</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>651</item> <item>652</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>199</id> <name>or_ln785_2</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>653</item> <item>654</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>63</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>200</id> <name>select_ln785_36</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>655</item> <item>656</item> <item>657</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="_131"> <Value> <Obj> <type>0</type> <id>201</id> <name>tmp_data_2_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[2].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>658</item> <item>659</item> <item>660</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.99</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>202</id> <name>zext_ln1494_36</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>661</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>329</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>203</id> <name>icmp_ln1494_3</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>662</item> <item>663</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.66</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>204</id> <name>trunc_ln746_64</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>664</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>67</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>205</id> <name>trunc_ln746_32</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>665</item> <item>666</item> <item>667</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>68</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>206</id> <name>tmp_40</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>668</item> <item>669</item> <item>670</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>69</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>207</id> <name>p_Result_6_3</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>671</item> <item>672</item> <item>673</item> <item>674</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>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>208</id> <name>icmp_ln785_3</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>675</item> <item>676</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>209</id> <name>or_ln785_3</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>677</item> <item>678</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>72</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>210</id> <name>select_ln785_37</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>679</item> <item>680</item> <item>681</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>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>211</id> <name>tmp_data_3_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[3].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>682</item> <item>683</item> <item>684</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.99</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>212</id> <name>zext_ln1494_37</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>685</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>330</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>213</id> <name>icmp_ln1494_4</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>686</item> <item>687</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.66</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>214</id> <name>trunc_ln746_65</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>688</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>76</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>215</id> <name>trunc_ln746_33</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>689</item> <item>690</item> <item>691</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>77</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>216</id> <name>tmp_41</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>692</item> <item>693</item> <item>694</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>78</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>217</id> <name>p_Result_6_4</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>695</item> <item>696</item> <item>697</item> <item>698</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>218</id> <name>icmp_ln785_4</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>699</item> <item>700</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>219</id> <name>or_ln785_4</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>701</item> <item>702</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>81</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>220</id> <name>select_ln785_38</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>703</item> <item>704</item> <item>705</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>82</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>221</id> <name>tmp_data_4_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[4].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>706</item> <item>707</item> <item>708</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.99</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>222</id> <name>zext_ln1494_38</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>709</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>331</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>223</id> <name>icmp_ln1494_5</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>710</item> <item>711</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.66</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>224</id> <name>trunc_ln746_66</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>712</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>85</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>225</id> <name>trunc_ln746_34</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>713</item> <item>714</item> <item>715</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>86</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>226</id> <name>tmp_42</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>716</item> <item>717</item> <item>718</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>87</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>227</id> <name>p_Result_6_5</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>719</item> <item>720</item> <item>721</item> <item>722</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>228</id> <name>icmp_ln785_5</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>723</item> <item>724</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>229</id> <name>or_ln785_5</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>725</item> <item>726</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>90</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>230</id> <name>select_ln785_39</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>727</item> <item>728</item> <item>729</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>91</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>231</id> <name>tmp_data_5_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[5].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>730</item> <item>731</item> <item>732</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.99</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>232</id> <name>zext_ln1494_39</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>733</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>332</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>233</id> <name>icmp_ln1494_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>734</item> <item>735</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.66</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>234</id> <name>trunc_ln746_67</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>736</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>94</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>235</id> <name>trunc_ln746_35</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>737</item> <item>738</item> <item>739</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>95</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>236</id> <name>tmp_43</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>740</item> <item>741</item> <item>742</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>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>237</id> <name>p_Result_6_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>743</item> <item>744</item> <item>745</item> <item>746</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>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>238</id> <name>icmp_ln785_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>747</item> <item>748</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>239</id> <name>or_ln785_6</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>749</item> <item>750</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>99</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>240</id> <name>select_ln785_40</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>751</item> <item>752</item> <item>753</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>100</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>241</id> <name>tmp_data_6_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[6].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>754</item> <item>755</item> <item>756</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.99</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>242</id> <name>zext_ln1494_40</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>757</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>333</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>243</id> <name>icmp_ln1494_7</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>758</item> <item>759</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.66</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>244</id> <name>trunc_ln746_68</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>760</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>103</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>245</id> <name>trunc_ln746_36</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>761</item> <item>762</item> <item>763</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>104</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>246</id> <name>tmp_44</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>764</item> <item>765</item> <item>766</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>105</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>247</id> <name>p_Result_6_7</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>767</item> <item>768</item> <item>769</item> <item>770</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>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>248</id> <name>icmp_ln785_7</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>771</item> <item>772</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>249</id> <name>or_ln785_7</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>773</item> <item>774</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>108</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>250</id> <name>select_ln785_41</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>775</item> <item>776</item> <item>777</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>109</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>251</id> <name>tmp_data_7_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[7].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>778</item> <item>779</item> <item>780</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.99</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>252</id> <name>zext_ln1494_41</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>781</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>334</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>253</id> <name>icmp_ln1494_8</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>782</item> <item>783</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.66</m_delay> <m_topoIndex>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>254</id> <name>trunc_ln746_69</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>784</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>112</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>255</id> <name>trunc_ln746_37</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>785</item> <item>786</item> <item>787</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>256</id> <name>tmp_45</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>788</item> <item>789</item> <item>790</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>114</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>257</id> <name>p_Result_6_8</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>791</item> <item>792</item> <item>793</item> <item>794</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>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>258</id> <name>icmp_ln785_8</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>795</item> <item>796</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>259</id> <name>or_ln785_8</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>797</item> <item>798</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>117</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>260</id> <name>select_ln785_42</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>799</item> <item>800</item> <item>801</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>118</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>261</id> <name>tmp_data_8_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[8].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>802</item> <item>803</item> <item>804</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.99</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>262</id> <name>zext_ln1494_42</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>805</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>335</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>263</id> <name>icmp_ln1494_9</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>806</item> <item>807</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.66</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>264</id> <name>trunc_ln746_70</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>808</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>121</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>265</id> <name>trunc_ln746_38</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>809</item> <item>810</item> <item>811</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>122</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>266</id> <name>tmp_46</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>812</item> <item>813</item> <item>814</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>123</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>267</id> <name>p_Result_6_9</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>815</item> <item>816</item> <item>817</item> <item>818</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>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>268</id> <name>icmp_ln785_9</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>819</item> <item>820</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>269</id> <name>or_ln785_9</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>821</item> <item>822</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>126</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>270</id> <name>select_ln785_43</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>823</item> <item>824</item> <item>825</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>127</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>271</id> <name>tmp_data_9_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[9].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>826</item> <item>827</item> <item>828</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.99</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>272</id> <name>zext_ln1494_43</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>829</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>336</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>273</id> <name>icmp_ln1494_10</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>830</item> <item>831</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.66</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>274</id> <name>trunc_ln746_71</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>832</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>130</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>275</id> <name>trunc_ln746_39</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>833</item> <item>834</item> <item>835</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>131</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>276</id> <name>tmp_47</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>836</item> <item>837</item> <item>838</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>132</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>277</id> <name>p_Result_6_s</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>839</item> <item>840</item> <item>841</item> <item>842</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>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>278</id> <name>icmp_ln785_10</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>843</item> <item>844</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>279</id> <name>or_ln785_10</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>845</item> <item>846</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>135</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>280</id> <name>select_ln785_44</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>847</item> <item>848</item> <item>849</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>136</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>281</id> <name>tmp_data_10_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[10].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>850</item> <item>851</item> <item>852</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.99</m_delay> <m_topoIndex>137</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>282</id> <name>zext_ln1494_44</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>853</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>337</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>283</id> <name>icmp_ln1494_11</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>854</item> <item>855</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.66</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>284</id> <name>trunc_ln746_72</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>856</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>139</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>285</id> <name>trunc_ln746_40</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>857</item> <item>858</item> <item>859</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>140</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>286</id> <name>tmp_48</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>860</item> <item>861</item> <item>862</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>141</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>287</id> <name>p_Result_6_10</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>863</item> <item>864</item> <item>865</item> <item>866</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>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>288</id> <name>icmp_ln785_11</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>867</item> <item>868</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>289</id> <name>or_ln785_11</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>869</item> <item>870</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>144</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>290</id> <name>select_ln785_45</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>871</item> <item>872</item> <item>873</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>145</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>291</id> <name>tmp_data_11_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[11].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>874</item> <item>875</item> <item>876</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.99</m_delay> <m_topoIndex>146</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>292</id> <name>zext_ln1494_45</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>877</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>338</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>293</id> <name>icmp_ln1494_12</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>878</item> <item>879</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.66</m_delay> <m_topoIndex>147</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>294</id> <name>trunc_ln746_73</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>880</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>148</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>295</id> <name>trunc_ln746_41</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>881</item> <item>882</item> <item>883</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>149</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>296</id> <name>tmp_49</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>884</item> <item>885</item> <item>886</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>150</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>297</id> <name>p_Result_6_11</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>887</item> <item>888</item> <item>889</item> <item>890</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>151</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>298</id> <name>icmp_ln785_12</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>891</item> <item>892</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>152</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>299</id> <name>or_ln785_12</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>893</item> <item>894</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>153</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>300</id> <name>select_ln785_46</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>895</item> <item>896</item> <item>897</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>154</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>301</id> <name>tmp_data_12_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[12].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>898</item> <item>899</item> <item>900</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.99</m_delay> <m_topoIndex>155</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>302</id> <name>zext_ln1494_46</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>901</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>339</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>303</id> <name>icmp_ln1494_13</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>902</item> <item>903</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.66</m_delay> <m_topoIndex>156</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>304</id> <name>trunc_ln746_74</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>904</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>157</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>305</id> <name>trunc_ln746_42</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>905</item> <item>906</item> <item>907</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>158</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>306</id> <name>tmp_50</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>908</item> <item>909</item> <item>910</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>159</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>307</id> <name>p_Result_6_12</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>911</item> <item>912</item> <item>913</item> <item>914</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>160</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>308</id> <name>icmp_ln785_13</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>915</item> <item>916</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>161</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>309</id> <name>or_ln785_13</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>917</item> <item>918</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>162</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>310</id> <name>select_ln785_47</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>919</item> <item>920</item> <item>921</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>163</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>311</id> <name>tmp_data_13_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[13].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>922</item> <item>923</item> <item>924</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.99</m_delay> <m_topoIndex>164</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>312</id> <name>zext_ln1494_47</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>925</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>340</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>313</id> <name>icmp_ln1494_14</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>926</item> <item>927</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.66</m_delay> <m_topoIndex>165</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>314</id> <name>trunc_ln746_75</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>928</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>166</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>315</id> <name>trunc_ln746_43</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>929</item> <item>930</item> <item>931</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>167</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>316</id> <name>tmp_51</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>932</item> <item>933</item> <item>934</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>168</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>317</id> <name>p_Result_6_13</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>935</item> <item>936</item> <item>937</item> <item>938</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>169</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>318</id> <name>icmp_ln785_14</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>939</item> <item>940</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>170</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_249"> <Value> <Obj> <type>0</type> <id>319</id> <name>or_ln785_14</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>941</item> <item>942</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>171</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_250"> <Value> <Obj> <type>0</type> <id>320</id> <name>select_ln785_48</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>943</item> <item>944</item> <item>945</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>172</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_251"> <Value> <Obj> <type>0</type> <id>321</id> <name>tmp_data_14_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[14].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>946</item> <item>947</item> <item>948</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.99</m_delay> <m_topoIndex>173</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_252"> <Value> <Obj> <type>0</type> <id>322</id> <name>zext_ln1494_48</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>949</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>341</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_253"> <Value> <Obj> <type>0</type> <id>323</id> <name>icmp_ln1494_15</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>950</item> <item>951</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.66</m_delay> <m_topoIndex>174</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_254"> <Value> <Obj> <type>0</type> <id>324</id> <name>trunc_ln746_76</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>952</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>175</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_255"> <Value> <Obj> <type>0</type> <id>325</id> <name>trunc_ln746_44</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>953</item> <item>954</item> <item>955</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>176</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_256"> <Value> <Obj> <type>0</type> <id>326</id> <name>tmp_52</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>956</item> <item>957</item> <item>958</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>177</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_257"> <Value> <Obj> <type>0</type> <id>327</id> <name>p_Result_6_14</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>959</item> <item>960</item> <item>961</item> <item>962</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>178</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_258"> <Value> <Obj> <type>0</type> <id>328</id> <name>icmp_ln785_15</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>963</item> <item>964</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>179</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_259"> <Value> <Obj> <type>0</type> <id>329</id> <name>or_ln785_15</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>965</item> <item>966</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>180</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_260"> <Value> <Obj> <type>0</type> <id>330</id> <name>select_ln785_49</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>967</item> <item>968</item> <item>969</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>181</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_261"> <Value> <Obj> <type>0</type> <id>331</id> <name>tmp_data_15_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[15].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>970</item> <item>971</item> <item>972</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.99</m_delay> <m_topoIndex>182</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_262"> <Value> <Obj> <type>0</type> <id>332</id> <name>zext_ln1494_49</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>973</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>342</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_263"> <Value> <Obj> <type>0</type> <id>333</id> <name>icmp_ln1494_16</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>974</item> <item>975</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.66</m_delay> <m_topoIndex>183</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_264"> <Value> <Obj> <type>0</type> <id>334</id> <name>trunc_ln746_77</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>976</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>184</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_265"> <Value> <Obj> <type>0</type> <id>335</id> <name>trunc_ln746_45</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>977</item> <item>978</item> <item>979</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>185</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_266"> <Value> <Obj> <type>0</type> <id>336</id> <name>tmp_53</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>980</item> <item>981</item> <item>982</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>186</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_267"> <Value> <Obj> <type>0</type> <id>337</id> <name>p_Result_6_15</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>983</item> <item>984</item> <item>985</item> <item>986</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>187</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_268"> <Value> <Obj> <type>0</type> <id>338</id> <name>icmp_ln785_16</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>987</item> <item>988</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>188</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_269"> <Value> <Obj> <type>0</type> <id>339</id> <name>or_ln785_16</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>989</item> <item>990</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>189</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_270"> <Value> <Obj> <type>0</type> <id>340</id> <name>select_ln785_50</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>991</item> <item>992</item> <item>993</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>190</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_271"> <Value> <Obj> <type>0</type> <id>341</id> <name>tmp_data_16_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[16].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>994</item> <item>995</item> <item>996</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.99</m_delay> <m_topoIndex>191</m_topoIndex> <m_clusterGroupNumber>17</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_272"> <Value> <Obj> <type>0</type> <id>342</id> <name>zext_ln1494_50</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>997</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>343</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_273"> <Value> <Obj> <type>0</type> <id>343</id> <name>icmp_ln1494_17</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>998</item> <item>999</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.66</m_delay> <m_topoIndex>192</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_274"> <Value> <Obj> <type>0</type> <id>344</id> <name>trunc_ln746_78</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1000</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>193</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_275"> <Value> <Obj> <type>0</type> <id>345</id> <name>trunc_ln746_46</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1001</item> <item>1002</item> <item>1003</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>194</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_276"> <Value> <Obj> <type>0</type> <id>346</id> <name>tmp_54</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1004</item> <item>1005</item> <item>1006</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>195</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_277"> <Value> <Obj> <type>0</type> <id>347</id> <name>p_Result_6_16</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1007</item> <item>1008</item> <item>1009</item> <item>1010</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>196</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_278"> <Value> <Obj> <type>0</type> <id>348</id> <name>icmp_ln785_17</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1011</item> <item>1012</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>197</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_279"> <Value> <Obj> <type>0</type> <id>349</id> <name>or_ln785_17</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1013</item> <item>1014</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>198</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_280"> <Value> <Obj> <type>0</type> <id>350</id> <name>select_ln785_51</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1015</item> <item>1016</item> <item>1017</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>199</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_281"> <Value> <Obj> <type>0</type> <id>351</id> <name>tmp_data_17_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[17].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1018</item> <item>1019</item> <item>1020</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.99</m_delay> <m_topoIndex>200</m_topoIndex> <m_clusterGroupNumber>18</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_282"> <Value> <Obj> <type>0</type> <id>352</id> <name>zext_ln1494_51</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1021</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>344</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_283"> <Value> <Obj> <type>0</type> <id>353</id> <name>icmp_ln1494_18</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1022</item> <item>1023</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.66</m_delay> <m_topoIndex>201</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_284"> <Value> <Obj> <type>0</type> <id>354</id> <name>trunc_ln746_79</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1024</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>202</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_285"> <Value> <Obj> <type>0</type> <id>355</id> <name>trunc_ln746_47</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1025</item> <item>1026</item> <item>1027</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>203</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_286"> <Value> <Obj> <type>0</type> <id>356</id> <name>tmp_55</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1028</item> <item>1029</item> <item>1030</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>204</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_287"> <Value> <Obj> <type>0</type> <id>357</id> <name>p_Result_6_17</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1031</item> <item>1032</item> <item>1033</item> <item>1034</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>205</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_288"> <Value> <Obj> <type>0</type> <id>358</id> <name>icmp_ln785_18</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1035</item> <item>1036</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>206</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_289"> <Value> <Obj> <type>0</type> <id>359</id> <name>or_ln785_18</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1037</item> <item>1038</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>207</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_290"> <Value> <Obj> <type>0</type> <id>360</id> <name>select_ln785_52</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1039</item> <item>1040</item> <item>1041</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>208</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_291"> <Value> <Obj> <type>0</type> <id>361</id> <name>tmp_data_18_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[18].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1042</item> <item>1043</item> <item>1044</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.99</m_delay> <m_topoIndex>209</m_topoIndex> <m_clusterGroupNumber>19</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_292"> <Value> <Obj> <type>0</type> <id>362</id> <name>zext_ln1494_52</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1045</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>345</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_293"> <Value> <Obj> <type>0</type> <id>363</id> <name>icmp_ln1494_19</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1046</item> <item>1047</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.66</m_delay> <m_topoIndex>210</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_294"> <Value> <Obj> <type>0</type> <id>364</id> <name>trunc_ln746_80</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1048</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>211</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_295"> <Value> <Obj> <type>0</type> <id>365</id> <name>trunc_ln746_48</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1049</item> <item>1050</item> <item>1051</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>212</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_296"> <Value> <Obj> <type>0</type> <id>366</id> <name>tmp_56</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1052</item> <item>1053</item> <item>1054</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>213</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_297"> <Value> <Obj> <type>0</type> <id>367</id> <name>p_Result_6_18</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1055</item> <item>1056</item> <item>1057</item> <item>1058</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>214</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_298"> <Value> <Obj> <type>0</type> <id>368</id> <name>icmp_ln785_19</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1059</item> <item>1060</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>215</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_299"> <Value> <Obj> <type>0</type> <id>369</id> <name>or_ln785_19</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1061</item> <item>1062</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>216</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_300"> <Value> <Obj> <type>0</type> <id>370</id> <name>select_ln785_53</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1063</item> <item>1064</item> <item>1065</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>217</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_301"> <Value> <Obj> <type>0</type> <id>371</id> <name>tmp_data_19_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[19].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1066</item> <item>1067</item> <item>1068</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.99</m_delay> <m_topoIndex>218</m_topoIndex> <m_clusterGroupNumber>20</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_302"> <Value> <Obj> <type>0</type> <id>372</id> <name>zext_ln1494_53</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1069</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>346</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_303"> <Value> <Obj> <type>0</type> <id>373</id> <name>icmp_ln1494_20</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1070</item> <item>1071</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.66</m_delay> <m_topoIndex>219</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_304"> <Value> <Obj> <type>0</type> <id>374</id> <name>trunc_ln746_81</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1072</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>220</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_305"> <Value> <Obj> <type>0</type> <id>375</id> <name>trunc_ln746_49</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1073</item> <item>1074</item> <item>1075</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>221</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_306"> <Value> <Obj> <type>0</type> <id>376</id> <name>tmp_57</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1076</item> <item>1077</item> <item>1078</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>222</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_307"> <Value> <Obj> <type>0</type> <id>377</id> <name>p_Result_6_19</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1079</item> <item>1080</item> <item>1081</item> <item>1082</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>223</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_308"> <Value> <Obj> <type>0</type> <id>378</id> <name>icmp_ln785_20</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1083</item> <item>1084</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>224</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_309"> <Value> <Obj> <type>0</type> <id>379</id> <name>or_ln785_20</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1085</item> <item>1086</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>225</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_310"> <Value> <Obj> <type>0</type> <id>380</id> <name>select_ln785_54</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1087</item> <item>1088</item> <item>1089</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>226</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_311"> <Value> <Obj> <type>0</type> <id>381</id> <name>tmp_data_20_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[20].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1090</item> <item>1091</item> <item>1092</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.99</m_delay> <m_topoIndex>227</m_topoIndex> <m_clusterGroupNumber>21</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_312"> <Value> <Obj> <type>0</type> <id>382</id> <name>zext_ln1494_54</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1093</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>347</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_313"> <Value> <Obj> <type>0</type> <id>383</id> <name>icmp_ln1494_21</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1094</item> <item>1095</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.66</m_delay> <m_topoIndex>228</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_314"> <Value> <Obj> <type>0</type> <id>384</id> <name>trunc_ln746_82</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1096</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>229</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_315"> <Value> <Obj> <type>0</type> <id>385</id> <name>trunc_ln746_50</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1097</item> <item>1098</item> <item>1099</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>230</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_316"> <Value> <Obj> <type>0</type> <id>386</id> <name>tmp_58</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1100</item> <item>1101</item> <item>1102</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>231</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_317"> <Value> <Obj> <type>0</type> <id>387</id> <name>p_Result_6_20</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1103</item> <item>1104</item> <item>1105</item> <item>1106</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>232</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_318"> <Value> <Obj> <type>0</type> <id>388</id> <name>icmp_ln785_21</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1107</item> <item>1108</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>233</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_319"> <Value> <Obj> <type>0</type> <id>389</id> <name>or_ln785_21</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1109</item> <item>1110</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>234</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_320"> <Value> <Obj> <type>0</type> <id>390</id> <name>select_ln785_55</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1111</item> <item>1112</item> <item>1113</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>235</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_321"> <Value> <Obj> <type>0</type> <id>391</id> <name>tmp_data_21_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[21].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1114</item> <item>1115</item> <item>1116</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.99</m_delay> <m_topoIndex>236</m_topoIndex> <m_clusterGroupNumber>22</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_322"> <Value> <Obj> <type>0</type> <id>392</id> <name>zext_ln1494_55</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1117</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>348</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_323"> <Value> <Obj> <type>0</type> <id>393</id> <name>icmp_ln1494_22</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1118</item> <item>1119</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.66</m_delay> <m_topoIndex>237</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_324"> <Value> <Obj> <type>0</type> <id>394</id> <name>trunc_ln746_83</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1120</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>238</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_325"> <Value> <Obj> <type>0</type> <id>395</id> <name>trunc_ln746_51</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1121</item> <item>1122</item> <item>1123</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>239</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_326"> <Value> <Obj> <type>0</type> <id>396</id> <name>tmp_59</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1124</item> <item>1125</item> <item>1126</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>240</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_327"> <Value> <Obj> <type>0</type> <id>397</id> <name>p_Result_6_21</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1127</item> <item>1128</item> <item>1129</item> <item>1130</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>241</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_328"> <Value> <Obj> <type>0</type> <id>398</id> <name>icmp_ln785_22</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1131</item> <item>1132</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>242</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_329"> <Value> <Obj> <type>0</type> <id>399</id> <name>or_ln785_22</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1133</item> <item>1134</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>243</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_330"> <Value> <Obj> <type>0</type> <id>400</id> <name>select_ln785_56</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1135</item> <item>1136</item> <item>1137</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>244</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_331"> <Value> <Obj> <type>0</type> <id>401</id> <name>tmp_data_22_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[22].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1138</item> <item>1139</item> <item>1140</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.99</m_delay> <m_topoIndex>245</m_topoIndex> <m_clusterGroupNumber>23</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_332"> <Value> <Obj> <type>0</type> <id>402</id> <name>zext_ln1494_56</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1141</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>349</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_333"> <Value> <Obj> <type>0</type> <id>403</id> <name>icmp_ln1494_23</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1142</item> <item>1143</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.66</m_delay> <m_topoIndex>246</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_334"> <Value> <Obj> <type>0</type> <id>404</id> <name>trunc_ln746_84</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1144</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>247</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_335"> <Value> <Obj> <type>0</type> <id>405</id> <name>trunc_ln746_52</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1145</item> <item>1146</item> <item>1147</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>248</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_336"> <Value> <Obj> <type>0</type> <id>406</id> <name>tmp_60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1148</item> <item>1149</item> <item>1150</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>249</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_337"> <Value> <Obj> <type>0</type> <id>407</id> <name>p_Result_6_22</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1151</item> <item>1152</item> <item>1153</item> <item>1154</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>250</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_338"> <Value> <Obj> <type>0</type> <id>408</id> <name>icmp_ln785_23</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1155</item> <item>1156</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>251</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_339"> <Value> <Obj> <type>0</type> <id>409</id> <name>or_ln785_23</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1157</item> <item>1158</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>252</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_340"> <Value> <Obj> <type>0</type> <id>410</id> <name>select_ln785_57</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1159</item> <item>1160</item> <item>1161</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>253</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_341"> <Value> <Obj> <type>0</type> <id>411</id> <name>tmp_data_23_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[23].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1162</item> <item>1163</item> <item>1164</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.99</m_delay> <m_topoIndex>254</m_topoIndex> <m_clusterGroupNumber>24</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_342"> <Value> <Obj> <type>0</type> <id>412</id> <name>zext_ln1494_57</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1165</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>350</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_343"> <Value> <Obj> <type>0</type> <id>413</id> <name>icmp_ln1494_24</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1166</item> <item>1167</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.66</m_delay> <m_topoIndex>255</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_344"> <Value> <Obj> <type>0</type> <id>414</id> <name>trunc_ln746_85</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1168</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>256</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_345"> <Value> <Obj> <type>0</type> <id>415</id> <name>trunc_ln746_53</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1169</item> <item>1170</item> <item>1171</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>257</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_346"> <Value> <Obj> <type>0</type> <id>416</id> <name>tmp_61</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1172</item> <item>1173</item> <item>1174</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>258</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_347"> <Value> <Obj> <type>0</type> <id>417</id> <name>p_Result_6_23</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1175</item> <item>1176</item> <item>1177</item> <item>1178</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>259</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_348"> <Value> <Obj> <type>0</type> <id>418</id> <name>icmp_ln785_24</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1179</item> <item>1180</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>260</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_349"> <Value> <Obj> <type>0</type> <id>419</id> <name>or_ln785_24</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1181</item> <item>1182</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>261</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_350"> <Value> <Obj> <type>0</type> <id>420</id> <name>select_ln785_58</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1183</item> <item>1184</item> <item>1185</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>262</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_351"> <Value> <Obj> <type>0</type> <id>421</id> <name>tmp_data_24_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[24].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1186</item> <item>1187</item> <item>1188</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.99</m_delay> <m_topoIndex>263</m_topoIndex> <m_clusterGroupNumber>25</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_352"> <Value> <Obj> <type>0</type> <id>422</id> <name>zext_ln1494_58</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1189</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>351</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_353"> <Value> <Obj> <type>0</type> <id>423</id> <name>icmp_ln1494_25</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1190</item> <item>1191</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.66</m_delay> <m_topoIndex>264</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_354"> <Value> <Obj> <type>0</type> <id>424</id> <name>trunc_ln746_86</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1192</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>265</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_355"> <Value> <Obj> <type>0</type> <id>425</id> <name>trunc_ln746_54</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1193</item> <item>1194</item> <item>1195</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>266</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_356"> <Value> <Obj> <type>0</type> <id>426</id> <name>tmp_62</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1196</item> <item>1197</item> <item>1198</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>267</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_357"> <Value> <Obj> <type>0</type> <id>427</id> <name>p_Result_6_24</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1199</item> <item>1200</item> <item>1201</item> <item>1202</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>268</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_358"> <Value> <Obj> <type>0</type> <id>428</id> <name>icmp_ln785_25</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1203</item> <item>1204</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>269</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_359"> <Value> <Obj> <type>0</type> <id>429</id> <name>or_ln785_25</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1205</item> <item>1206</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>270</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_360"> <Value> <Obj> <type>0</type> <id>430</id> <name>select_ln785_59</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1207</item> <item>1208</item> <item>1209</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>271</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_361"> <Value> <Obj> <type>0</type> <id>431</id> <name>tmp_data_25_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[25].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1210</item> <item>1211</item> <item>1212</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.99</m_delay> <m_topoIndex>272</m_topoIndex> <m_clusterGroupNumber>26</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_362"> <Value> <Obj> <type>0</type> <id>432</id> <name>zext_ln1494_59</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1213</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>352</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_363"> <Value> <Obj> <type>0</type> <id>433</id> <name>icmp_ln1494_26</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1214</item> <item>1215</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.66</m_delay> <m_topoIndex>273</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_364"> <Value> <Obj> <type>0</type> <id>434</id> <name>trunc_ln746_87</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1216</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>274</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_365"> <Value> <Obj> <type>0</type> <id>435</id> <name>trunc_ln746_55</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1217</item> <item>1218</item> <item>1219</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>275</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_366"> <Value> <Obj> <type>0</type> <id>436</id> <name>tmp_63</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1220</item> <item>1221</item> <item>1222</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>276</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_367"> <Value> <Obj> <type>0</type> <id>437</id> <name>p_Result_6_25</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1223</item> <item>1224</item> <item>1225</item> <item>1226</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>277</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_368"> <Value> <Obj> <type>0</type> <id>438</id> <name>icmp_ln785_26</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1227</item> <item>1228</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>278</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_369"> <Value> <Obj> <type>0</type> <id>439</id> <name>or_ln785_26</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1229</item> <item>1230</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>279</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_370"> <Value> <Obj> <type>0</type> <id>440</id> <name>select_ln785_60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1231</item> <item>1232</item> <item>1233</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>280</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_371"> <Value> <Obj> <type>0</type> <id>441</id> <name>tmp_data_26_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[26].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1234</item> <item>1235</item> <item>1236</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.99</m_delay> <m_topoIndex>281</m_topoIndex> <m_clusterGroupNumber>27</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_372"> <Value> <Obj> <type>0</type> <id>442</id> <name>zext_ln1494_60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1237</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>353</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_373"> <Value> <Obj> <type>0</type> <id>443</id> <name>icmp_ln1494_27</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1238</item> <item>1239</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.66</m_delay> <m_topoIndex>282</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_374"> <Value> <Obj> <type>0</type> <id>444</id> <name>trunc_ln746_88</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1240</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>283</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_375"> <Value> <Obj> <type>0</type> <id>445</id> <name>trunc_ln746_56</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1241</item> <item>1242</item> <item>1243</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>284</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_376"> <Value> <Obj> <type>0</type> <id>446</id> <name>tmp_64</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1244</item> <item>1245</item> <item>1246</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>285</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_377"> <Value> <Obj> <type>0</type> <id>447</id> <name>p_Result_6_26</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1247</item> <item>1248</item> <item>1249</item> <item>1250</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>286</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_378"> <Value> <Obj> <type>0</type> <id>448</id> <name>icmp_ln785_27</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1251</item> <item>1252</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>287</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_379"> <Value> <Obj> <type>0</type> <id>449</id> <name>or_ln785_27</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1253</item> <item>1254</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>288</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_380"> <Value> <Obj> <type>0</type> <id>450</id> <name>select_ln785_61</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1255</item> <item>1256</item> <item>1257</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>289</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_381"> <Value> <Obj> <type>0</type> <id>451</id> <name>tmp_data_27_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[27].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1258</item> <item>1259</item> <item>1260</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.99</m_delay> <m_topoIndex>290</m_topoIndex> <m_clusterGroupNumber>28</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_382"> <Value> <Obj> <type>0</type> <id>452</id> <name>zext_ln1494_61</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1261</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>354</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_383"> <Value> <Obj> <type>0</type> <id>453</id> <name>icmp_ln1494_28</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1262</item> <item>1263</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.66</m_delay> <m_topoIndex>291</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_384"> <Value> <Obj> <type>0</type> <id>454</id> <name>trunc_ln746_89</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1264</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>292</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_385"> <Value> <Obj> <type>0</type> <id>455</id> <name>trunc_ln746_57</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1265</item> <item>1266</item> <item>1267</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>293</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_386"> <Value> <Obj> <type>0</type> <id>456</id> <name>tmp_65</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1268</item> <item>1269</item> <item>1270</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>294</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_387"> <Value> <Obj> <type>0</type> <id>457</id> <name>p_Result_6_27</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1271</item> <item>1272</item> <item>1273</item> <item>1274</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>295</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_388"> <Value> <Obj> <type>0</type> <id>458</id> <name>icmp_ln785_28</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1275</item> <item>1276</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>296</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_389"> <Value> <Obj> <type>0</type> <id>459</id> <name>or_ln785_28</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1277</item> <item>1278</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>297</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_390"> <Value> <Obj> <type>0</type> <id>460</id> <name>select_ln785_62</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1279</item> <item>1280</item> <item>1281</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>298</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_391"> <Value> <Obj> <type>0</type> <id>461</id> <name>tmp_data_28_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[28].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1282</item> <item>1283</item> <item>1284</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.99</m_delay> <m_topoIndex>299</m_topoIndex> <m_clusterGroupNumber>29</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_392"> <Value> <Obj> <type>0</type> <id>462</id> <name>zext_ln1494_62</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1285</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>355</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_393"> <Value> <Obj> <type>0</type> <id>463</id> <name>icmp_ln1494_29</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1286</item> <item>1287</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.66</m_delay> <m_topoIndex>300</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_394"> <Value> <Obj> <type>0</type> <id>464</id> <name>trunc_ln746_90</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1288</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>301</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_395"> <Value> <Obj> <type>0</type> <id>465</id> <name>trunc_ln746_58</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1289</item> <item>1290</item> <item>1291</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>302</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_396"> <Value> <Obj> <type>0</type> <id>466</id> <name>tmp_66</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1292</item> <item>1293</item> <item>1294</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>303</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_397"> <Value> <Obj> <type>0</type> <id>467</id> <name>p_Result_6_28</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1295</item> <item>1296</item> <item>1297</item> <item>1298</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>304</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_398"> <Value> <Obj> <type>0</type> <id>468</id> <name>icmp_ln785_29</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1299</item> <item>1300</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>305</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_399"> <Value> <Obj> <type>0</type> <id>469</id> <name>or_ln785_29</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1301</item> <item>1302</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>306</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_400"> <Value> <Obj> <type>0</type> <id>470</id> <name>select_ln785_63</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1303</item> <item>1304</item> <item>1305</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>307</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_401"> <Value> <Obj> <type>0</type> <id>471</id> <name>tmp_data_29_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[29].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1306</item> <item>1307</item> <item>1308</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.99</m_delay> <m_topoIndex>308</m_topoIndex> <m_clusterGroupNumber>30</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_402"> <Value> <Obj> <type>0</type> <id>472</id> <name>zext_ln1494_63</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1309</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>356</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_403"> <Value> <Obj> <type>0</type> <id>473</id> <name>icmp_ln1494_30</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1310</item> <item>1311</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.66</m_delay> <m_topoIndex>309</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_404"> <Value> <Obj> <type>0</type> <id>474</id> <name>trunc_ln746_91</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1312</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>310</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_405"> <Value> <Obj> <type>0</type> <id>475</id> <name>trunc_ln746_59</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1313</item> <item>1314</item> <item>1315</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>311</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_406"> <Value> <Obj> <type>0</type> <id>476</id> <name>tmp_67</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1316</item> <item>1317</item> <item>1318</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>312</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_407"> <Value> <Obj> <type>0</type> <id>477</id> <name>p_Result_6_29</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1319</item> <item>1320</item> <item>1321</item> <item>1322</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>313</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_408"> <Value> <Obj> <type>0</type> <id>478</id> <name>icmp_ln785_30</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1323</item> <item>1324</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>314</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_409"> <Value> <Obj> <type>0</type> <id>479</id> <name>or_ln785_30</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1325</item> <item>1326</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>315</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_410"> <Value> <Obj> <type>0</type> <id>480</id> <name>select_ln785_64</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1327</item> <item>1328</item> <item>1329</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>316</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_411"> <Value> <Obj> <type>0</type> <id>481</id> <name>tmp_data_30_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[30].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1330</item> <item>1331</item> <item>1332</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.99</m_delay> <m_topoIndex>317</m_topoIndex> <m_clusterGroupNumber>31</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_412"> <Value> <Obj> <type>0</type> <id>482</id> <name>zext_ln1494_64</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1333</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>357</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_413"> <Value> <Obj> <type>0</type> <id>483</id> <name>icmp_ln1494_31</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1334</item> <item>1335</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.66</m_delay> <m_topoIndex>318</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_414"> <Value> <Obj> <type>0</type> <id>484</id> <name>trunc_ln746_92</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1336</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>319</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_415"> <Value> <Obj> <type>0</type> <id>485</id> <name>trunc_ln746_60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1337</item> <item>1338</item> <item>1339</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>320</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_416"> <Value> <Obj> <type>0</type> <id>486</id> <name>tmp_68</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1340</item> <item>1341</item> <item>1342</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>321</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_417"> <Value> <Obj> <type>0</type> <id>487</id> <name>p_Result_6_30</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1343</item> <item>1344</item> <item>1345</item> <item>1346</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>322</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_418"> <Value> <Obj> <type>0</type> <id>488</id> <name>icmp_ln785_31</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1347</item> <item>1348</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>323</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_419"> <Value> <Obj> <type>0</type> <id>489</id> <name>or_ln785_31</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1349</item> <item>1350</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>324</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_420"> <Value> <Obj> <type>0</type> <id>490</id> <name>select_ln785_65</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1351</item> <item>1352</item> <item>1353</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>325</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_421"> <Value> <Obj> <type>0</type> <id>491</id> <name>tmp_data_31_V</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[31].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1354</item> <item>1355</item> <item>1356</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.99</m_delay> <m_topoIndex>326</m_topoIndex> <m_clusterGroupNumber>32</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_422"> <Value> <Obj> <type>0</type> <id>492</id> <name>zext_ln1494_65</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>69</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>1357</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>358</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_423"> <Value> <Obj> <type>0</type> <id>493</id> <name>res_V_data_0_V_write_ln73</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>65</count> <item_version>0</item_version> <item>1359</item> <item>1360</item> <item>1361</item> <item>1362</item> <item>1363</item> <item>1364</item> <item>1365</item> <item>1366</item> <item>1367</item> <item>1368</item> <item>1369</item> <item>1370</item> <item>1371</item> <item>1372</item> <item>1373</item> <item>1374</item> <item>1375</item> <item>1376</item> <item>1377</item> <item>1378</item> <item>1379</item> <item>1380</item> <item>1381</item> <item>1382</item> <item>1383</item> <item>1384</item> <item>1385</item> <item>1386</item> <item>1387</item> <item>1388</item> <item>1389</item> <item>1390</item> <item>1391</item> <item>1392</item> <item>1393</item> <item>1394</item> <item>1395</item> <item>1396</item> <item>1397</item> <item>1398</item> <item>1399</item> <item>1400</item> <item>1401</item> <item>1402</item> <item>1403</item> <item>1404</item> <item>1405</item> <item>1406</item> <item>1407</item> <item>1408</item> <item>1409</item> <item>1410</item> <item>1411</item> <item>1412</item> <item>1413</item> <item>1414</item> <item>1415</item> <item>1416</item> <item>1417</item> <item>1418</item> <item>1419</item> <item>1420</item> <item>1421</item> <item>1422</item> <item>1423</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.63</m_delay> <m_topoIndex>359</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_424"> <Value> <Obj> <type>0</type> <id>495</id> <name>_ln60</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>60</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>1424</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>360</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_425"> <Value> <Obj> <type>0</type> <id>497</id> <name>_ln75</name> <fileName>firmware/nnet_utils/nnet_activation_stream.h</fileName> <fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_activation_stream.h</first> <second>relu&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;9, 6, 5, 3, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, relu_config13&amp;gt;</second> </first> <second>75</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>361</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </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="_426"> <Value> <Obj> <type>2</type> <id>500</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="_427"> <Value> <Obj> <type>2</type> <id>506</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="_428"> <Value> <Obj> <type>2</type> <id>509</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="_429"> <Value> <Obj> <type>2</type> <id>581</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_430"> <Value> <Obj> <type>2</type> <id>587</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_431"> <Value> <Obj> <type>2</type> <id>592</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>5</content> </item> <item class_id_reference="16" object_id="_432"> <Value> <Obj> <type>2</type> <id>597</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>6</content> </item> <item class_id_reference="16" object_id="_433"> <Value> <Obj> <type>2</type> <id>599</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="_434"> <Value> <Obj> <type>2</type> <id>602</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="_435"> <Value> <Obj> <type>2</type> <id>607</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>127</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="_436"> <Obj> <type>3</type> <id>130</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>129</item> </node_objs> </item> <item class_id_reference="18" object_id="_437"> <Obj> <type>3</type> <id>136</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>131</item> <item>132</item> <item>134</item> <item>135</item> </node_objs> </item> <item class_id_reference="18" object_id="_438"> <Obj> <type>3</type> <id>496</id> <name>ReLUActLoop</name> <fileName></fileName> <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>355</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>225</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <item>242</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>267</item> <item>268</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> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> <item>287</item> <item>288</item> <item>289</item> <item>290</item> <item>291</item> <item>292</item> <item>293</item> <item>294</item> <item>295</item> <item>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>309</item> <item>310</item> <item>311</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>325</item> <item>326</item> <item>327</item> <item>328</item> <item>329</item> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>339</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> <item>356</item> <item>357</item> <item>358</item> <item>359</item> <item>360</item> <item>361</item> <item>362</item> <item>363</item> <item>364</item> <item>365</item> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>384</item> <item>385</item> <item>386</item> <item>387</item> <item>388</item> <item>389</item> <item>390</item> <item>391</item> <item>392</item> <item>393</item> <item>394</item> <item>395</item> <item>396</item> <item>397</item> <item>398</item> <item>399</item> <item>400</item> <item>401</item> <item>402</item> <item>403</item> <item>404</item> <item>405</item> <item>406</item> <item>407</item> <item>408</item> <item>409</item> <item>410</item> <item>411</item> <item>412</item> <item>413</item> <item>414</item> <item>415</item> <item>416</item> <item>417</item> <item>418</item> <item>419</item> <item>420</item> <item>421</item> <item>422</item> <item>423</item> <item>424</item> <item>425</item> <item>426</item> <item>427</item> <item>428</item> <item>429</item> <item>430</item> <item>431</item> <item>432</item> <item>433</item> <item>434</item> <item>435</item> <item>436</item> <item>437</item> <item>438</item> <item>439</item> <item>440</item> <item>441</item> <item>442</item> <item>443</item> <item>444</item> <item>445</item> <item>446</item> <item>447</item> <item>448</item> <item>449</item> <item>450</item> <item>451</item> <item>452</item> <item>453</item> <item>454</item> <item>455</item> <item>456</item> <item>457</item> <item>458</item> <item>459</item> <item>460</item> <item>461</item> <item>462</item> <item>463</item> <item>464</item> <item>465</item> <item>466</item> <item>467</item> <item>468</item> <item>469</item> <item>470</item> <item>471</item> <item>472</item> <item>473</item> <item>474</item> <item>475</item> <item>476</item> <item>477</item> <item>478</item> <item>479</item> <item>480</item> <item>481</item> <item>482</item> <item>483</item> <item>484</item> <item>485</item> <item>486</item> <item>487</item> <item>488</item> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>495</item> </node_objs> </item> <item class_id_reference="18" object_id="_439"> <Obj> <type>3</type> <id>498</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>497</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>817</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_440"> <id>499</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>501</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>502</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>503</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>131</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>504</id> <edge_type>2</edge_type> <source_obj>496</source_obj> <sink_obj>131</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>505</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>507</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>508</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>510</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>511</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>512</id> <edge_type>2</edge_type> <source_obj>496</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>513</id> <edge_type>2</edge_type> <source_obj>498</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>516</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>517</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>518</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>519</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>520</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>521</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>522</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>523</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>524</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>525</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>526</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>527</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>528</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>529</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>530</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>531</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>532</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>533</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>534</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>535</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>536</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>537</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>538</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>539</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>540</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>541</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>542</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>543</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>544</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>545</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>546</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>547</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>548</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>549</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>550</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>551</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>552</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>553</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>554</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>555</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>556</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>557</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>558</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>559</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>560</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>561</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>562</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>563</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>564</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>565</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>566</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>567</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>568</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>569</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>570</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>571</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>572</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>573</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>574</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>575</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>576</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>577</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>578</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>579</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>580</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>582</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>583</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>586</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>588</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>591</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>593</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>596</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>598</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>600</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>601</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>603</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>604</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>605</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>606</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>608</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>609</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>610</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>611</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>612</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>613</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>614</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>615</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>616</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>618</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>619</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>621</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>622</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>624</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>625</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>626</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>627</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>628</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>629</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>630</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>631</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>632</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>633</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>634</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>635</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>636</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>637</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>638</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>639</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>640</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>642</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>643</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>645</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>646</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>648</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>649</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>650</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>651</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>652</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>653</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>654</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>655</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>656</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>657</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>658</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>659</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>660</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>661</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>662</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>663</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>664</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>666</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>667</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>669</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>670</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>672</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>673</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>674</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>675</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>676</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>677</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>678</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>679</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>680</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>681</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>682</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>683</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>684</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>685</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>686</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>687</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>688</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>690</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>691</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>693</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>694</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>696</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>697</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>698</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>699</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>700</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>701</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>702</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>703</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>704</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>705</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>706</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>707</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>708</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>709</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>710</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>711</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>712</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>714</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>715</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>717</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>718</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>720</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>721</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>722</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>723</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>724</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>725</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>726</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>727</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>728</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>729</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>730</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>731</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_640"> <id>732</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_641"> <id>733</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>734</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_643"> <id>735</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>736</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>738</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>739</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>741</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>742</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>744</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>745</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>746</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>747</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>748</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>749</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_655"> <id>750</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_656"> <id>751</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_657"> <id>752</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_658"> <id>753</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_659"> <id>754</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_660"> <id>755</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_661"> <id>756</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_662"> <id>757</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_663"> <id>758</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_664"> <id>759</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_665"> <id>760</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_666"> <id>762</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_667"> <id>763</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_668"> <id>765</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_669"> <id>766</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_670"> <id>768</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_671"> <id>769</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_672"> <id>770</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_673"> <id>771</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_674"> <id>772</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_675"> <id>773</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_676"> <id>774</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_677"> <id>775</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_678"> <id>776</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_679"> <id>777</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_680"> <id>778</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_681"> <id>779</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_682"> <id>780</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_683"> <id>781</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_684"> <id>782</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_685"> <id>783</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_686"> <id>784</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_687"> <id>786</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_688"> <id>787</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_689"> <id>789</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_690"> <id>790</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_691"> <id>792</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_692"> <id>793</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_693"> <id>794</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_694"> <id>795</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_695"> <id>796</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_696"> <id>797</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_697"> <id>798</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_698"> <id>799</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_699"> <id>800</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_700"> <id>801</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_701"> <id>802</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_702"> <id>803</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_703"> <id>804</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_704"> <id>805</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_705"> <id>806</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_706"> <id>807</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_707"> <id>808</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_708"> <id>810</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>265</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_709"> <id>811</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>265</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_710"> <id>813</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_711"> <id>814</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_712"> <id>816</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_713"> <id>817</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_714"> <id>818</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_715"> <id>819</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_716"> <id>820</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_717"> <id>821</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_718"> <id>822</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_719"> <id>823</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_720"> <id>824</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_721"> <id>825</id> <edge_type>1</edge_type> <source_obj>265</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_722"> <id>826</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_723"> <id>827</id> <edge_type>1</edge_type> <source_obj>270</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_724"> <id>828</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_725"> <id>829</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_726"> <id>830</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_727"> <id>831</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_728"> <id>832</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_729"> <id>834</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_730"> <id>835</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_731"> <id>837</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_732"> <id>838</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_733"> <id>840</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_734"> <id>841</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_735"> <id>842</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_736"> <id>843</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_737"> <id>844</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_738"> <id>845</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_739"> <id>846</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_740"> <id>847</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_741"> <id>848</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_742"> <id>849</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_743"> <id>850</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_744"> <id>851</id> <edge_type>1</edge_type> <source_obj>280</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_745"> <id>852</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_746"> <id>853</id> <edge_type>1</edge_type> <source_obj>281</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_747"> <id>854</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_748"> <id>855</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_749"> <id>856</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_750"> <id>858</id> <edge_type>1</edge_type> <source_obj>284</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_751"> <id>859</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_752"> <id>861</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_753"> <id>862</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_754"> <id>864</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_755"> <id>865</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_756"> <id>866</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_757"> <id>867</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_758"> <id>868</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_759"> <id>869</id> <edge_type>1</edge_type> <source_obj>286</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_760"> <id>870</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_761"> <id>871</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_762"> <id>872</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_763"> <id>873</id> <edge_type>1</edge_type> <source_obj>285</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_764"> <id>874</id> <edge_type>1</edge_type> <source_obj>283</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_765"> <id>875</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_766"> <id>876</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_767"> <id>877</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_768"> <id>878</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_769"> <id>879</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_770"> <id>880</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_771"> <id>882</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>295</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_772"> <id>883</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>295</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_773"> <id>885</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_774"> <id>886</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_775"> <id>888</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_776"> <id>889</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_777"> <id>890</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_778"> <id>891</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_779"> <id>892</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_780"> <id>893</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_781"> <id>894</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_782"> <id>895</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_783"> <id>896</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_784"> <id>897</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_785"> <id>898</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_786"> <id>899</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_787"> <id>900</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_788"> <id>901</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_789"> <id>902</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_790"> <id>903</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_791"> <id>904</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_792"> <id>906</id> <edge_type>1</edge_type> <source_obj>304</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_793"> <id>907</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_794"> <id>909</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_795"> <id>910</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_796"> <id>912</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_797"> <id>913</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_798"> <id>914</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_799"> <id>915</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_800"> <id>916</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_801"> <id>917</id> <edge_type>1</edge_type> <source_obj>306</source_obj> <sink_obj>309</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_802"> <id>918</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>309</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_803"> <id>919</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_804"> <id>920</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_805"> <id>921</id> <edge_type>1</edge_type> <source_obj>305</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_806"> <id>922</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_807"> <id>923</id> <edge_type>1</edge_type> <source_obj>310</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_808"> <id>924</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_809"> <id>925</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>312</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_810"> <id>926</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_811"> <id>927</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_812"> <id>928</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>314</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_813"> <id>930</id> <edge_type>1</edge_type> <source_obj>314</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_814"> <id>931</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_815"> <id>933</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_816"> <id>934</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_817"> <id>936</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>317</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_818"> <id>937</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>317</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_819"> <id>938</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>317</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_820"> <id>939</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>318</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_821"> <id>940</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>318</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_822"> <id>941</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>319</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_823"> <id>942</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>319</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_824"> <id>943</id> <edge_type>1</edge_type> <source_obj>319</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_825"> <id>944</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_826"> <id>945</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_827"> <id>946</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_828"> <id>947</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_829"> <id>948</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_830"> <id>949</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>322</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_831"> <id>950</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>323</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_832"> <id>951</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>323</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_833"> <id>952</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>324</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_834"> <id>954</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_835"> <id>955</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_836"> <id>957</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_837"> <id>958</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_838"> <id>960</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_839"> <id>961</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_840"> <id>962</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_841"> <id>963</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_842"> <id>964</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_843"> <id>965</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>329</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_844"> <id>966</id> <edge_type>1</edge_type> <source_obj>328</source_obj> <sink_obj>329</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_845"> <id>967</id> <edge_type>1</edge_type> <source_obj>329</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_846"> <id>968</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_847"> <id>969</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_848"> <id>970</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_849"> <id>971</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_850"> <id>972</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_851"> <id>973</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>332</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_852"> <id>974</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_853"> <id>975</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_854"> <id>976</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>334</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_855"> <id>978</id> <edge_type>1</edge_type> <source_obj>334</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_856"> <id>979</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_857"> <id>981</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_858"> <id>982</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_859"> <id>984</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_860"> <id>985</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_861"> <id>986</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_862"> <id>987</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_863"> <id>988</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_864"> <id>989</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_865"> <id>990</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_866"> <id>991</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_867"> <id>992</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_868"> <id>993</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_869"> <id>994</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_870"> <id>995</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_871"> <id>996</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_872"> <id>997</id> <edge_type>1</edge_type> <source_obj>341</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_873"> <id>998</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_874"> <id>999</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_875"> <id>1000</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>344</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_876"> <id>1002</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>345</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_877"> <id>1003</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>345</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_878"> <id>1005</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>346</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_879"> <id>1006</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>346</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_880"> <id>1008</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_881"> <id>1009</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_882"> <id>1010</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_883"> <id>1011</id> <edge_type>1</edge_type> <source_obj>347</source_obj> <sink_obj>348</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_884"> <id>1012</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>348</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_885"> <id>1013</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>349</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_886"> <id>1014</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>349</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_887"> <id>1015</id> <edge_type>1</edge_type> <source_obj>349</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_888"> <id>1016</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_889"> <id>1017</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_890"> <id>1018</id> <edge_type>1</edge_type> <source_obj>343</source_obj> <sink_obj>351</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_891"> <id>1019</id> <edge_type>1</edge_type> <source_obj>350</source_obj> <sink_obj>351</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_892"> <id>1020</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>351</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_893"> <id>1021</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>352</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_894"> <id>1022</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_895"> <id>1023</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_896"> <id>1024</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>354</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_897"> <id>1026</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_898"> <id>1027</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_899"> <id>1029</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_900"> <id>1030</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_901"> <id>1032</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>357</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_902"> <id>1033</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>357</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_903"> <id>1034</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>357</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_904"> <id>1035</id> <edge_type>1</edge_type> <source_obj>357</source_obj> <sink_obj>358</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_905"> <id>1036</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>358</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_906"> <id>1037</id> <edge_type>1</edge_type> <source_obj>356</source_obj> <sink_obj>359</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_907"> <id>1038</id> <edge_type>1</edge_type> <source_obj>358</source_obj> <sink_obj>359</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_908"> <id>1039</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>360</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_909"> <id>1040</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>360</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_910"> <id>1041</id> <edge_type>1</edge_type> <source_obj>355</source_obj> <sink_obj>360</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_911"> <id>1042</id> <edge_type>1</edge_type> <source_obj>353</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_912"> <id>1043</id> <edge_type>1</edge_type> <source_obj>360</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_913"> <id>1044</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_914"> <id>1045</id> <edge_type>1</edge_type> <source_obj>361</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_915"> <id>1046</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>363</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_916"> <id>1047</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>363</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_917"> <id>1048</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>364</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_918"> <id>1050</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_919"> <id>1051</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_920"> <id>1053</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_921"> <id>1054</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_922"> <id>1056</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_923"> <id>1057</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_924"> <id>1058</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_925"> <id>1059</id> <edge_type>1</edge_type> <source_obj>367</source_obj> <sink_obj>368</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_926"> <id>1060</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>368</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_927"> <id>1061</id> <edge_type>1</edge_type> <source_obj>366</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_928"> <id>1062</id> <edge_type>1</edge_type> <source_obj>368</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_929"> <id>1063</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_930"> <id>1064</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_931"> <id>1065</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_932"> <id>1066</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_933"> <id>1067</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_934"> <id>1068</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_935"> <id>1069</id> <edge_type>1</edge_type> <source_obj>371</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_936"> <id>1070</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>373</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_937"> <id>1071</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>373</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_938"> <id>1072</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>374</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_939"> <id>1074</id> <edge_type>1</edge_type> <source_obj>374</source_obj> <sink_obj>375</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_940"> <id>1075</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>375</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_941"> <id>1077</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>376</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_942"> <id>1078</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>376</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_943"> <id>1080</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_944"> <id>1081</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_945"> <id>1082</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_946"> <id>1083</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>378</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_947"> <id>1084</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>378</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_948"> <id>1085</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>379</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_949"> <id>1086</id> <edge_type>1</edge_type> <source_obj>378</source_obj> <sink_obj>379</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_950"> <id>1087</id> <edge_type>1</edge_type> <source_obj>379</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_951"> <id>1088</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_952"> <id>1089</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_953"> <id>1090</id> <edge_type>1</edge_type> <source_obj>373</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_954"> <id>1091</id> <edge_type>1</edge_type> <source_obj>380</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_955"> <id>1092</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_956"> <id>1093</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>382</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_957"> <id>1094</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>383</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_958"> <id>1095</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>383</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_959"> <id>1096</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>384</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_960"> <id>1098</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_961"> <id>1099</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_962"> <id>1101</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>386</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_963"> <id>1102</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>386</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_964"> <id>1104</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>387</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_965"> <id>1105</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>387</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_966"> <id>1106</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>387</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_967"> <id>1107</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_968"> <id>1108</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_969"> <id>1109</id> <edge_type>1</edge_type> <source_obj>386</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_970"> <id>1110</id> <edge_type>1</edge_type> <source_obj>388</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_971"> <id>1111</id> <edge_type>1</edge_type> <source_obj>389</source_obj> <sink_obj>390</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_972"> <id>1112</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>390</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_973"> <id>1113</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>390</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_974"> <id>1114</id> <edge_type>1</edge_type> <source_obj>383</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_975"> <id>1115</id> <edge_type>1</edge_type> <source_obj>390</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_976"> <id>1116</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_977"> <id>1117</id> <edge_type>1</edge_type> <source_obj>391</source_obj> <sink_obj>392</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_978"> <id>1118</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_979"> <id>1119</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_980"> <id>1120</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>394</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_981"> <id>1122</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_982"> <id>1123</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_983"> <id>1125</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_984"> <id>1126</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_985"> <id>1128</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_986"> <id>1129</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_987"> <id>1130</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_988"> <id>1131</id> <edge_type>1</edge_type> <source_obj>397</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_989"> <id>1132</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_990"> <id>1133</id> <edge_type>1</edge_type> <source_obj>396</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_991"> <id>1134</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_992"> <id>1135</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_993"> <id>1136</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_994"> <id>1137</id> <edge_type>1</edge_type> <source_obj>395</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_995"> <id>1138</id> <edge_type>1</edge_type> <source_obj>393</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_996"> <id>1139</id> <edge_type>1</edge_type> <source_obj>400</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_997"> <id>1140</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_998"> <id>1141</id> <edge_type>1</edge_type> <source_obj>401</source_obj> <sink_obj>402</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_999"> <id>1142</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>403</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1000"> <id>1143</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>403</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1001"> <id>1144</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>404</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1002"> <id>1146</id> <edge_type>1</edge_type> <source_obj>404</source_obj> <sink_obj>405</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1003"> <id>1147</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>405</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1004"> <id>1149</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1005"> <id>1150</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1006"> <id>1152</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>407</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1007"> <id>1153</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>407</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1008"> <id>1154</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>407</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1009"> <id>1155</id> <edge_type>1</edge_type> <source_obj>407</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1010"> <id>1156</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1011"> <id>1157</id> <edge_type>1</edge_type> <source_obj>406</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1012"> <id>1158</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1013"> <id>1159</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1014"> <id>1160</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1015"> <id>1161</id> <edge_type>1</edge_type> <source_obj>405</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1016"> <id>1162</id> <edge_type>1</edge_type> <source_obj>403</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1017"> <id>1163</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1018"> <id>1164</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1019"> <id>1165</id> <edge_type>1</edge_type> <source_obj>411</source_obj> <sink_obj>412</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1020"> <id>1166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>413</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1021"> <id>1167</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>413</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1022"> <id>1168</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1023"> <id>1170</id> <edge_type>1</edge_type> <source_obj>414</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1024"> <id>1171</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1025"> <id>1173</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1026"> <id>1174</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1027"> <id>1176</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1028"> <id>1177</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1029"> <id>1178</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1030"> <id>1179</id> <edge_type>1</edge_type> <source_obj>417</source_obj> <sink_obj>418</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1031"> <id>1180</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>418</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1032"> <id>1181</id> <edge_type>1</edge_type> <source_obj>416</source_obj> <sink_obj>419</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1033"> <id>1182</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>419</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1034"> <id>1183</id> <edge_type>1</edge_type> <source_obj>419</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1035"> <id>1184</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1036"> <id>1185</id> <edge_type>1</edge_type> <source_obj>415</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1037"> <id>1186</id> <edge_type>1</edge_type> <source_obj>413</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1038"> <id>1187</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1039"> <id>1188</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1040"> <id>1189</id> <edge_type>1</edge_type> <source_obj>421</source_obj> <sink_obj>422</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1041"> <id>1190</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>423</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1042"> <id>1191</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>423</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1043"> <id>1192</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>424</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1044"> <id>1194</id> <edge_type>1</edge_type> <source_obj>424</source_obj> <sink_obj>425</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1045"> <id>1195</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>425</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1046"> <id>1197</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1047"> <id>1198</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1048"> <id>1200</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1049"> <id>1201</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1050"> <id>1202</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1051"> <id>1203</id> <edge_type>1</edge_type> <source_obj>427</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1052"> <id>1204</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1053"> <id>1205</id> <edge_type>1</edge_type> <source_obj>426</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1054"> <id>1206</id> <edge_type>1</edge_type> <source_obj>428</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1055"> <id>1207</id> <edge_type>1</edge_type> <source_obj>429</source_obj> <sink_obj>430</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1056"> <id>1208</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>430</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1057"> <id>1209</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>430</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1058"> <id>1210</id> <edge_type>1</edge_type> <source_obj>423</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1059"> <id>1211</id> <edge_type>1</edge_type> <source_obj>430</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1060"> <id>1212</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1061"> <id>1213</id> <edge_type>1</edge_type> <source_obj>431</source_obj> <sink_obj>432</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1062"> <id>1214</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>433</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1063"> <id>1215</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>433</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1064"> <id>1216</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>434</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1065"> <id>1218</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>435</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1066"> <id>1219</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>435</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1067"> <id>1221</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1068"> <id>1222</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1069"> <id>1224</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>437</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1070"> <id>1225</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>437</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1071"> <id>1226</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>437</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1072"> <id>1227</id> <edge_type>1</edge_type> <source_obj>437</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1073"> <id>1228</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1074"> <id>1229</id> <edge_type>1</edge_type> <source_obj>436</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1075"> <id>1230</id> <edge_type>1</edge_type> <source_obj>438</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1076"> <id>1231</id> <edge_type>1</edge_type> <source_obj>439</source_obj> <sink_obj>440</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1077"> <id>1232</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>440</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1078"> <id>1233</id> <edge_type>1</edge_type> <source_obj>435</source_obj> <sink_obj>440</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1079"> <id>1234</id> <edge_type>1</edge_type> <source_obj>433</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1080"> <id>1235</id> <edge_type>1</edge_type> <source_obj>440</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1081"> <id>1236</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1082"> <id>1237</id> <edge_type>1</edge_type> <source_obj>441</source_obj> <sink_obj>442</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1083"> <id>1238</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1084"> <id>1239</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1085"> <id>1240</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1086"> <id>1242</id> <edge_type>1</edge_type> <source_obj>444</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1087"> <id>1243</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1088"> <id>1245</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1089"> <id>1246</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1090"> <id>1248</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1091"> <id>1249</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1092"> <id>1250</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1093"> <id>1251</id> <edge_type>1</edge_type> <source_obj>447</source_obj> <sink_obj>448</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1094"> <id>1252</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>448</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1095"> <id>1253</id> <edge_type>1</edge_type> <source_obj>446</source_obj> <sink_obj>449</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1096"> <id>1254</id> <edge_type>1</edge_type> <source_obj>448</source_obj> <sink_obj>449</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1097"> <id>1255</id> <edge_type>1</edge_type> <source_obj>449</source_obj> <sink_obj>450</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1098"> <id>1256</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>450</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1099"> <id>1257</id> <edge_type>1</edge_type> <source_obj>445</source_obj> <sink_obj>450</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1100"> <id>1258</id> <edge_type>1</edge_type> <source_obj>443</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1101"> <id>1259</id> <edge_type>1</edge_type> <source_obj>450</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1102"> <id>1260</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1103"> <id>1261</id> <edge_type>1</edge_type> <source_obj>451</source_obj> <sink_obj>452</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1104"> <id>1262</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1105"> <id>1263</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1106"> <id>1264</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>454</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1107"> <id>1266</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>455</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1108"> <id>1267</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>455</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1109"> <id>1269</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>456</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1110"> <id>1270</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>456</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1111"> <id>1272</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>457</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1112"> <id>1273</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>457</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1113"> <id>1274</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>457</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1114"> <id>1275</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>458</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1115"> <id>1276</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>458</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1116"> <id>1277</id> <edge_type>1</edge_type> <source_obj>456</source_obj> <sink_obj>459</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1117"> <id>1278</id> <edge_type>1</edge_type> <source_obj>458</source_obj> <sink_obj>459</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1118"> <id>1279</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>460</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1119"> <id>1280</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>460</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1120"> <id>1281</id> <edge_type>1</edge_type> <source_obj>455</source_obj> <sink_obj>460</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1121"> <id>1282</id> <edge_type>1</edge_type> <source_obj>453</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1122"> <id>1283</id> <edge_type>1</edge_type> <source_obj>460</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1123"> <id>1284</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1124"> <id>1285</id> <edge_type>1</edge_type> <source_obj>461</source_obj> <sink_obj>462</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1125"> <id>1286</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>463</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1126"> <id>1287</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>463</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1127"> <id>1288</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>464</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1128"> <id>1290</id> <edge_type>1</edge_type> <source_obj>464</source_obj> <sink_obj>465</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1129"> <id>1291</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>465</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1130"> <id>1293</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>466</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1131"> <id>1294</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>466</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1132"> <id>1296</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>467</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1133"> <id>1297</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>467</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1134"> <id>1298</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>467</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1135"> <id>1299</id> <edge_type>1</edge_type> <source_obj>467</source_obj> <sink_obj>468</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1136"> <id>1300</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>468</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1137"> <id>1301</id> <edge_type>1</edge_type> <source_obj>466</source_obj> <sink_obj>469</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1138"> <id>1302</id> <edge_type>1</edge_type> <source_obj>468</source_obj> <sink_obj>469</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1139"> <id>1303</id> <edge_type>1</edge_type> <source_obj>469</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1140"> <id>1304</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1141"> <id>1305</id> <edge_type>1</edge_type> <source_obj>465</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1142"> <id>1306</id> <edge_type>1</edge_type> <source_obj>463</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1143"> <id>1307</id> <edge_type>1</edge_type> <source_obj>470</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1144"> <id>1308</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1145"> <id>1309</id> <edge_type>1</edge_type> <source_obj>471</source_obj> <sink_obj>472</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1146"> <id>1310</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>473</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1147"> <id>1311</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>473</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1148"> <id>1312</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>474</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1149"> <id>1314</id> <edge_type>1</edge_type> <source_obj>474</source_obj> <sink_obj>475</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1150"> <id>1315</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>475</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1151"> <id>1317</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>476</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1152"> <id>1318</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>476</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1153"> <id>1320</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>477</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1154"> <id>1321</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>477</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1155"> <id>1322</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>477</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1156"> <id>1323</id> <edge_type>1</edge_type> <source_obj>477</source_obj> <sink_obj>478</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1157"> <id>1324</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>478</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1158"> <id>1325</id> <edge_type>1</edge_type> <source_obj>476</source_obj> <sink_obj>479</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1159"> <id>1326</id> <edge_type>1</edge_type> <source_obj>478</source_obj> <sink_obj>479</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1160"> <id>1327</id> <edge_type>1</edge_type> <source_obj>479</source_obj> <sink_obj>480</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1161"> <id>1328</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>480</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1162"> <id>1329</id> <edge_type>1</edge_type> <source_obj>475</source_obj> <sink_obj>480</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1163"> <id>1330</id> <edge_type>1</edge_type> <source_obj>473</source_obj> <sink_obj>481</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1164"> <id>1331</id> <edge_type>1</edge_type> <source_obj>480</source_obj> <sink_obj>481</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1165"> <id>1332</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>481</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1166"> <id>1333</id> <edge_type>1</edge_type> <source_obj>481</source_obj> <sink_obj>482</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1167"> <id>1334</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>483</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1168"> <id>1335</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>483</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1169"> <id>1336</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>484</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1170"> <id>1338</id> <edge_type>1</edge_type> <source_obj>484</source_obj> <sink_obj>485</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1171"> <id>1339</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>485</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1172"> <id>1341</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>486</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1173"> <id>1342</id> <edge_type>1</edge_type> <source_obj>592</source_obj> <sink_obj>486</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1174"> <id>1344</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>487</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1175"> <id>1345</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>487</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1176"> <id>1346</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>487</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1177"> <id>1347</id> <edge_type>1</edge_type> <source_obj>487</source_obj> <sink_obj>488</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1178"> <id>1348</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>488</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1179"> <id>1349</id> <edge_type>1</edge_type> <source_obj>486</source_obj> <sink_obj>489</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1180"> <id>1350</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>489</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1181"> <id>1351</id> <edge_type>1</edge_type> <source_obj>489</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1182"> <id>1352</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1183"> <id>1353</id> <edge_type>1</edge_type> <source_obj>485</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1184"> <id>1354</id> <edge_type>1</edge_type> <source_obj>483</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1185"> <id>1355</id> <edge_type>1</edge_type> <source_obj>490</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1186"> <id>1356</id> <edge_type>1</edge_type> <source_obj>500</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1187"> <id>1357</id> <edge_type>1</edge_type> <source_obj>491</source_obj> <sink_obj>492</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1188"> <id>1360</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1189"> <id>1361</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1190"> <id>1362</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1191"> <id>1363</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1192"> <id>1364</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1193"> <id>1365</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1194"> <id>1366</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1195"> <id>1367</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1196"> <id>1368</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1197"> <id>1369</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1198"> <id>1370</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1199"> <id>1371</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1200"> <id>1372</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1201"> <id>1373</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1202"> <id>1374</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1203"> <id>1375</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1204"> <id>1376</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1205"> <id>1377</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1206"> <id>1378</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1207"> <id>1379</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1208"> <id>1380</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1209"> <id>1381</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1210"> <id>1382</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1211"> <id>1383</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1212"> <id>1384</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1213"> <id>1385</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1214"> <id>1386</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1215"> <id>1387</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1216"> <id>1388</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1217"> <id>1389</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1218"> <id>1390</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1219"> <id>1391</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1220"> <id>1392</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1221"> <id>1393</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1222"> <id>1394</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1223"> <id>1395</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1224"> <id>1396</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1225"> <id>1397</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1226"> <id>1398</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1227"> <id>1399</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1228"> <id>1400</id> <edge_type>1</edge_type> <source_obj>262</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1229"> <id>1401</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1230"> <id>1402</id> <edge_type>1</edge_type> <source_obj>282</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1231"> <id>1403</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1232"> <id>1404</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1233"> <id>1405</id> <edge_type>1</edge_type> <source_obj>312</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1234"> <id>1406</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1235"> <id>1407</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1236"> <id>1408</id> <edge_type>1</edge_type> <source_obj>342</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1237"> <id>1409</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1238"> <id>1410</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1239"> <id>1411</id> <edge_type>1</edge_type> <source_obj>372</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1240"> <id>1412</id> <edge_type>1</edge_type> <source_obj>382</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1241"> <id>1413</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1242"> <id>1414</id> <edge_type>1</edge_type> <source_obj>402</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1243"> <id>1415</id> <edge_type>1</edge_type> <source_obj>412</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1244"> <id>1416</id> <edge_type>1</edge_type> <source_obj>422</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1245"> <id>1417</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1246"> <id>1418</id> <edge_type>1</edge_type> <source_obj>442</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1247"> <id>1419</id> <edge_type>1</edge_type> <source_obj>452</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1248"> <id>1420</id> <edge_type>1</edge_type> <source_obj>462</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1249"> <id>1421</id> <edge_type>1</edge_type> <source_obj>472</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1250"> <id>1422</id> <edge_type>1</edge_type> <source_obj>482</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1251"> <id>1423</id> <edge_type>1</edge_type> <source_obj>492</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1252"> <id>1424</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>495</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1253"> <id>2549</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1254"> <id>2550</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>498</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1255"> <id>2551</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>496</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1256"> <id>2552</id> <edge_type>2</edge_type> <source_obj>496</source_obj> <sink_obj>136</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="_1257"> <mId>1</mId> <mTag>relu&lt;array,array&lt;ap_fixed,32u&gt;,relu_config13&gt;</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>67</mMinLatency> <mMaxLatency>67</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1258"> <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>130</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="_1259"> <mId>3</mId> <mTag>ReLUActLoop</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>136</item> <item>496</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>65</mMinLatency> <mMaxLatency>65</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1260"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>498</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>361</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>129</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>230</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>233</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>240</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>243</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>246</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>247</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>251</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>252</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>253</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>254</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>255</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>256</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>257</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>258</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>259</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>260</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>261</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>262</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>263</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>264</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>265</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>266</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>267</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>268</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>269</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>270</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>271</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>272</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>273</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>274</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>275</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>276</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>277</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>278</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>279</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>280</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>281</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>282</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>283</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>284</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>285</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>286</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>287</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>288</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>289</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>290</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>291</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>292</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>293</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>294</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>295</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>296</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>297</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>298</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>299</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>300</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>301</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>302</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>303</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>304</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>305</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>306</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>307</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>308</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>309</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>310</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>311</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>312</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>313</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>314</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>315</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>316</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>317</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>318</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>319</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>320</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>321</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>322</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>323</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>324</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>325</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>326</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>327</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>328</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>329</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>330</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>331</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>332</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>333</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>334</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>335</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>336</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>337</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>338</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>339</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>340</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>341</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>342</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>343</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>344</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>345</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>346</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>347</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>348</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>349</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>350</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>351</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>352</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>353</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>354</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>355</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>356</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>357</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>358</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>359</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>360</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>361</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>362</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>363</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>364</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>365</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>366</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>367</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>368</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>369</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>370</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>371</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>372</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>373</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>374</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>375</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>376</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>377</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>378</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>379</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>380</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>381</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>382</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>383</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>384</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>385</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>386</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>387</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>388</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>389</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>390</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>391</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>392</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>393</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>394</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>395</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>396</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>397</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>398</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>399</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>400</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>401</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>402</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>403</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>404</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>405</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>406</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>407</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>408</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>409</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>410</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>411</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>412</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>413</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>414</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>415</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>416</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>417</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>418</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>419</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>420</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>421</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>422</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>423</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>424</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>425</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>426</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>427</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>428</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>429</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>430</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>431</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>432</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>433</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>434</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>435</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>436</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>437</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>438</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>439</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>440</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>441</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>442</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>443</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>444</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>445</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>446</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>447</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>448</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>449</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>450</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>451</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>452</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>453</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>454</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>455</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>456</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>457</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>458</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>459</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>460</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>461</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>462</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>463</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>464</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>465</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>466</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>467</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>468</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>469</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>470</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>471</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>472</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>473</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>474</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>475</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>476</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>477</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>478</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>479</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>480</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>481</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>482</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>483</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>484</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>485</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>486</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>487</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>488</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>489</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>490</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>491</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>492</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>493</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>495</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>497</first> <second> <first>4</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>130</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>496</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>498</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_1261"> <region_name>ReLUActLoop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>136</item> <item>496</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>
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ type handling in skill -- -- |___/_|\_\_|_|____| by: Timm Felden -- -- -- pragma Ada_2012; with Ada.Containers.Vectors; with Ada.Unchecked_Conversion; with Skill.Field_Types; with Skill.Internal.Parts; with Ada.Unchecked_Deallocation; with Skill.Field_Declarations; with Skill.Streams.Reader; with Skill.Iterators.Dynamic_New_Instances; with Skill.Iterators.Static_Data; with Skill.Iterators.Type_Hierarchy_Iterator; with Skill.Iterators.Type_Order; -- pool realizations are moved to the pools.adb, because this way we can work -- around several restrictions of the (generic) ada type system. package body Skill.Types.Pools is function Dynamic (This : access Pool_T) return Pool_Dyn is type P is access all Pool_T; function Convert is new Ada.Unchecked_Conversion (P, Pool_Dyn); begin return Convert (P (This)); end Dynamic; function To_Pool (This : access Pool_T'Class) return Pool is type T is access all Pool_T; function Convert is new Ada.Unchecked_Conversion (T, Pool); begin return Convert (T (This)); end To_Pool; -- pool properties function To_String (This : Pool_T) return String is (This.Name.all); function Skill_Name (This : access Pool_T) return String_Access is (This.Name); function ID (This : access Pool_T) return Natural is (This.Type_Id); function Base (This : access Pool_T'Class) return Base_Pool is (This.Base); function Super (This : access Pool_T) return Pool is (This.Super); function Next (This : access Pool_T'Class) return Pool is (This.Next); procedure Establish_Next (This : access Base_Pool_T'Class) is procedure Set_Next_Pool (This : access Pool_T'Class; Nx : Pool) is begin if This.Sub_Pools.Is_Empty then This.Next := Nx; else This.Next := This.Sub_Pools.First_Element.To_Pool; for I in 0 .. This.Sub_Pools.Length - 2 loop Set_Next_Pool (This.Sub_Pools.Element (I).To_Pool, This.Sub_Pools.Element (I + 1).To_Pool); end loop; Set_Next_Pool (This.Sub_Pools.Last_Element, Nx); end if; end Set_Next_Pool; begin Set_Next_Pool (This, null); end Establish_Next; function Type_Hierarchy_Height (This : access Pool_T'Class) return Natural is (This.Super_Type_Count); function Size (This : access Pool_T'Class) return Natural is begin if This.Fixed then return This.Cached_Size; end if; declare Size : Natural := 0; Iter : aliased Skill.Iterators.Type_Hierarchy_Iterator.Iterator; begin Iter.Init (This.To_Pool); while Iter.Has_Next loop Size := Size + Iter.Next.Static_Size; end loop; return Size; end; end Size; function Static_Size (This : access Pool_T'Class) return Natural is begin return This.Static_Data_Instances + Natural (This.New_Objects.Length); end Static_Size; function Static_Size_With_Deleted (This : access Pool_T'Class) return Natural is begin return This.Static_Data_Instances + Natural (This.New_Objects.Length) - This.Deleted_Count; end Static_Size_With_Deleted; function New_Objects_Size (This : access Pool_T'Class) return Natural is (This.New_Objects.Length); function New_Objects_Element (This : access Pool_T'Class; Idx : Natural) return Annotation is (This.New_Objects.Element (Idx)); procedure Fixed (This : access Pool_T'Class; Fix : Boolean) is procedure Set (P : Sub_Pool) is begin Fixed (P, True); This.Cached_Size := This.Cached_Size + P.Cached_Size; end Set; begin if This.Fixed = Fix then return; end if; This.Fixed := Fix; if Fix then This.Cached_Size := This.Static_Size_With_Deleted; This.Sub_Pools.Foreach (Set'Access); elsif This.Super /= null then Fixed (This.Super, False); end if; end Fixed; procedure Do_In_Type_Order (This : access Pool_T'Class; F : not null access procedure (I : Annotation)) is Iter : aliased Skill.Iterators.Type_Order.Iterator; begin Iter.Init (This.To_Pool); while Iter.Has_Next loop F (Iter.Next); end loop; end Do_In_Type_Order; procedure Do_For_Static_Instances (This : access Pool_T'Class; F : not null access procedure (I : Annotation)) is Iter : aliased Skill.Iterators.Static_Data.Iterator := Skill.Iterators.Static_Data.Make (This.To_Pool); begin while Iter.Has_Next loop F (Iter.Next); end loop; end Do_For_Static_Instances; function First_Dynamic_New_Instance (This : access Pool_T'Class) return Annotation is P : Pool := This.To_Pool; begin while P /= null loop if P.New_Objects.Length > 0 then return P.New_Objects.First_Element; end if; P := P.Next; end loop; return null; end First_Dynamic_New_Instance; function Blocks (This : access Pool_T) return Skill.Internal.Parts.Blocks is (This.Blocks); function Data_Fields (This : access Pool_T) return Skill.Field_Declarations.Field_Vector is (This.Data_Fields_F); -- internal use only function Add_Field (This : access Pool_T; ID : Natural; T : Field_Types.Field_Type; Name : String_Access; Restrictions : Field_Restrictions.Vector) return Skill.Field_Declarations.Field_Declaration is function Convert is new Ada.Unchecked_Conversion (Field_Declarations.Lazy_Field, Field_Declarations.Field_Declaration); type P is access all Pool_T; function Convert is new Ada.Unchecked_Conversion (P, Field_Declarations.Owner_T); F : Field_Declarations.Field_Declaration := Convert (Skill.Field_Declarations.Make_Lazy_Field (Convert (P (This)), ID, T, Name, Restrictions)); begin F.Restrictions := Restrictions; This.Data_Fields.Append (F); return F; end Add_Field; function Add_Field (This : access Base_Pool_T; ID : Natural; T : Field_Types.Field_Type; Name : String_Access; Restrictions : Field_Restrictions.Vector) return Skill.Field_Declarations.Field_Declaration is type P is access all Pool_T; function Convert is new Ada.Unchecked_Conversion (P, Pool); begin return Convert (P (This)).Add_Field (ID, T, Name, Restrictions); end Add_Field; function Add_Field (This : access Sub_Pool_T; ID : Natural; T : Field_Types.Field_Type; Name : String_Access; Restrictions : Field_Restrictions.Vector) return Skill.Field_Declarations.Field_Declaration is type P is access all Pool_T; function Convert is new Ada.Unchecked_Conversion (P, Pool); begin return Convert (P (This)).Add_Field (ID, T, Name, Restrictions); end Add_Field; function Pool_Offset (This : access Pool_T'Class) return Integer is begin return This.Type_Id - 32; end Pool_Offset; function Sub_Pools (This : access Pool_T'Class) return Sub_Pool_Vector is (This.Sub_Pools); function Known_Fields (This : access Pool_T'Class) return String_Access_Array_Access is (This.Known_Fields); -- base pool properties -- internal use only function Data (This : access Base_Pool_T) return Skill.Types.Annotation_Array is (This.Data); procedure Compress (This : access Base_Pool_T'Class; Lbpo_Map : Skill.Internal.Lbpo_Map_T) is D : Annotation_Array := new Annotation_Array_T (1 .. This.Size); P : Skill_ID_T := 1; procedure Update (I : Annotation) is begin if 0 /= I.Skill_ID then D (P) := I; I.Skill_ID := P; P := P + 1; end if; end Update; begin This.Do_In_Type_Order (Update'Access); This.Data := D; This.Update_After_Compress (Lbpo_Map); end Compress; procedure Update_After_Compress (This : access Pool_T'Class; Lbpo_Map : Skill.Internal.Lbpo_Map_T) is procedure Reset (D : Field_Declarations.Field_Declaration) is use type Interfaces.Integer_64; begin D.Data_Chunks.Clear; D.Add_Chunk (new Internal.Parts.Bulk_Chunk'(-1, -1, This.Cached_Size, 1)); end Reset; begin This.Static_Data_Instances := This.Static_Data_Instances + This.New_Objects.Length - This.Deleted_Count; This.New_Objects.Clear; This.Deleted_Count := 0; This.Blocks.Clear; This.Blocks.Append (Skill.Internal.Parts.Block' (Lbpo_Map (This.Pool_Offset), This.Static_Data_Instances, This.Size)); -- reset Data chunks This.Data_Fields_F.Foreach (Reset'Access); for I in 0 .. This.Sub_Pools.Length - 1 loop This.Sub_Pools.Element (I).Dynamic.Update_After_Compress (Lbpo_Map); end loop; end Update_After_Compress; -- invoked by resize pool (from base pool implementation) procedure Resize_Data (This : access Base_Pool_T'Class) is Count : Types.Skill_ID_T := This.Blocks.Last_Element.Dynamic_Count; D : Annotation_Array := new Annotation_Array_T (This.Data'First .. (This.Data'Last + Count)); procedure Free is new Ada.Unchecked_Deallocation (Object => Annotation_Array_T, Name => Annotation_Array); begin D (This.Data'First .. This.Data'Last) := This.Data.all; if This.Data /= Empty_Data then Free (This.Data); end if; This.Data := D; end Resize_Data; -- Called after a prepare append operation to write empty the new objects -- buffer and to set blocks correctly procedure Update_After_Prepare_Append (This : access Pool_T'Class; Chunk_Map : Skill.Field_Declarations.Chunk_Map) is New_Instances : constant Boolean := null /= This.Dynamic.First_Dynamic_New_Instance; New_Pool : constant Boolean := This.Blocks.Is_Empty; New_Field : Boolean := False; procedure Find_New_Field (F : Field_Declarations.Field_Declaration) is begin if not New_Field and then F.Data_Chunks.Is_Empty then New_Field := True; end if; end Find_New_Field; begin This.Data_Fields_F.Foreach (Find_New_Field'Access); if New_Pool or else New_Instances or else New_Field then declare -- build block chunk Lcount : Natural := This.New_Objects_Size; procedure Dynamic_Lcount (P : Sub_Pool) is begin Lcount := Lcount + P.To_Pool.Dynamic.New_Objects_Size; P.Sub_Pools.Foreach (Dynamic_Lcount'Access); end Dynamic_Lcount; Lbpo : Natural; begin This.Sub_Pools.Foreach (Dynamic_Lcount'Access); if 0 = Lcount then Lbpo := 0; else Lbpo := This.Dynamic.First_Dynamic_New_Instance.Skill_ID - 1; end if; This.Blocks.Append (Skill.Internal.Parts.Block' (BPO => Lbpo, Static_Count => Lcount, Dynamic_Count => Lcount)); -- @note: if this does not hold for p; then it will not hold for -- p.subPools either! if New_Instances or else not New_Pool then -- build field chunks for I in 1 .. This.Data_Fields_F.Length loop declare F : Field_Declarations.Field_Declaration := This.Data_Fields_F.Element (I); CE : Skill.Field_Declarations.Chunk_Entry; begin if F.Data_Chunks.Is_Empty then CE := new Skill.Field_Declarations.Chunk_Entry_T' (C => new Skill.Internal.Parts.Bulk_Chunk' (First => Types.v64 (-1), Last => Types.v64 (-1), Count => This.Size, Block_Count => This.Blocks.Length), Input => Skill.Streams.Reader.Empty_Sub_Stream); F.Data_Chunks.Append (CE); Chunk_Map.Include (F, CE.C); elsif New_Instances then CE := new Skill.Field_Declarations.Chunk_Entry_T' (C => new Skill.Internal.Parts.Simple_Chunk' (First => Types.v64 (-1), Last => Types.v64 (-1), Count => Lcount, BPO => Lbpo), Input => Skill.Streams.Reader.Empty_Sub_Stream); F.Data_Chunks.Append (CE); Chunk_Map.Include (F, CE.C); end if; end; end loop; end if; end; end if; -- notify sub pools declare procedure Update (P : Sub_Pool) is begin Update_After_Prepare_Append (P, Chunk_Map); end Update; begin This.Sub_Pools.Foreach (Update'Access); end; -- remove new objects, because they are regular objects by now -- TODO if we ever want to get rid of Destroyed mode -- staticData.addAll(newObjects); -- newObjects.clear(); -- newObjects.trimToSize(); end Update_After_Prepare_Append; procedure Prepare_Append (This : access Base_Pool_T'Class; Chunk_Map : Skill.Field_Declarations.Chunk_Map) is New_Instances : constant Boolean := null /= This.Dynamic.First_Dynamic_New_Instance; begin -- check if we have to append at all if not New_Instances and then not This.Blocks.Is_Empty and then not This.Data_Fields.Is_Empty then declare Done : Boolean := True; procedure Check (F : Field_Declarations.Field_Declaration) is begin if F.Data_Chunks.Is_Empty then Done := False; end if; end Check; begin This.Data_Fields_F.Foreach (Check'Access); if Done then return; end if; end; end if; if New_Instances then -- we have to resize declare Count : Natural := This.Size; D : Annotation_Array := new Annotation_Array_T (This.Data'First .. Count); procedure Free is new Ada.Unchecked_Deallocation (Object => Annotation_Array_T, Name => Annotation_Array); I : Natural := This.Data'Last + 1; Iter : aliased Skill.Iterators.Dynamic_New_Instances.Iterator; Inst : Annotation; begin Iter.Init (This.To_Pool); D (This.Data'First .. This.Data'Last) := This.Data.all; while Iter.Has_Next loop Inst := Iter.Next; D (I) := Inst; Inst.Skill_ID := I; I := I + 1; end loop; if This.Data /= Empty_Data then Free (This.Data); end if; This.Data := D; end; end if; Update_After_Prepare_Append (This, Chunk_Map); end Prepare_Append; procedure Set_Owner (This : access Base_Pool_T'Class; Owner : access Skill.Files.File_T'Class) is type P is access all Skill.Files.File_T'Class; function Convert is new Ada.Unchecked_Conversion (P, Owner_T); begin This.Owner := Convert (P (Owner)); end Set_Owner; procedure Delete (This : access Pool_T'Class; Target : access Skill_Object'Class) is begin Target.Skill_ID := 0; This.Deleted_Count := This.Deleted_Count + 1; end Delete; end Skill.Types.Pools;
with float_Math.Geometry.d3.Modeller.Forge; package body openGL.IO.lat_long_Radius is function to_Model (math_Model : access Geometry_3d.a_Model) return IO.Model is site_Count : constant long_Index_t := long_Index_t (math_Model.site_Count); coord_Count : constant long_Index_t := 0; --get_coord_Count; -- TODO: Add texturing. normal_Count : constant long_Index_t := 0; --collada_Normals'Length / 3; -- TODO: Add lighting. the_Sites : constant Sites_view := new many_Sites (1 .. site_Count); the_Normals : constant Normals_view := new many_Normals (1 .. normal_Count); the_Coords : Coords_view; the_Faces : IO.Faces_view := new IO.Faces (1 .. 50_000); face_Count : long_Index_t := 0; begin if coord_Count > 0 then the_Coords := new many_Coordinates_2D (1 .. coord_Count); end if; for i in 1 .. Integer (site_Count) loop the_Sites (long_Index_t (i)) := math_Model.Sites (i); end loop; -- Primitives -- declare the_Vertices : Vertices (1 .. long_Index_t (math_Model.tri_Count * 3)); Start : long_Index_t; the_Face : IO.Face; begin for i in math_Model.Triangles'Range loop Start := long_Index_t ((i - 1) * 3 + 1); the_Vertices (Start ) := (site_Id => long_Index_t (math_Model.Triangles (i) (1)), others => 0); the_Vertices (Start + 1) := (site_Id => long_Index_t (math_Model.Triangles (i) (2)), others => 0); the_Vertices (Start + 2) := (site_Id => long_Index_t (math_Model.Triangles (i) (3)), others => 0); the_Face := (Triangle, the_Vertices (Start .. Start + 2)); face_Count := face_Count + 1; the_Faces (face_Count) := the_Face; end loop; end; declare used_Faces : constant IO.Faces_view := new IO.Faces' (the_Faces (1 .. face_Count)); begin free (the_Faces); return (Sites => the_Sites, Coords => the_Coords, Normals => the_Normals, Weights => null, Faces => used_Faces); end; end to_Model; function to_Model (model_File : in String) return IO.Model is use float_Math.Geometry.d3.Modeller.Forge; the_math_Model : aliased Geometry_3d.a_Model := mesh_Model_from (Model => polar_Model_from (model_File)); begin return to_Model (the_math_Model'Access); end to_Model; end openGL.IO.lat_long_Radius;
-- -*- Mode: Ada -*- -- Filename : crash.adb -- Description : Provides access to the multiboot information from GRUB -- Legacy and GRUB 2. -- Author : Luke A. Guest -- Created On : Thur Nov 17 16:52:05 2016 -- Licence : See LICENCE in the root directory. with Ada.Unchecked_Conversion; with Interfaces.C; with System.Address_To_Access_Conversions; with System.Address_Operations; use System.Address_Operations; with VGA_Console; use VGA_Console; procedure Crash (Source_Location : System.Address; Line : Integer) is package C renames Interfaces.C; -- Get the length of the C NULL terminated string. function Length (Source_Location : System.Address) return C.size_t is use type C.size_t; function Convert is new Ada.Unchecked_Conversion (Source => C.size_t, Target => System.Address); package To_Char is new System.Address_To_Access_Conversions (Object => C.char); Count : C.size_t := 0; Char : To_Char.Object_Pointer := To_Char.To_Pointer (AddA (Source_Location, Convert (Count))); begin while C.char'Pos (Char.all) /= 0 loop Count := Count + 1; Char := To_Char.To_Pointer (AddA (Source_Location, Convert (Count))); end loop; return Count; end Length; -- This is really ugly, just to convert an address pointing to a C NULL terminated string to an Ada String! Source_Length : constant C.size_t := Length (Source_Location); type Source_Chars is new C.char_array (0 .. Source_Length); C_Str : Source_Chars with Address => Source_Location; pragma Import (Convention => Ada, Entity => C_Str); Source_Str : constant String := C.To_Ada (C.char_array (C_Str)); begin Put (Str => "** Kernel crashed at: " & Source_Str & ":" & Integer'Image (Line) & " **", X => 1, Y => 10, Foreground => White, Background => Red); -- TODO: Dump registers. Hang : loop null; end loop Hang; end Crash;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . I N T E G E R _ A U X -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994,1995,1996 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.Wide_Text_IO.Generic_Aux; use Ada.Wide_Text_IO.Generic_Aux; with System.Img_BIU; use System.Img_BIU; with System.Img_Int; use System.Img_Int; with System.Img_LLB; use System.Img_LLB; with System.Img_LLI; use System.Img_LLI; with System.Img_LLW; use System.Img_LLW; with System.Img_WIU; use System.Img_WIU; with System.Val_Int; use System.Val_Int; with System.Val_LLI; use System.Val_LLI; package body Ada.Wide_Text_IO.Integer_Aux is ----------------------- -- Local Subprograms -- ----------------------- procedure Load_Integer (File : in File_Type; Buf : out String; Ptr : in out Natural); -- This is an auxiliary routine that is used to load an possibly signed -- integer literal value from the input file into Buf, starting at Ptr + 1. -- On return, Ptr is set to the last character stored. ------------- -- Get_Int -- ------------- procedure Get_Int (File : in File_Type; Item : out Integer; Width : in Field) is Buf : String (1 .. Field'Last); Ptr : aliased Integer := 1; Stop : Integer := 0; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Integer (File, Buf, Stop); end if; Item := Scan_Integer (Buf, Ptr'Access, Stop); Check_End_Of_Field (File, Buf, Stop, Ptr, Width); end Get_Int; ------------- -- Get_LLI -- ------------- procedure Get_LLI (File : in File_Type; Item : out Long_Long_Integer; Width : in Field) is Buf : String (1 .. Field'Last); Ptr : aliased Integer := 1; Stop : Integer := 0; begin if Width /= 0 then Load_Width (File, Width, Buf, Stop); String_Skip (Buf, Ptr); else Load_Integer (File, Buf, Stop); end if; Item := Scan_Long_Long_Integer (Buf, Ptr'Access, Stop); Check_End_Of_Field (File, Buf, Stop, Ptr, Width); end Get_LLI; -------------- -- Gets_Int -- -------------- procedure Gets_Int (From : in String; Item : out Integer; Last : out Positive) is Pos : aliased Integer; begin String_Skip (From, Pos); Item := Scan_Integer (From, Pos'Access, From'Last); Last := Pos - 1; exception when Constraint_Error => Last := Pos - 1; raise Data_Error; end Gets_Int; -------------- -- Gets_LLI -- -------------- procedure Gets_LLI (From : in String; Item : out Long_Long_Integer; Last : out Positive) is Pos : aliased Integer; begin String_Skip (From, Pos); Item := Scan_Long_Long_Integer (From, Pos'Access, From'Last); Last := Pos - 1; exception when Constraint_Error => Last := Pos - 1; raise Data_Error; end Gets_LLI; ------------------ -- Load_Integer -- ------------------ procedure Load_Integer (File : in File_Type; Buf : out String; Ptr : in out Natural) is Hash_Loc : Natural; Loaded : Boolean; begin Load_Skip (File); Load (File, Buf, Ptr, '+', '-'); Load_Digits (File, Buf, Ptr, Loaded); if Loaded then Load (File, Buf, Ptr, '#', ':', Loaded); if Loaded then Hash_Loc := Ptr; Load_Extended_Digits (File, Buf, Ptr); Load (File, Buf, Ptr, Buf (Hash_Loc)); end if; Load (File, Buf, Ptr, 'E', 'e', Loaded); if Loaded then -- Note: it is strange to allow a minus sign, since the syntax -- does not, but that is what ACVC test CE3704F, case (6) wants. Load (File, Buf, Ptr, '+', '-'); Load_Digits (File, Buf, Ptr); end if; end if; end Load_Integer; ------------- -- Put_Int -- ------------- procedure Put_Int (File : in File_Type; Item : in Integer; Width : in Field; Base : in Number_Base) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin if Base = 10 and then Width = 0 then Set_Image_Integer (Item, Buf, Ptr); elsif Base = 10 then Set_Image_Width_Integer (Item, Width, Buf, Ptr); else Set_Image_Based_Integer (Item, Base, Width, Buf, Ptr); end if; Put_Item (File, Buf (1 .. Ptr)); end Put_Int; ------------- -- Put_LLI -- ------------- procedure Put_LLI (File : in File_Type; Item : in Long_Long_Integer; Width : in Field; Base : in Number_Base) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin if Base = 10 and then Width = 0 then Set_Image_Long_Long_Integer (Item, Buf, Ptr); elsif Base = 10 then Set_Image_Width_Long_Long_Integer (Item, Width, Buf, Ptr); else Set_Image_Based_Long_Long_Integer (Item, Base, Width, Buf, Ptr); end if; Put_Item (File, Buf (1 .. Ptr)); end Put_LLI; -------------- -- Puts_Int -- -------------- procedure Puts_Int (To : out String; Item : in Integer; Base : in Number_Base) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin if Base = 10 then Set_Image_Width_Integer (Item, To'Length, Buf, Ptr); else Set_Image_Based_Integer (Item, Base, To'Length, Buf, Ptr); end if; if Ptr > To'Length then raise Layout_Error; else To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr); end if; end Puts_Int; -------------- -- Puts_LLI -- -------------- procedure Puts_LLI (To : out String; Item : in Long_Long_Integer; Base : in Number_Base) is Buf : String (1 .. Field'Last); Ptr : Natural := 0; begin if Base = 10 then Set_Image_Width_Long_Long_Integer (Item, To'Length, Buf, Ptr); else Set_Image_Based_Long_Long_Integer (Item, Base, To'Length, Buf, Ptr); end if; if Ptr > To'Length then raise Layout_Error; else To (To'First .. To'First + Ptr - 1) := Buf (1 .. Ptr); end if; end Puts_LLI; end Ada.Wide_Text_IO.Integer_Aux;
-- -- Jan & Uwe R. Zimmer, Australia, July 2011 -- with GLOBE_3D; with Real_Type; use Real_Type; with Rotations; use Rotations; with Vectors_2D_N; use Vectors_2D_N; with Vectors_3D; use Vectors_3D; package Graphics_Structures is type RGB is (Red, Green, Blue); type RGBA is (Red, Green, Blue, Alpha); subtype Colour_Component_Range is Real range 0.0 .. 1.0; type RGB_Colour is array (RGB) of Colour_Component_Range; type RGBA_Colour is array (RGBA) of Colour_Component_Range; subtype Shininess_Range is Real range 0.0 .. 128.0; type Materials is record Ambient, Diffuse, Specular, Emission : RGBA_Colour; Shininess : Shininess_Range; end record; subtype Point_3D is Vector_3D; type Points_3D is array (Positive range <>) of Point_3D; type Line_3D is array (Positive range 1 .. 2) of Point_3D; type Camera is tagged record Position, Scene_Offset, Object_Offset : Vector_3D; Rotation : Quaternion_Rotation; end record; subtype Point_2D is Vector_2D_N; subtype Size_2D is Vector_2D_N; type Points_2D is array (Positive range <>) of Point_2D; type Line_2D is array (Positive range 1 .. 2) of Point_2D; type Camera_Mode_T is (Scene, Chase); type Lights_T is array (Positive range <>) of GLOBE_3D.Light_definition; -- private -- -- type RGB_Colour_F is array (RGB) of GL.Float; -- type RGB_Colour_D is array (RGB) of GL.Double; -- type RGBA_Colour_F is array (RGBA) of GL.Float; -- type RGBA_Colour_D is array (RGBA) of GL.Double; -- -- subtype Shininess_Range_F is GL.Float range 0.0 .. 128.0; -- -- type Materials_F is record -- Ambient, -- Diffuse, -- Specular, -- Emission : RGBA_Colour_F; -- Shininess : Shininess_Range_F; -- end record; end Graphics_Structures;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>zeropad2d_cl_array_array_ap_fixed_32u_config20_s</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>64</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_data_0_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[0].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>data_V_data_1_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[1].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <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>data_V_data_2_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[2].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <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>data_V_data_3_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[3].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>data_V_data_4_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[4].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>data_V_data_5_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[5].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>data_V_data_6_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[6].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>data_V_data_7_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[7].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>data_V_data_8_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[8].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>data_V_data_9_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[9].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>data_V_data_10_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[10].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>data_V_data_11_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[11].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>data_V_data_12_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[12].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_14"> <Value> <Obj> <type>1</type> <id>14</id> <name>data_V_data_13_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[13].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_15"> <Value> <Obj> <type>1</type> <id>15</id> <name>data_V_data_14_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[14].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_16"> <Value> <Obj> <type>1</type> <id>16</id> <name>data_V_data_15_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[15].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_17"> <Value> <Obj> <type>1</type> <id>17</id> <name>data_V_data_16_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[16].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_18"> <Value> <Obj> <type>1</type> <id>18</id> <name>data_V_data_17_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[17].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_19"> <Value> <Obj> <type>1</type> <id>19</id> <name>data_V_data_18_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[18].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_20"> <Value> <Obj> <type>1</type> <id>20</id> <name>data_V_data_19_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[19].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_21"> <Value> <Obj> <type>1</type> <id>21</id> <name>data_V_data_20_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[20].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_22"> <Value> <Obj> <type>1</type> <id>22</id> <name>data_V_data_21_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[21].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_23"> <Value> <Obj> <type>1</type> <id>23</id> <name>data_V_data_22_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[22].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_24"> <Value> <Obj> <type>1</type> <id>24</id> <name>data_V_data_23_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[23].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_25"> <Value> <Obj> <type>1</type> <id>25</id> <name>data_V_data_24_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[24].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_26"> <Value> <Obj> <type>1</type> <id>26</id> <name>data_V_data_25_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[25].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_27"> <Value> <Obj> <type>1</type> <id>27</id> <name>data_V_data_26_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[26].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_28"> <Value> <Obj> <type>1</type> <id>28</id> <name>data_V_data_27_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[27].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_29"> <Value> <Obj> <type>1</type> <id>29</id> <name>data_V_data_28_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[28].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_30"> <Value> <Obj> <type>1</type> <id>30</id> <name>data_V_data_29_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[29].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_31"> <Value> <Obj> <type>1</type> <id>31</id> <name>data_V_data_30_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[30].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_32"> <Value> <Obj> <type>1</type> <id>32</id> <name>data_V_data_31_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data.V.data[31].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_33"> <Value> <Obj> <type>1</type> <id>33</id> <name>res_V_data_0_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[0].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_34"> <Value> <Obj> <type>1</type> <id>34</id> <name>res_V_data_1_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[1].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_35"> <Value> <Obj> <type>1</type> <id>35</id> <name>res_V_data_2_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[2].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_36"> <Value> <Obj> <type>1</type> <id>36</id> <name>res_V_data_3_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[3].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_37"> <Value> <Obj> <type>1</type> <id>37</id> <name>res_V_data_4_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[4].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_38"> <Value> <Obj> <type>1</type> <id>38</id> <name>res_V_data_5_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[5].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_39"> <Value> <Obj> <type>1</type> <id>39</id> <name>res_V_data_6_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[6].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_40"> <Value> <Obj> <type>1</type> <id>40</id> <name>res_V_data_7_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[7].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_41"> <Value> <Obj> <type>1</type> <id>41</id> <name>res_V_data_8_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[8].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_42"> <Value> <Obj> <type>1</type> <id>42</id> <name>res_V_data_9_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[9].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_43"> <Value> <Obj> <type>1</type> <id>43</id> <name>res_V_data_10_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[10].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_44"> <Value> <Obj> <type>1</type> <id>44</id> <name>res_V_data_11_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[11].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_45"> <Value> <Obj> <type>1</type> <id>45</id> <name>res_V_data_12_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[12].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_46"> <Value> <Obj> <type>1</type> <id>46</id> <name>res_V_data_13_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[13].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_47"> <Value> <Obj> <type>1</type> <id>47</id> <name>res_V_data_14_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[14].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_48"> <Value> <Obj> <type>1</type> <id>48</id> <name>res_V_data_15_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[15].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_49"> <Value> <Obj> <type>1</type> <id>49</id> <name>res_V_data_16_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[16].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_50"> <Value> <Obj> <type>1</type> <id>50</id> <name>res_V_data_17_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[17].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_51"> <Value> <Obj> <type>1</type> <id>51</id> <name>res_V_data_18_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[18].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_52"> <Value> <Obj> <type>1</type> <id>52</id> <name>res_V_data_19_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[19].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_53"> <Value> <Obj> <type>1</type> <id>53</id> <name>res_V_data_20_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[20].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_54"> <Value> <Obj> <type>1</type> <id>54</id> <name>res_V_data_21_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[21].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_55"> <Value> <Obj> <type>1</type> <id>55</id> <name>res_V_data_22_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[22].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_56"> <Value> <Obj> <type>1</type> <id>56</id> <name>res_V_data_23_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[23].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_57"> <Value> <Obj> <type>1</type> <id>57</id> <name>res_V_data_24_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[24].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_58"> <Value> <Obj> <type>1</type> <id>58</id> <name>res_V_data_25_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[25].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_59"> <Value> <Obj> <type>1</type> <id>59</id> <name>res_V_data_26_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[26].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_60"> <Value> <Obj> <type>1</type> <id>60</id> <name>res_V_data_27_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[27].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_61"> <Value> <Obj> <type>1</type> <id>61</id> <name>res_V_data_28_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[28].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_62"> <Value> <Obj> <type>1</type> <id>62</id> <name>res_V_data_29_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[29].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_63"> <Value> <Obj> <type>1</type> <id>63</id> <name>res_V_data_30_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[30].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_64"> <Value> <Obj> <type>1</type> <id>64</id> <name>res_V_data_31_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>res.V.data[31].V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>75</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_65"> <Value> <Obj> <type>0</type> <id>131</id> <name>_ln56</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</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_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>243</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>133</id> <name>j_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>245</item> <item>246</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>134</id> <name>icmp_ln56</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln56_fu_456_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>249</item> <item>251</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>136</id> <name>j</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_fu_462_p2</rtlName> <coreName/> </Obj> <bitwidth>6</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.82</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>137</id> <name>_ln56</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>255</item> <item>256</item> <item>257</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>140</id> <name>res_V_data_0_V_write_ln16</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>16</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>65</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>267</item> <item>268</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> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> <item>287</item> <item>288</item> <item>289</item> <item>290</item> <item>291</item> <item>293</item> <item>294</item> <item>295</item> <item>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>309</item> <item>310</item> <item>311</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> </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.63</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>141</id> <name>_ln56</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>325</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>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>144</id> <name>_ln61</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>326</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>146</id> <name>i1_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>327</item> <item>328</item> <item>329</item> <item>330</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>147</id> <name>icmp_ln61</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln61_fu_468_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>331</item> <item>333</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>149</id> <name>i_3</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_3_fu_474_p2</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>334</item> <item>335</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>150</id> <name>_ln61</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>336</item> <item>337</item> <item>338</item> </oprand_edges> <opcode>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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>155</id> <name>res_V_data_0_V_write_ln16</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>16</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>65</count> <item_version>0</item_version> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> <item>356</item> <item>357</item> <item>358</item> <item>359</item> <item>360</item> <item>361</item> <item>362</item> <item>363</item> <item>364</item> <item>365</item> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>384</item> <item>385</item> <item>386</item> <item>387</item> <item>388</item> <item>389</item> <item>390</item> <item>391</item> <item>392</item> <item>393</item> <item>394</item> <item>395</item> <item>396</item> <item>397</item> <item>398</item> <item>399</item> <item>400</item> <item>401</item> <item>402</item> <item>403</item> <item>404</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.63</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>156</id> <name>_ln65</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>405</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>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>158</id> <name>j3_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>406</item> <item>407</item> <item>408</item> <item>409</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>159</id> <name>icmp_ln65</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln65_fu_480_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>410</item> <item>411</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>161</id> <name>j_7</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_7_fu_486_p2</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>412</item> <item>413</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>162</id> <name>_ln65</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>414</item> <item>415</item> <item>416</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>165</id> <name>empty_53</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>256</bitwidth> </Value> <oprand_edges> <count>33</count> <item_version>0</item_version> <item>419</item> <item>420</item> <item>421</item> <item>422</item> <item>423</item> <item>424</item> <item>425</item> <item>426</item> <item>427</item> <item>428</item> <item>429</item> <item>430</item> <item>431</item> <item>432</item> <item>433</item> <item>434</item> <item>435</item> <item>436</item> <item>437</item> <item>438</item> <item>439</item> <item>440</item> <item>441</item> <item>442</item> <item>443</item> <item>444</item> <item>445</item> <item>446</item> <item>447</item> <item>448</item> <item>449</item> <item>450</item> <item>451</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.63</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>166</id> <name>tmp_data_0_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[0].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>452</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>167</id> <name>tmp_data_1_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[1].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>453</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp_data_2_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[2].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>454</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_data_3_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[3].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>455</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>170</id> <name>tmp_data_4_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[4].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>456</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>171</id> <name>tmp_data_5_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[5].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>457</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>172</id> <name>tmp_data_6_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[6].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>458</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>173</id> <name>tmp_data_7_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>459</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>174</id> <name>tmp_data_8_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[8].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>460</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>175</id> <name>tmp_data_9_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[9].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>461</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>176</id> <name>tmp_data_10_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[10].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>462</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>177</id> <name>tmp_data_11_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[11].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>463</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>178</id> <name>tmp_data_12_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[12].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>464</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>179</id> <name>tmp_data_13_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[13].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>465</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>180</id> <name>tmp_data_14_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[14].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>466</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>181</id> <name>tmp_data_15_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[15].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>467</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>182</id> <name>tmp_data_16_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[16].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>468</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>183</id> <name>tmp_data_17_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[17].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>469</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>184</id> <name>tmp_data_18_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[18].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>470</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>185</id> <name>tmp_data_19_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[19].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>471</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>186</id> <name>tmp_data_20_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[20].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>472</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>187</id> <name>tmp_data_21_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[21].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>473</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>188</id> <name>tmp_data_22_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[22].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>474</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>189</id> <name>tmp_data_23_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[23].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>475</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>190</id> <name>tmp_data_24_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[24].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>476</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>191</id> <name>tmp_data_25_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[25].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>477</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>192</id> <name>tmp_data_26_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[26].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>478</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>193</id> <name>tmp_data_27_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[27].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>479</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>194</id> <name>tmp_data_28_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[28].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>480</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>195</id> <name>tmp_data_29_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[29].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>481</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>196</id> <name>tmp_data_30_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[30].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>482</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>197</id> <name>tmp_data_31_V</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>22</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>22</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data[31].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>483</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>198</id> <name>res_V_data_0_V_write_ln28</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>28</lineNumber> <contextFuncName>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_data&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>28</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>66</count> <item_version>0</item_version> <item>484</item> <item>485</item> <item>486</item> <item>487</item> <item>488</item> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>494</item> <item>495</item> <item>496</item> <item>497</item> <item>498</item> <item>499</item> <item>500</item> <item>501</item> <item>502</item> <item>503</item> <item>504</item> <item>505</item> <item>506</item> <item>507</item> <item>508</item> <item>509</item> <item>510</item> <item>511</item> <item>512</item> <item>513</item> <item>514</item> <item>515</item> <item>516</item> <item>517</item> <item>518</item> <item>519</item> <item>520</item> <item>521</item> <item>522</item> <item>523</item> <item>524</item> <item>525</item> <item>526</item> <item>527</item> <item>528</item> <item>529</item> <item>530</item> <item>531</item> <item>532</item> <item>533</item> <item>534</item> <item>535</item> <item>536</item> <item>537</item> <item>538</item> <item>539</item> <item>540</item> <item>541</item> <item>542</item> <item>543</item> <item>544</item> <item>545</item> <item>546</item> <item>547</item> <item>548</item> <item>1919</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.63</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>199</id> <name>_ln65</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>549</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>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>201</id> <name>_ln68</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>417</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>203</id> <name>j4_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>550</item> <item>551</item> <item>553</item> <item>554</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>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>204</id> <name>icmp_ln68</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln68_fu_652_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>555</item> <item>557</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.95</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>206</id> <name>j_9</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_9_fu_658_p2</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>558</item> <item>560</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.56</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>207</id> <name>_ln68</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>561</item> <item>562</item> <item>563</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>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>210</id> <name>res_V_data_0_V_write_ln16</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>16</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>66</count> <item_version>0</item_version> <item>564</item> <item>565</item> <item>566</item> <item>567</item> <item>568</item> <item>569</item> <item>570</item> <item>571</item> <item>572</item> <item>573</item> <item>574</item> <item>575</item> <item>576</item> <item>577</item> <item>578</item> <item>579</item> <item>580</item> <item>581</item> <item>582</item> <item>583</item> <item>584</item> <item>585</item> <item>586</item> <item>587</item> <item>588</item> <item>589</item> <item>590</item> <item>591</item> <item>592</item> <item>593</item> <item>594</item> <item>595</item> <item>596</item> <item>597</item> <item>598</item> <item>599</item> <item>600</item> <item>601</item> <item>602</item> <item>603</item> <item>604</item> <item>605</item> <item>606</item> <item>607</item> <item>608</item> <item>609</item> <item>610</item> <item>611</item> <item>612</item> <item>613</item> <item>614</item> <item>615</item> <item>616</item> <item>617</item> <item>618</item> <item>619</item> <item>620</item> <item>621</item> <item>622</item> <item>623</item> <item>624</item> <item>625</item> <item>626</item> <item>627</item> <item>628</item> <item>1920</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.63</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>211</id> <name>_ln68</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>629</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>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>214</id> <name>_ln61</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>630</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>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>216</id> <name>_ln73</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>339</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>218</id> <name>i5_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>631</item> <item>632</item> <item>633</item> <item>634</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>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>219</id> <name>icmp_ln73</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln73_fu_664_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>635</item> <item>636</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.95</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>221</id> <name>i</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_fu_670_p2</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>637</item> <item>638</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.56</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>222</id> <name>_ln73</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>639</item> <item>640</item> <item>641</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>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>226</id> <name>_ln74</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>642</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>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>228</id> <name>j6_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>643</item> <item>644</item> <item>645</item> <item>646</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>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>229</id> <name>icmp_ln74</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln74_fu_676_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>647</item> <item>648</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>231</id> <name>j_8</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_8_fu_682_p2</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>649</item> <item>650</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>232</id> <name>_ln74</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>651</item> <item>652</item> <item>653</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>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>235</id> <name>res_V_data_0_V_write_ln16</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>fill_zero&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>16</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>65</count> <item_version>0</item_version> <item>654</item> <item>655</item> <item>656</item> <item>657</item> <item>658</item> <item>659</item> <item>660</item> <item>661</item> <item>662</item> <item>663</item> <item>664</item> <item>665</item> <item>666</item> <item>667</item> <item>668</item> <item>669</item> <item>670</item> <item>671</item> <item>672</item> <item>673</item> <item>674</item> <item>675</item> <item>676</item> <item>677</item> <item>678</item> <item>679</item> <item>680</item> <item>681</item> <item>682</item> <item>683</item> <item>684</item> <item>685</item> <item>686</item> <item>687</item> <item>688</item> <item>689</item> <item>690</item> <item>691</item> <item>692</item> <item>693</item> <item>694</item> <item>695</item> <item>696</item> <item>697</item> <item>698</item> <item>699</item> <item>700</item> <item>701</item> <item>702</item> <item>703</item> <item>704</item> <item>705</item> <item>706</item> <item>707</item> <item>708</item> <item>709</item> <item>710</item> <item>711</item> <item>712</item> <item>713</item> <item>714</item> <item>715</item> <item>716</item> <item>717</item> <item>718</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.63</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>236</id> <name>_ln74</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>719</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>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>239</id> <name>_ln73</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>720</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>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>241</id> <name>_ln78</name> <fileName>firmware/nnet_utils/nnet_padding_stream.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_padding_stream.h</first> <second>zeropad2d_cl&amp;lt;nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, nnet::array&amp;lt;ap_fixed&amp;lt;8, 3, 0, 0, 0&amp;gt;, 32&amp;gt;, config20&amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_140"> <Value> <Obj> <type>2</type> <id>244</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_141"> <Value> <Obj> <type>2</type> <id>250</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>35</content> </item> <item class_id_reference="16" object_id="_142"> <Value> <Obj> <type>2</type> <id>253</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_143"> <Value> <Obj> <type>2</type> <id>292</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_144"> <Value> <Obj> <type>2</type> <id>332</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_145"> <Value> <Obj> <type>2</type> <id>552</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_146"> <Value> <Obj> <type>2</type> <id>556</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_147"> <Value> <Obj> <type>2</type> <id>559</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_148"> <Obj> <type>3</type> <id>132</id> <name>PadTop_begin</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>131</item> </node_objs> </item> <item class_id_reference="18" object_id="_149"> <Obj> <type>3</type> <id>138</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>136</item> <item>137</item> </node_objs> </item> <item class_id_reference="18" object_id="_150"> <Obj> <type>3</type> <id>142</id> <name>_ZrsILi32ELb0EEN11ap_int_baseIXT_EXT0_EE5RTypeIXT_EXT0_EE4arg1ERKS1_i.exit2.i.i.i.i.i47.0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>140</item> <item>141</item> </node_objs> </item> <item class_id_reference="18" object_id="_151"> <Obj> <type>3</type> <id>145</id> <name>PadTop_end</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>144</item> </node_objs> </item> <item class_id_reference="18" object_id="_152"> <Obj> <type>3</type> <id>151</id> <name>.preheader3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>146</item> <item>147</item> <item>149</item> <item>150</item> </node_objs> </item> <item class_id_reference="18" object_id="_153"> <Obj> <type>3</type> <id>157</id> <name>PadMain_begin</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>155</item> <item>156</item> </node_objs> </item> <item class_id_reference="18" object_id="_154"> <Obj> <type>3</type> <id>163</id> <name>.preheader2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>161</item> <item>162</item> </node_objs> </item> <item class_id_reference="18" object_id="_155"> <Obj> <type>3</type> <id>200</id> <name>fill_data&lt;array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32u&gt;, array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32u&gt;, config20&gt;.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>35</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> </node_objs> </item> <item class_id_reference="18" object_id="_156"> <Obj> <type>3</type> <id>202</id> <name>.preheader1.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>201</item> </node_objs> </item> <item class_id_reference="18" object_id="_157"> <Obj> <type>3</type> <id>208</id> <name>.preheader1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>206</item> <item>207</item> </node_objs> </item> <item class_id_reference="18" object_id="_158"> <Obj> <type>3</type> <id>212</id> <name>_ZrsILi32ELb0EEN11ap_int_baseIXT_EXT0_EE5RTypeIXT_EXT0_EE4arg1ERKS1_i.exit2.i.i.i.i.i27.0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>210</item> <item>211</item> </node_objs> </item> <item class_id_reference="18" object_id="_159"> <Obj> <type>3</type> <id>215</id> <name>PadMain_end</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>214</item> </node_objs> </item> <item class_id_reference="18" object_id="_160"> <Obj> <type>3</type> <id>217</id> <name>.preheader.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>216</item> </node_objs> </item> <item class_id_reference="18" object_id="_161"> <Obj> <type>3</type> <id>223</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>221</item> <item>222</item> </node_objs> </item> <item class_id_reference="18" object_id="_162"> <Obj> <type>3</type> <id>227</id> <name>PadBottom_begin</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>226</item> </node_objs> </item> <item class_id_reference="18" object_id="_163"> <Obj> <type>3</type> <id>233</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>228</item> <item>229</item> <item>231</item> <item>232</item> </node_objs> </item> <item class_id_reference="18" object_id="_164"> <Obj> <type>3</type> <id>237</id> <name>_ZrsILi32ELb0EEN11ap_int_baseIXT_EXT0_EE5RTypeIXT_EXT0_EE4arg1ERKS1_i.exit2.i.i.i.i.i.0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>235</item> <item>236</item> </node_objs> </item> <item class_id_reference="18" object_id="_165"> <Obj> <type>3</type> <id>240</id> <name>PadBottom_end</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>239</item> </node_objs> </item> <item class_id_reference="18" object_id="_166"> <Obj> <type>3</type> <id>242</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>241</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>488</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_167"> <id>243</id> <edge_type>2</edge_type> <source_obj>138</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>245</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>246</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>247</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>133</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>248</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>133</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>249</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>251</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>252</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>254</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>255</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>256</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>257</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>260</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>261</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>262</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>263</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>264</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>265</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>266</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>267</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>268</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>269</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>270</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>271</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>272</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>273</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>274</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>275</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>276</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>277</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>278</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>279</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>280</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>281</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>282</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>283</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>284</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>285</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>286</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>287</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>288</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>289</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>290</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>291</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>293</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>294</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>295</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>296</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>297</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>298</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>299</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>300</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>301</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>302</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>303</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>304</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>305</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>306</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>307</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>308</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>309</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>310</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>311</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>312</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>313</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>314</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>315</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>316</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>317</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>318</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>319</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>320</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>321</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>322</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>323</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>324</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>325</id> <edge_type>2</edge_type> <source_obj>138</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>326</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>327</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>146</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>328</id> <edge_type>2</edge_type> <source_obj>215</source_obj> <sink_obj>146</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>329</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>330</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>331</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>333</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>334</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>335</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>336</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>337</id> <edge_type>2</edge_type> <source_obj>157</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>338</id> <edge_type>2</edge_type> <source_obj>217</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>339</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>341</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>342</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>343</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>344</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>345</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>346</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>347</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>348</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>349</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>350</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>351</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>352</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>353</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>354</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>355</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>356</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>357</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>358</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>359</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>360</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>361</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>362</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>363</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>364</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>365</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>366</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>367</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>368</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>369</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>370</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>371</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>372</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>373</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>374</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>375</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>376</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>377</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>378</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>379</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>380</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>381</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>382</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>383</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>384</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>385</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>386</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>387</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>388</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>389</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>390</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>391</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>392</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>393</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>394</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>395</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>396</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>397</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>398</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>399</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>400</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>401</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>402</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>403</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>404</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>405</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>406</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>158</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>407</id> <edge_type>2</edge_type> <source_obj>200</source_obj> <sink_obj>158</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>408</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>409</id> <edge_type>2</edge_type> <source_obj>157</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>410</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>411</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>412</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>413</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>414</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>415</id> <edge_type>2</edge_type> <source_obj>200</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>416</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>417</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>420</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>421</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>422</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>423</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>424</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>425</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>426</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>427</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>428</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>429</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>430</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>431</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>432</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>433</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>434</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>435</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>436</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>437</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>438</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>439</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>440</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>441</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>442</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>443</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>444</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>445</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>446</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>447</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>448</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>449</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>450</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>451</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>452</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>453</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>454</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>455</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>456</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>457</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>458</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>459</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>460</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>461</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>462</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>463</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>464</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>465</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>466</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>467</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>468</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>469</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>470</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>471</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>472</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>473</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>474</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>475</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>476</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>477</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>478</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>479</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>480</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>481</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>482</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>483</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>485</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>486</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>487</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>488</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>489</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>490</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>491</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>492</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>493</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>494</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>495</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>496</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>497</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>498</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>499</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>500</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>501</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>502</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>503</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>504</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>505</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>506</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>507</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>508</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>509</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>510</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>511</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>512</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>513</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>514</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>515</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>516</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>517</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>518</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>519</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>520</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>521</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>522</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>523</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>524</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>525</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>526</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>527</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>528</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>529</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>530</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>531</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>532</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>533</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>534</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>535</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>536</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>537</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>538</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>539</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>540</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>541</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>542</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>543</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>544</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>545</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>546</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>547</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>548</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>549</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>550</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>203</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>551</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>203</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>553</id> <edge_type>1</edge_type> <source_obj>552</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>554</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>555</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>557</id> <edge_type>1</edge_type> <source_obj>556</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>558</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>560</id> <edge_type>1</edge_type> <source_obj>559</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>561</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>562</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>563</id> <edge_type>2</edge_type> <source_obj>215</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>565</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>566</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>567</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>568</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>569</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>570</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>571</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>572</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>573</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>574</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>575</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>576</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>577</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>578</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>579</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>580</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>581</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>582</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>583</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>584</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>585</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>586</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>587</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>588</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>589</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>590</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>591</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>592</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>593</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>594</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>595</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>596</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>597</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>598</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>599</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>600</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>601</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>602</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>603</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>604</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>605</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>606</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>607</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>608</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>609</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>610</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>611</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>612</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>613</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>614</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>615</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>616</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>617</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>618</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>619</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>620</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>621</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>622</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>623</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>624</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>625</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>626</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>627</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>628</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>629</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>630</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>631</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>218</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>632</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>218</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>633</id> <edge_type>1</edge_type> <source_obj>552</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>634</id> <edge_type>2</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>635</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>636</id> <edge_type>1</edge_type> <source_obj>556</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>637</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>638</id> <edge_type>1</edge_type> <source_obj>559</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>639</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>640</id> <edge_type>2</edge_type> <source_obj>227</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>641</id> <edge_type>2</edge_type> <source_obj>242</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>642</id> <edge_type>2</edge_type> <source_obj>233</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>643</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>644</id> <edge_type>2</edge_type> <source_obj>227</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>645</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>228</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>646</id> <edge_type>2</edge_type> <source_obj>237</source_obj> <sink_obj>228</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>647</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>648</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>649</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>650</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>651</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>652</id> <edge_type>2</edge_type> <source_obj>237</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>653</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>655</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>656</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>657</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>658</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>659</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>660</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>661</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>662</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>663</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>664</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>665</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>666</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>667</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>668</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>669</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>670</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>671</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>672</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>673</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>674</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>675</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>676</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>677</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>678</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>679</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>680</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>681</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>682</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>683</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>684</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>685</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>686</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>687</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>688</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>689</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>690</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>691</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>692</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>693</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>694</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>695</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>696</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>697</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>698</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>699</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>700</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>701</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>702</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>703</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>704</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>705</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>706</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>707</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>708</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>709</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>710</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>711</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>712</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>713</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>714</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>715</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>716</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>717</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>718</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>719</id> <edge_type>2</edge_type> <source_obj>233</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>720</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>1895</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>1896</id> <edge_type>2</edge_type> <source_obj>138</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>1897</id> <edge_type>2</edge_type> <source_obj>138</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>1898</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>138</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>1899</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>1900</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>1901</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>1902</id> <edge_type>2</edge_type> <source_obj>157</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>1903</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>1904</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>1905</id> <edge_type>2</edge_type> <source_obj>200</source_obj> <sink_obj>163</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_640"> <id>1906</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_641"> <id>1907</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>1908</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_643"> <id>1909</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>208</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>1910</id> <edge_type>2</edge_type> <source_obj>215</source_obj> <sink_obj>151</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>1911</id> <edge_type>2</edge_type> <source_obj>217</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>1912</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>1913</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>1914</id> <edge_type>2</edge_type> <source_obj>227</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>1915</id> <edge_type>2</edge_type> <source_obj>233</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>1916</id> <edge_type>2</edge_type> <source_obj>233</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>1917</id> <edge_type>2</edge_type> <source_obj>237</source_obj> <sink_obj>233</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>1918</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>223</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>1919</id> <edge_type>4</edge_type> <source_obj>155</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>1920</id> <edge_type>4</edge_type> <source_obj>155</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_655"> <mId>1</mId> <mTag>zeropad2d_cl&lt;array,array&lt;ap_fixed,32u&gt;,config20&gt;</mTag> <mType>0</mType> <sub_regions> <count>7</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>11</item> <item>12</item> <item>16</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>1296</mMinLatency> <mMaxLatency>1296</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_656"> <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>132</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_657"> <mId>3</mId> <mTag>PadTopWidth</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>138</item> <item>142</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>35</mMinTripCount> <mMaxTripCount>35</mMaxTripCount> <mMinLatency>35</mMinLatency> <mMaxLatency>35</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_658"> <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>145</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_659"> <mId>5</mId> <mTag>PadMain</mTag> <mType>1</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>32</mMinTripCount> <mMaxTripCount>32</mMaxTripCount> <mMinLatency>1184</mMinLatency> <mMaxLatency>1184</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_660"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>151</item> <item>157</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_661"> <mId>7</mId> <mTag>CopyMain</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>163</item> <item>200</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>32</mMinTripCount> <mMaxTripCount>32</mMaxTripCount> <mMinLatency>32</mMinLatency> <mMaxLatency>32</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_662"> <mId>8</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>202</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_663"> <mId>9</mId> <mTag>PadRight</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>208</item> <item>212</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>2</mMinTripCount> <mMaxTripCount>2</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>2</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_664"> <mId>10</mId> <mTag>Region 4</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>215</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_665"> <mId>11</mId> <mTag>Region 5</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>217</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_666"> <mId>12</mId> <mTag>PadBottom</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>13</item> <item>14</item> <item>15</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>2</mMinTripCount> <mMaxTripCount>2</mMaxTripCount> <mMinLatency>74</mMinLatency> <mMaxLatency>74</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_667"> <mId>13</mId> <mTag>Region 6</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>223</item> <item>227</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_668"> <mId>14</mId> <mTag>PadBottomWidth</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>233</item> <item>237</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>35</mMinTripCount> <mMaxTripCount>35</mMaxTripCount> <mMinLatency>35</mMinLatency> <mMaxLatency>35</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_669"> <mId>15</mId> <mTag>Region 7</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>240</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_670"> <mId>16</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>242</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_671"> <states class_id="25" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_672"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>67</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_673"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_674"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_675"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_676"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_677"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_678"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_679"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_680"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_681"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_682"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_683"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_684"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_685"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_686"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_687"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_688"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_689"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_690"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_691"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_692"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_693"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_694"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_695"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_696"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_697"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_698"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_699"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_700"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_701"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_702"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_703"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_704"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_705"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_706"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_707"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_708"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_709"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_710"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_711"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_712"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_713"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_714"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_715"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_716"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_717"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_718"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_719"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_720"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_721"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_722"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_723"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_724"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_725"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_726"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_727"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_728"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_729"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_730"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_731"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_732"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_733"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_734"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_735"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_736"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_737"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_738"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_739"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_740"> <id>2</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_741"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_742"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_743"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_744"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_745"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_746"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_747"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_748"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_749"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_750"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_751"> <id>3</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_752"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_753"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_754"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_755"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_756"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_757"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_758"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_759"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_760"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_761"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_762"> <id>216</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_763"> <id>4</id> <operations> <count>42</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_764"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_765"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_766"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_767"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_768"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_769"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_770"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_771"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_772"> <id>167</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_773"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_774"> <id>169</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_775"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_776"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_777"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_778"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_779"> <id>174</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_780"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_781"> <id>176</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_782"> <id>177</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_783"> <id>178</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_784"> <id>179</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_785"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_786"> <id>181</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_787"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_788"> <id>183</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_789"> <id>184</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_790"> <id>185</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_791"> <id>186</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_792"> <id>187</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_793"> <id>188</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_794"> <id>189</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_795"> <id>190</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_796"> <id>191</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_797"> <id>192</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_798"> <id>193</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_799"> <id>194</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_800"> <id>195</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_801"> <id>196</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_802"> <id>197</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_803"> <id>198</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_804"> <id>199</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_805"> <id>201</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_806"> <id>5</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_807"> <id>203</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_808"> <id>204</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_809"> <id>205</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_810"> <id>206</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_811"> <id>207</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_812"> <id>209</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_813"> <id>210</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_814"> <id>211</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_815"> <id>213</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_816"> <id>214</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_817"> <id>6</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_818"> <id>218</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_819"> <id>219</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_820"> <id>220</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_821"> <id>221</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_822"> <id>222</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_823"> <id>224</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_824"> <id>225</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_825"> <id>226</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_826"> <id>241</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_827"> <id>7</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_828"> <id>228</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_829"> <id>229</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_830"> <id>230</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_831"> <id>231</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_832"> <id>232</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_833"> <id>234</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_834"> <id>235</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_835"> <id>236</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_836"> <id>238</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_837"> <id>239</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_838"> <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="_839"> <inState>2</inState> <outState>2</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>134</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_840"> <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> <first> <first>134</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_841"> <inState>3</inState> <outState>4</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>147</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_842"> <inState>4</inState> <outState>4</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>159</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_843"> <inState>4</inState> <outState>5</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>159</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_844"> <inState>5</inState> <outState>5</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>204</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_845"> <inState>5</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> <first> <first>204</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_846"> <inState>3</inState> <outState>6</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>147</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_847"> <inState>6</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>219</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_848"> <inState>7</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>229</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_849"> <inState>7</inState> <outState>6</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>229</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_850"> <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>20</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_state1 ( or ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state4 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state5 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state7 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>i_3_fu_474_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>i_fu_670_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>10</second> </item> </second> </item> <item> <first>icmp_ln56_fu_456_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>6</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln61_fu_468_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>7</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln65_fu_480_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>7</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln68_fu_652_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>icmp_ln73_fu_664_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>icmp_ln74_fu_676_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>6</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>io_acc_block_signal_op102 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>io_acc_block_signal_op135 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>j_7_fu_486_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>j_8_fu_682_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>j_9_fu_658_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>10</second> </item> </second> </item> <item> <first>j_fu_462_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>105</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>41</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_0_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_10_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_11_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_12_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_13_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_14_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_15_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_16_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_17_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_18_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_19_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_1_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_20_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_21_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_22_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_23_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_24_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_25_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_26_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_27_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_28_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_29_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_2_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_30_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_31_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_3_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_4_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_5_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_6_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_7_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_8_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>data_V_data_9_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i1_0_reg_401</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i5_0_reg_434</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j3_0_reg_412</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j4_0_reg_423</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j6_0_reg_445</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j_0_reg_390</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>real_start</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_0_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_0_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_10_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_10_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_11_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_11_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_12_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_12_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_13_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_13_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_14_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_14_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_15_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_15_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_16_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_16_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_17_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_17_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_18_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_18_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_19_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_19_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_1_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_1_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_20_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_20_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_21_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_21_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_22_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_22_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_23_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_23_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_24_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_24_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_25_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_25_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_26_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_26_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_27_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_27_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_28_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_28_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_29_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_29_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_2_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_2_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_30_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_30_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_31_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_31_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_3_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_3_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_4_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_4_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_5_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_5_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_6_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_6_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_7_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_7_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_8_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_8_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>res_V_data_9_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>res_V_data_9_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>11</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>i1_0_reg_401</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>i5_0_reg_434</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>i_3_reg_699</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>i_reg_723</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>j3_0_reg_412</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>j4_0_reg_423</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>j6_0_reg_445</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>j_0_reg_390</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>start_once_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>12</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>i_3_fu_474_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>i_fu_670_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>icmp_ln56_fu_456_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>icmp_ln61_fu_468_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>icmp_ln65_fu_480_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>icmp_ln68_fu_652_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>icmp_ln73_fu_664_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>icmp_ln74_fu_676_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>229</item> </second> </item> <item> <first>j_7_fu_486_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>j_8_fu_682_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>j_9_fu_658_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>j_fu_462_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>75</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>131</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>132</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>142</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>145</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>151</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>157</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>163</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>200</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>202</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>208</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>212</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>215</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>217</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>223</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>227</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>233</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>237</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>240</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>242</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="50" tracking_level="0" version="0"> <count>52</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>190</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>394</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>405</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>427</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>449</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>456</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>468</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>474</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>480</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>486</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>492</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>497</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>502</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>507</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>512</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>517</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>527</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>532</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>537</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>542</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>547</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>552</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>557</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>562</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>567</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>577</first> <second> <count>1</count> <item_version>0</item_version> <item>183</item> </second> </item> <item> <first>582</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>597</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>602</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>607</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>612</first> <second> <count>1</count> <item_version>0</item_version> <item>190</item> </second> </item> <item> <first>617</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>622</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>627</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>637</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>642</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>647</first> <second> <count>1</count> <item_version>0</item_version> <item>197</item> </second> </item> <item> <first>652</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>658</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>664</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>670</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>676</first> <second> <count>1</count> <item_version>0</item_version> <item>229</item> </second> </item> <item> <first>682</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>50</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>i1_0_phi_fu_405</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>i5_0_phi_fu_438</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>i_3_fu_474</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>i_fu_670</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>icmp_ln56_fu_456</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>icmp_ln61_fu_468</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>icmp_ln65_fu_480</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>icmp_ln68_fu_652</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>icmp_ln73_fu_664</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>icmp_ln74_fu_676</first> <second> <count>1</count> <item_version>0</item_version> <item>229</item> </second> </item> <item> <first>j3_0_phi_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>j4_0_phi_fu_427</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>j6_0_phi_fu_449</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>j_0_phi_fu_394</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>j_7_fu_486</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>j_8_fu_682</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>j_9_fu_658</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>j_fu_462</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_data_0_V_fu_492</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>tmp_data_10_V_fu_542</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>tmp_data_11_V_fu_547</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>tmp_data_12_V_fu_552</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>tmp_data_13_V_fu_557</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>tmp_data_14_V_fu_562</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_data_15_V_fu_567</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>tmp_data_16_V_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>tmp_data_17_V_fu_577</first> <second> <count>1</count> <item_version>0</item_version> <item>183</item> </second> </item> <item> <first>tmp_data_18_V_fu_582</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>tmp_data_19_V_fu_587</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>tmp_data_1_V_fu_497</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>tmp_data_20_V_fu_592</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>tmp_data_21_V_fu_597</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>tmp_data_22_V_fu_602</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>tmp_data_23_V_fu_607</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>tmp_data_24_V_fu_612</first> <second> <count>1</count> <item_version>0</item_version> <item>190</item> </second> </item> <item> <first>tmp_data_25_V_fu_617</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>tmp_data_26_V_fu_622</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>tmp_data_27_V_fu_627</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>tmp_data_28_V_fu_632</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>tmp_data_29_V_fu_637</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>tmp_data_2_V_fu_502</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>tmp_data_30_V_fu_642</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>tmp_data_31_V_fu_647</first> <second> <count>1</count> <item_version>0</item_version> <item>197</item> </second> </item> <item> <first>tmp_data_3_V_fu_507</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>tmp_data_4_V_fu_512</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>tmp_data_5_V_fu_517</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>tmp_data_6_V_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>tmp_data_7_V_fu_527</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>tmp_data_8_V_fu_532</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>tmp_data_9_V_fu_537</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>empty_53_read_fu_322</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>grp_write_fu_190</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="55" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>12</count> <item_version>0</item_version> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>423</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>691</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>699</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>707</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>715</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>723</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>731</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>12</count> <item_version>0</item_version> <item> <first>i1_0_reg_401</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>i5_0_reg_434</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>i_3_reg_699</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>i_reg_723</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>j3_0_reg_412</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>j4_0_reg_423</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>j6_0_reg_445</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>j_0_reg_390</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>j_7_reg_707</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>j_8_reg_731</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>j_9_reg_715</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>j_reg_691</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>6</count> <item_version>0</item_version> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>423</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>6</count> <item_version>0</item_version> <item> <first>i1_0_reg_401</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>i5_0_reg_434</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>j3_0_reg_412</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>j4_0_reg_423</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>j6_0_reg_445</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>j_0_reg_390</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="56" tracking_level="0" version="0"> <count>64</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>data_V_data_0_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_10_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_11_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_12_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_13_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_14_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_15_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_16_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_17_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_18_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_19_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_1_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_20_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_21_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_22_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_23_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_24_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_25_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_26_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_27_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_28_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_29_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_2_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_30_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_31_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_3_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_4_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_5_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_6_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_7_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_8_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>data_V_data_9_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>res_V_data_0_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_10_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_11_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_12_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_13_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_14_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_15_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_16_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_17_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_18_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_19_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_1_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_20_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_21_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_22_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_23_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_24_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_25_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_26_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_27_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_28_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_29_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_2_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_30_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_31_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_3_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_4_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_5_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_6_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_7_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_8_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> <item> <first>res_V_data_9_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>5</count> <item_version>0</item_version> <item>140</item> <item>155</item> <item>198</item> <item>210</item> <item>235</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="58" tracking_level="0" version="0"> <count>64</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> <item> <first>3</first> <second>FIFO_SRL</second> </item> <item> <first>4</first> <second>FIFO_SRL</second> </item> <item> <first>5</first> <second>FIFO_SRL</second> </item> <item> <first>6</first> <second>FIFO_SRL</second> </item> <item> <first>7</first> <second>FIFO_SRL</second> </item> <item> <first>8</first> <second>FIFO_SRL</second> </item> <item> <first>9</first> <second>FIFO_SRL</second> </item> <item> <first>10</first> <second>FIFO_SRL</second> </item> <item> <first>11</first> <second>FIFO_SRL</second> </item> <item> <first>12</first> <second>FIFO_SRL</second> </item> <item> <first>13</first> <second>FIFO_SRL</second> </item> <item> <first>14</first> <second>FIFO_SRL</second> </item> <item> <first>15</first> <second>FIFO_SRL</second> </item> <item> <first>16</first> <second>FIFO_SRL</second> </item> <item> <first>17</first> <second>FIFO_SRL</second> </item> <item> <first>18</first> <second>FIFO_SRL</second> </item> <item> <first>19</first> <second>FIFO_SRL</second> </item> <item> <first>20</first> <second>FIFO_SRL</second> </item> <item> <first>21</first> <second>FIFO_SRL</second> </item> <item> <first>22</first> <second>FIFO_SRL</second> </item> <item> <first>23</first> <second>FIFO_SRL</second> </item> <item> <first>24</first> <second>FIFO_SRL</second> </item> <item> <first>25</first> <second>FIFO_SRL</second> </item> <item> <first>26</first> <second>FIFO_SRL</second> </item> <item> <first>27</first> <second>FIFO_SRL</second> </item> <item> <first>28</first> <second>FIFO_SRL</second> </item> <item> <first>29</first> <second>FIFO_SRL</second> </item> <item> <first>30</first> <second>FIFO_SRL</second> </item> <item> <first>31</first> <second>FIFO_SRL</second> </item> <item> <first>32</first> <second>FIFO_SRL</second> </item> <item> <first>33</first> <second>FIFO_SRL</second> </item> <item> <first>34</first> <second>FIFO_SRL</second> </item> <item> <first>35</first> <second>FIFO_SRL</second> </item> <item> <first>36</first> <second>FIFO_SRL</second> </item> <item> <first>37</first> <second>FIFO_SRL</second> </item> <item> <first>38</first> <second>FIFO_SRL</second> </item> <item> <first>39</first> <second>FIFO_SRL</second> </item> <item> <first>40</first> <second>FIFO_SRL</second> </item> <item> <first>41</first> <second>FIFO_SRL</second> </item> <item> <first>42</first> <second>FIFO_SRL</second> </item> <item> <first>43</first> <second>FIFO_SRL</second> </item> <item> <first>44</first> <second>FIFO_SRL</second> </item> <item> <first>45</first> <second>FIFO_SRL</second> </item> <item> <first>46</first> <second>FIFO_SRL</second> </item> <item> <first>47</first> <second>FIFO_SRL</second> </item> <item> <first>48</first> <second>FIFO_SRL</second> </item> <item> <first>49</first> <second>FIFO_SRL</second> </item> <item> <first>50</first> <second>FIFO_SRL</second> </item> <item> <first>51</first> <second>FIFO_SRL</second> </item> <item> <first>52</first> <second>FIFO_SRL</second> </item> <item> <first>53</first> <second>FIFO_SRL</second> </item> <item> <first>54</first> <second>FIFO_SRL</second> </item> <item> <first>55</first> <second>FIFO_SRL</second> </item> <item> <first>56</first> <second>FIFO_SRL</second> </item> <item> <first>57</first> <second>FIFO_SRL</second> </item> <item> <first>58</first> <second>FIFO_SRL</second> </item> <item> <first>59</first> <second>FIFO_SRL</second> </item> <item> <first>60</first> <second>FIFO_SRL</second> </item> <item> <first>61</first> <second>FIFO_SRL</second> </item> <item> <first>62</first> <second>FIFO_SRL</second> </item> <item> <first>63</first> <second>FIFO_SRL</second> </item> <item> <first>64</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with NXP.Device; use NXP.Device; with System; use System; with NXP_SVD; use NXP_SVD; with NXP_SVD.GPIO; use NXP_SVD.GPIO; with NXP_SVD.IOCON; use NXP_SVD.IOCON; with NXP_SVD.INPUTMUX; use NXP_SVD.INPUTMUX; with NXP_SVD.PINT; use NXP_SVD.PINT; package body NXP.GPIO is IOCON : aliased IOCON_Peripheral with Import, Address => S_NS_Periph (IOCON_Base); ------------- -- Any_Set -- ------------- function Any_Set (Pins : GPIO_Points) return Boolean is begin for Pin of Pins loop if Pin.Set then return True; end if; end loop; return False; end Any_Set; ---------- -- Mode -- ---------- overriding function Mode (This : GPIO_Point) return HAL.GPIO.GPIO_Mode is Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin return HAL.GPIO.Output; end Mode; -------------- -- Set_Mode -- -------------- overriding function Set_Mode (This : in out GPIO_Point; Mode : HAL.GPIO.GPIO_Config_Mode) return Boolean is Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin return True; end Set_Mode; ------------------- -- Pull_Resistor -- ------------------- overriding function Pull_Resistor (This : GPIO_Point) return HAL.GPIO.GPIO_Pull_Resistor is Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin return HAL.GPIO.Floating; end Pull_Resistor; ----------------------- -- Set_Pull_Resistor -- ----------------------- overriding function Set_Pull_Resistor (This : in out GPIO_Point; Pull : HAL.GPIO.GPIO_Pull_Resistor) return Boolean is Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin return True; end Set_Pull_Resistor; --------- -- Set -- --------- overriding function Set (This : GPIO_Point) return Boolean is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin return This.Periph.B (Port_Idx).B (Index).PBYTE; end Set; ------------- -- All_Set -- ------------- function All_Set (Pins : GPIO_Points) return Boolean is begin for Pin of Pins loop if not Pin.Set then return False; end if; end loop; return True; end All_Set; --------- -- Set -- --------- overriding procedure Set (This : in out GPIO_Point) is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin This.Periph.B (Port_Idx).B (Index).PBYTE := True; end Set; --------- -- Set -- --------- procedure Set (Pins : in out GPIO_Points) is begin for Pin of Pins loop Pin.Set; end loop; end Set; ----------- -- Clear -- ----------- overriding procedure Clear (This : in out GPIO_Point) is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin This.Periph.B (Port_Idx).B (Index).PBYTE := False; end Clear; ----------- -- Clear -- ----------- procedure Clear (Pins : in out GPIO_Points) is begin for Pin of Pins loop Pin.Clear; end loop; end Clear; ------------ -- Toggle -- ------------ overriding procedure Toggle (This : in out GPIO_Point) is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); Mask : UInt32 := 2 ** Index; begin This.Periph.NOT_k (Port_Idx) := Mask; end Toggle; ------------ -- Toggle -- ------------ procedure Toggle (Points : in out GPIO_Points) is begin for Point of Points loop Point.Toggle; end loop; end Toggle; ------------------ -- Configure_IO -- ------------------ procedure Configure_IO (This : GPIO_Point; Config : GPIO_Port_Configuration) is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); Mask : UInt32 := 2 ** Index; begin case Config.Mode is when Mode_Out => This.Periph.DIR (Port_Idx) := This.Periph.DIR (Port_Idx) or Mask; IOCON.P (Port_Idx).PIO (Index).CTL.SLEW := CTL_SLEW_Field'Enum_Val (Config.Speed'Enum_Rep); IOCON.P (Port_Idx).PIO (Index).CTL.OD := CTL_OD_Field'Enum_Val (Config.Output_Type'Enum_Rep); when Mode_In => This.Periph.DIR (Port_Idx) := This.Periph.DIR (Port_Idx) and not Mask; IOCON.P (Port_Idx).PIO (Index).CTL.MODE := CTL_MODE_Field'Enum_Val (Config.Resistors'Enum_Rep); IOCON.P (Port_Idx).PIO (Index).CTL.DIGIMODE := Digital; IOCON.P (Port_Idx).PIO (Index).CTL.INVERT := (if Config.Invert then Enabled else Disabled); when Mode_AF => IOCON.P (Port_Idx).PIO (Index).CTL.MODE := CTL_MODE_Field'Enum_Val (Config.Resistors'Enum_Rep); IOCON.P (Port_Idx).PIO (Index).CTL.DIGIMODE := Digital; IOCON.P (Port_Idx).PIO (Index).CTL.INVERT := (if Config.Invert then Enabled else Disabled); when others => null; end case; end Configure_IO; ------------------ -- Configure_IO -- ------------------ procedure Configure_IO (Points : GPIO_Points; Config : GPIO_Port_Configuration) is begin for Point of Points loop Point.Configure_IO (Config); end loop; end Configure_IO; ---------------------------------- -- Configure_Alternate_Function -- ---------------------------------- procedure Configure_Alternate_Function (This : GPIO_Point; AF : GPIO_Alternate_Function) is Port_Idx : Integer := This.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (This.Pin); begin IOCON.P (Port_Idx).PIO (Index).CTL.FUNC := UInt4 (AF); end Configure_Alternate_Function; ---------------------------------- -- Configure_Alternate_Function -- ---------------------------------- procedure Configure_Alternate_Function (Points : GPIO_Points; AF : GPIO_Alternate_Function) is begin for Point of Points loop Point.Configure_Alternate_Function (AF); end loop; end Configure_Alternate_Function; procedure Enable_GPIO_Interrupt (Pin : GPIO_Point; Config : Pint_Configuration) is Port_Idx : Integer := Pin.Port'Enum_Rep; Index : constant GPIO_Pin_Index := GPIO_Pin'Pos (Pin.Pin); INPUTMUX : aliased INPUTMUX_Peripheral with Import, Address => S_NS_Periph (INPUTMUX_Base); PINT : aliased PINT_Peripheral with Import, Address => S_NS_Periph (PINT_Base); Slot : Integer := Config.Slot'Enum_Rep; Mask : UInt8 := (2 ** Slot); begin INPUTMUX.PINTSEL (Slot'Enum_Rep).INTPIN := UInt7 ((Port_Idx * 32) + Index); if Config.Mode = Pint_Edge then PINT.ISEL.PMODE := PINT.ISEL.PMODE and not Mask; if Config.Edge = Pint_Rising then PINT.SIENR.SETENRL := Mask; else PINT.SIENF.SETENAF := Mask; end if; else -- handle level PINT.ISEL.PMODE := PINT.ISEL.PMODE or Mask; if Config.Level = Pint_High then PINT.SIENR.SETENRL := Mask; else PINT.SIENF.SETENAF := Mask; end if; end if; end Enable_GPIO_Interrupt; end NXP.GPIO;
-- Copyright 2015-2017 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
----------------------------------------------------------------------- -- ado-audits-tests -- Audit tests -- Copyright (C) 2018, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Test_Caller; with Util.Strings; with Ada.Text_IO; with Regtests.Audits.Model; with ADO.SQL; with ADO.Sessions.Entities; package body ADO.Audits.Tests is use type ADO.Objects.Object_Key_Type; package Caller is new Util.Test_Caller (Test, "ADO.Audits"); type Test_Audit_Manager is new Audit_Manager with null record; -- Save the audit changes in the database. overriding procedure Save (Manager : in out Test_Audit_Manager; Session : in out ADO.Sessions.Master_Session'Class; Object : in Auditable_Object_Record'Class; Changes : in Audit_Array); Audit_Instance : aliased Test_Audit_Manager; -- Save the audit changes in the database. overriding procedure Save (Manager : in out Test_Audit_Manager; Session : in out ADO.Sessions.Master_Session'Class; Object : in Auditable_Object_Record'Class; Changes : in Audit_Array) is pragma Unreferenced (Manager); Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; Kind : constant ADO.Entity_Type := ADO.Sessions.Entities.Find_Entity_Type (Session, Object.Get_Key); begin for C of Changes loop declare Audit : Regtests.Audits.Model.Audit_Ref; begin if Object.Key_Type = ADO.Objects.KEY_INTEGER then Audit.Set_Entity_Id (ADO.Objects.Get_Value (Object.Get_Key)); end if; Audit.Set_Entity_Type (Kind); Audit.Set_Old_Value (UBO.To_String (C.Old_Value)); Audit.Set_New_Value (UBO.To_String (C.New_Value)); Audit.Set_Date (Now); Audit.Save (Session); end; end loop; end Save; procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test ADO.Audits.Audit_Field", Test_Audit_Field'Access); end Add_Tests; procedure Set_Up (T : in out Test) is pragma Unreferenced (T); begin Regtests.Set_Audit_Manager (Audit_Instance'Access); end Set_Up; -- ------------------------------ -- Test populating Audit_Fields -- ------------------------------ procedure Test_Audit_Field (T : in out Test) is type Identifier_Array is array (1 .. 10) of ADO.Identifier; DB : ADO.Sessions.Master_Session := Regtests.Get_Master_Database; Email : Regtests.Audits.Model.Email_Ref; Prop : Regtests.Audits.Model.Property_Ref; List : Identifier_Array; begin for I in List'Range loop Email := Regtests.Audits.Model.Null_Email; Email.Set_Email ("Email" & Util.Strings.Image (I) & "@nowhere.com"); Email.Set_Status (ADO.Nullable_Integer '(23, False)); Email.Save (DB); List (I) := Email.Get_Id; end loop; DB.Commit; for Id of List loop Email.Load (DB, Id); Email.Set_Status (ADO.Nullable_Integer '(Email.Get_Status.Value + 1, False)); Email.Save (DB); Email.Set_Email ("Email" & Util.Strings.Image (Natural (Id)) & Util.Strings.Image (Email.Get_Status.Value) & "@here.com"); Email.Save (DB); Email.Set_Email ("Email" & Util.Strings.Image (Natural (Id)) & Util.Strings.Image (Email.Get_Status.Value) & "@there.com"); Email.Set_Status (ADO.Nullable_Integer '(Email.Get_Status.Value + 1, False)); Email.Save (DB); end loop; DB.Commit; for Id of List loop Email.Load (DB, Id); Email.Set_Status (ADO.Null_Integer); Email.Save (DB); end loop; DB.Commit; Prop.set_Id (Util.Tests.Get_Uuid); for I in 1 .. 10 loop Prop.Set_Value ((Value => I, Is_Null => False)); Prop.Set_Float_Value (3.0 * Float (I)); Prop.Save (DB); end loop; declare Query : ADO.SQL.Query; Audit_List : Regtests.Audits.Model.Audit_Vector; begin Query.Set_Filter ("entity_id = :entity_id"); for Id of List loop Query.Bind_Param ("entity_id", Id); Regtests.Audits.Model.List (Audit_List, DB, Query); for A of Audit_List loop Ada.Text_IO.Put_Line (ADO.Identifier'Image (Id) & " " & ADO.Identifier'Image (A.Get_Id) & " " & A.Get_Old_Value & " - " & A.Get_New_Value); Util.Tests.Assert_Equals (T, Natural (Id), Natural (A.Get_Entity_Id), "Invalid audit record: id is wrong"); end loop; Util.Tests.Assert_Equals (T, 7, Natural (Audit_List.Length), "Invalid number of audit records"); end loop; end; end Test_Audit_Field; end ADO.Audits.Tests;
<?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>4</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>100</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>5</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>101</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>6</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>102</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>7</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>103</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>9</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>105</item> <item>106</item> <item>107</item> <item>108</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>10</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>109</item> <item>111</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>12</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>112</item> <item>114</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>13</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>115</item> <item>116</item> <item>117</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</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>6</count> <item_version>0</item_version> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>262</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>17</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>124</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>19</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>125</item> <item>126</item> <item>128</item> <item>129</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>20</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>130</item> <item>131</item> <item>132</item> <item>133</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>21</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>134</item> <item>135</item> <item>136</item> <item>137</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>22</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>138</item> <item>140</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>23</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>141</item> <item>143</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>146</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>28</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>147</item> <item>148</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>29</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>149</item> <item>150</item> <item>151</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</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>152</item> <item>153</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</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>154</item> <item>155</item> <item>156</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>35</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>157</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>36</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>158</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>37</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>160</item> <item>161</item> <item>163</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>38</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>164</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>39</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>165</item> <item>166</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>40</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>167</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>41</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>168</item> <item>170</item> <item>171</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>42</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>172</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>43</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>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>44</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>176</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>45</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>177</item> <item>178</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>46</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>179</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>47</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>180</item> <item>181</item> <item>182</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>48</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>183</item> <item>184</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>50</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>185</item> <item>186</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>51</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>187</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>53</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>188</item> <item>189</item> <item>190</item> <item>191</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>54</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>192</item> <item>193</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>56</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>194</item> <item>195</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>57</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>196</item> <item>197</item> <item>198</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>60</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>6</count> <item_version>0</item_version> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>263</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>61</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>204</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>63</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>205</item> <item>206</item> <item>207</item> <item>208</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>64</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>209</item> <item>210</item> <item>211</item> <item>212</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>65</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>213</item> <item>214</item> <item>215</item> <item>216</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>66</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>217</item> <item>218</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>67</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>219</item> <item>220</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>68</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>72</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>224</item> <item>225</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>73</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>226</item> <item>227</item> <item>228</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>74</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>229</item> <item>230</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>75</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>231</item> <item>232</item> <item>233</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>79</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>234</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>80</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>235</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>81</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>236</item> <item>237</item> <item>238</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>82</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>239</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>83</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>240</item> <item>241</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>84</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>242</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>85</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>243</item> <item>244</item> <item>245</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>86</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>246</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>87</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>247</item> <item>248</item> <item>249</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>88</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>250</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>89</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>251</item> <item>252</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>90</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>253</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>91</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>254</item> <item>255</item> <item>256</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>92</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>257</item> <item>258</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>94</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>259</item> <item>260</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>95</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>261</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>97</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>99</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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>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>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>110</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>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>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>118</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>127</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>139</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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>142</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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>162</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>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>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>8</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> <item>7</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>14</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>9</item> <item>10</item> <item>12</item> <item>13</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>18</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>16</item> <item>17</item> </node_objs> </item> <item class_id_reference="18" object_id="_85"> <Obj> <type>3</type> <id>25</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>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> </node_objs> </item> <item class_id_reference="18" object_id="_86"> <Obj> <type>3</type> <id>52</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>28</item> <item>29</item> <item>30</item> <item>31</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>50</item> <item>51</item> </node_objs> </item> <item class_id_reference="18" object_id="_87"> <Obj> <type>3</type> <id>58</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>53</item> <item>54</item> <item>56</item> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_88"> <Obj> <type>3</type> <id>62</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>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_89"> <Obj> <type>3</type> <id>69</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>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_90"> <Obj> <type>3</type> <id>96</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>72</item> <item>73</item> <item>74</item> <item>75</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>94</item> <item>95</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>98</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>97</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>163</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_92"> <id>100</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>4</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>101</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>102</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>103</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>105</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>106</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>107</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>108</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>109</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>111</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>112</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>114</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>115</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>116</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>117</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>119</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>120</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>121</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>122</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>123</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>124</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>125</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>126</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>128</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>129</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>130</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>131</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>132</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>133</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>134</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>135</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>136</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>137</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>138</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>140</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>141</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>144</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>145</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>146</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>147</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>148</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>149</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>150</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>151</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>152</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>153</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>154</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>155</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>156</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>157</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>158</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>161</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>163</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>164</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>165</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>166</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>167</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>168</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>170</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>171</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>172</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>174</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>175</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>176</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>177</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>178</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>179</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>180</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>181</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>182</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>183</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>184</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>185</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>186</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>187</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>188</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>189</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>190</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>191</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>192</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>193</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>194</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>195</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>196</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>197</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>198</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>199</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>200</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>201</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>202</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>203</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>204</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>205</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>206</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>207</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>208</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>209</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>210</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>211</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>212</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>213</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>214</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>215</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>216</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>217</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>218</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>219</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>220</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>221</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>222</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>223</id> <edge_type>2</edge_type> <source_obj>98</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>224</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>225</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>226</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>227</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>228</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>229</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>230</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>231</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>232</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>233</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>234</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>235</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>237</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>238</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <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="_219"> <id>240</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>241</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>242</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>243</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>244</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>245</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>246</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>248</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>249</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>250</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>251</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>252</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>253</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>254</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>255</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>256</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>257</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>258</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>259</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>260</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>261</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>262</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>263</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>330</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>331</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>332</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>333</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>334</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>335</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>336</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>337</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>338</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>339</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>340</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>341</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>342</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>69</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="_255"> <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>1717</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_256"> <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>8</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="_257"> <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>14</item> <item>18</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>792</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_258"> <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>25</item> <item>52</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="_259"> <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>58</item> <item>62</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>792</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_260"> <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>69</item> <item>96</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="_261"> <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>98</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="_262"> <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="_263"> <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="_264"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" 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> <item class_id_reference="28" object_id="_267"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_268"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <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>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>16</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_275"> <id>3</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_276"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>16</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_278"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_279"> <id>4</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_280"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>42</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_297"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_298"> <id>5</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_299"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <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>42</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_306"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_311"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_314"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_315"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>60</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>7</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>60</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_324"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_325"> <id>8</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_326"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_336"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_342"> <id>86</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_343"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_344"> <id>9</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_345"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>86</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_352"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_354"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_357"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_358"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_359"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_360"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_361"> <id>97</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="_362"> <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="_363"> <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>10</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_364"> <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>10</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_365"> <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="_366"> <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>54</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_367"> <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>54</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_368"> <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="_369"> <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="_370"> <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>22</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_371"> <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>22</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_372"> <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="_373"> <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>66</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_374"> <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>66</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="_375"> <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>4</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>19</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>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>3</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</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>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>68</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>5</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>83</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>87</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>97</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>8</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>62</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>69</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>96</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>98</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="_376"> <region_name>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>25</item> <item>52</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="_377"> <region_name>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>69</item> <item>96</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>60</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>78</first> <second> <count>2</count> <item_version>0</item_version> <item>42</item> <item>42</item> </second> </item> <item> <first>83</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>89</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>95</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>101</first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>86</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>123</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>135</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>146</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>168</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>209</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>16</item> <item>60</item> <item>60</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>242</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>262</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>276</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>298</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>303</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>312</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>323</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>364</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>386</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>402</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>408</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>413</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>422</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>433</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>90</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_83</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>col_inbuf_alloca_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>col_outbuf_addr_gep_fu_95</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>col_outbuf_alloca_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>exitcond1_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>exitcond2_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>exitcond5_fu_224</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>exitcond_flatten2_fu_346</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>exitcond_flatten_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>exitcond_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>i_1_mid2_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>i_1_phi_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>i_2_phi_fu_168</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>i_3_mid2_fu_364</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>i_3_phi_fu_202</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>i_4_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>i_5_fu_340</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>i_6_fu_303</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>i_7_fu_413</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>i_phi_fu_123</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten2_phi_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>indvar_flatten_next2_fu_352</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>indvar_flatten_next_fu_242</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>indvar_flatten_phi_fu_135</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>j_1_mid2_fu_378</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>j_1_phi_fu_191</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>j_2_fu_372</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>j_mid2_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>j_phi_fu_146</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>j_s_fu_262</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>out_block_addr_gep_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>p_addr3_cast_fu_429</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_addr4_fu_433</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_addr5_fu_292</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_addr6_cast_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_addr7_fu_323</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>p_addr8_cast_fu_398</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_addr9_fu_402</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_addr_cast_fu_288</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>row_outbuf_addr_gep_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>row_outbuf_alloca_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>tmp_1_fu_408</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>tmp_2_fu_422</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>tmp_2_trn_cast_fu_309</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_3_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_3_trn_cast_fu_386</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>tmp_4_trn_cast_fu_419</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_6_fu_298</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_7_fu_312</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_8_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_fu_280</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_s_fu_390</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp_trn_cast_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>36</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_209</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>16</item> <item>60</item> <item>60</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>8</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>48</item> </second> </item> <item> <first> <first>col_inbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>86</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first> <first>dct_coeff_table</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>16</item> <item>60</item> </second> </item> <item> <first> <first>out_block</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>42</item> <item>42</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>24</count> <item_version>0</item_version> <item> <first>119</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>153</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>164</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>187</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>457</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>467</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>473</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>483</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>487</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>492</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>501</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>512</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>517</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>24</count> <item_version>0</item_version> <item> <first>col_outbuf_addr_reg_512</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>exitcond2_reg_483</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>exitcond5_reg_444</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>exitcond_flatten2_reg_492</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>exitcond_flatten_reg_453</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>i_1_mid2_reg_462</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>i_1_reg_153</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>i_2_reg_164</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>i_3_mid2_reg_501</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>i_3_reg_198</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>i_4_reg_448</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>i_5_reg_487</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>i_6_reg_478</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>i_7_reg_517</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>i_reg_119</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten2_reg_176</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>indvar_flatten_next2_reg_496</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>indvar_flatten_next_reg_457</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>indvar_flatten_reg_131</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>j_1_mid2_reg_506</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>j_1_reg_187</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>j_mid2_reg_467</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>j_reg_142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>row_outbuf_addr_reg_473</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>8</count> <item_version>0</item_version> <item> <first>119</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>153</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>164</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>187</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>8</count> <item_version>0</item_version> <item> <first>i_1_reg_153</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>i_2_reg_164</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>i_3_reg_198</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>i_reg_119</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten2_reg_176</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>indvar_flatten_reg_131</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>j_1_reg_187</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>j_reg_142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</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>92</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>4</first> <second>RAM</second> </item> <item> <first>5</first> <second>RAM</second> </item> <item> <first>6</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ADA.WIDE_TEXT_IO.RESET_STANDARD_FILES -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides a reset routine that resets the standard files used -- by Ada.Wide_Text_IO. This is useful in systems such as VxWorks where -- Ada.Wide_Text_IO is elaborated at the program start, but a system restart -- may alter the status of these files, resulting in incorrect operation of -- Wide_Text_IO (in particular if the standard input file is changed to be -- interactive, then Get_Line may hang looking for an extra character after -- the end of the line. procedure Ada.Wide_Text_IO.Reset_Standard_Files; -- Reset standard Wide_Text_IO files as described above
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2020, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with STM32_H405.LED; procedure Main is begin loop STM32_H405.LED.Toggle; delay 0.5; end loop; end Main;
----------------------------------------------------------------------- -- util-streams-encoders -- Streams with encoding and decoding capabilities -- Copyright (C) 2017, 2018, 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. ----------------------------------------------------------------------- package body Util.Streams.Buffered.Encoders is -- ----------------------- -- Initialize the stream to write on the given stream. -- An internal buffer is allocated for writing the stream. -- ----------------------- overriding procedure Initialize (Stream : in out Encoder_Stream; Output : access Output_Stream'Class; Size : in Positive) is begin Util.Streams.Buffered.Output_Buffer_Stream (Stream).Initialize (Output, Size); end Initialize; -- ----------------------- -- Close the sink. -- ----------------------- overriding procedure Close (Stream : in out Encoder_Stream) is begin Stream.Flush; Stream.Output.Close; end Close; -- ----------------------- -- Write the buffer array to the output stream. -- ----------------------- overriding procedure Write (Stream : in out Encoder_Stream; Buffer : in Ada.Streams.Stream_Element_Array) is First_Encoded : Ada.Streams.Stream_Element_Offset := Buffer'First; Last_Encoded : Ada.Streams.Stream_Element_Offset; Last_Pos : Ada.Streams.Stream_Element_Offset; begin while First_Encoded <= Buffer'Last loop Stream.Transform.Transform (Data => Buffer (First_Encoded .. Buffer'Last), Into => Stream.Buffer (Stream.Write_Pos .. Stream.Buffer'Last), Last => Last_Pos, Encoded => Last_Encoded); if Last_Encoded < Buffer'Last then Stream.Output.Write (Stream.Buffer (Stream.Buffer'First .. Last_Pos)); Stream.Write_Pos := Stream.Buffer'First; else Stream.Write_Pos := Last_Pos + 1; end if; First_Encoded := Last_Encoded + 1; end loop; end Write; -- ----------------------- -- Flush the buffer by writing on the output stream. -- Raises Data_Error if there is no output stream. -- ----------------------- overriding procedure Flush (Stream : in out Encoder_Stream) is Last_Pos : Ada.Streams.Stream_Element_Offset := Stream.Write_Pos - 1; begin if not Stream.Flushed then Stream.Transform.Finish (Stream.Buffer (Stream.Write_Pos .. Stream.Buffer'Last), Last_Pos); Stream.Write_Pos := Last_Pos + 1; Output_Buffer_Stream (Stream).Flush; Stream.Flushed := True; end if; end Flush; overriding procedure Finalize (Stream : in out Encoder_Stream) is begin if not Stream.Flushed then Stream.Flush; end if; Output_Buffer_Stream (Stream).Finalize; end Finalize; end Util.Streams.Buffered.Encoders;
with Tkmrpc.Transport.Client; with Tkmrpc.Request.Cfg.Tkm_Version.Convert; with Tkmrpc.Request.Cfg.Tkm_Limits.Convert; with Tkmrpc.Request.Cfg.Tkm_Reset.Convert; with Tkmrpc.Response.Cfg.Tkm_Version.Convert; with Tkmrpc.Response.Cfg.Tkm_Limits.Convert; with Tkmrpc.Response.Cfg.Tkm_Reset.Convert; package body Tkmrpc.Clients.Cfg is ------------------------------------------------------------------------- procedure Init (Result : out Results.Result_Type; Address : Interfaces.C.Strings.chars_ptr) is separate; ------------------------------------------------------------------------- procedure Tkm_Limits (Result : out Results.Result_Type; Max_Active_Requests : out Types.Active_Requests_Type; Authag_Contexts : out Types.Authag_Id_Type; Cag_Contexts : out Types.Cag_Id_Type; Li_Contexts : out Types.Li_Id_Type; Ri_Contexts : out Types.Ri_Id_Type; Iag_Contexts : out Types.Iag_Id_Type; Eag_Contexts : out Types.Eag_Id_Type; Dhag_Contexts : out Types.Dhag_Id_Type; Sp_Contexts : out Types.Sp_Id_Type; Authp_Contexts : out Types.Authp_Id_Type; Dhp_Contexts : out Types.Dhp_Id_Type; Autha_Contexts : out Types.Autha_Id_Type; Ca_Contexts : out Types.Ca_Id_Type; Lc_Contexts : out Types.Lc_Id_Type; Ia_Contexts : out Types.Ia_Id_Type; Ea_Contexts : out Types.Ea_Id_Type; Dha_Contexts : out Types.Dha_Id_Type) is use type Tkmrpc.Results.Result_Type; Req : Request.Cfg.Tkm_Limits.Request_Type; Res : Response.Cfg.Tkm_Limits.Response_Type; Data : Response.Data_Type; begin Req := Request.Cfg.Tkm_Limits.Null_Request; Transport.Client.Send_Receive (Req_Data => Request.Cfg.Tkm_Limits.Convert.To_Request (S => Req), Res_Data => Data); Res := Response.Cfg.Tkm_Limits.Convert.From_Response (S => Data); Result := Res.Header.Result; if Result = Results.Ok then Max_Active_Requests := Res.Data.Max_Active_Requests; Authag_Contexts := Res.Data.Authag_Contexts; Cag_Contexts := Res.Data.Cag_Contexts; Li_Contexts := Res.Data.Li_Contexts; Ri_Contexts := Res.Data.Ri_Contexts; Iag_Contexts := Res.Data.Iag_Contexts; Eag_Contexts := Res.Data.Eag_Contexts; Dhag_Contexts := Res.Data.Dhag_Contexts; Sp_Contexts := Res.Data.Sp_Contexts; Authp_Contexts := Res.Data.Authp_Contexts; Dhp_Contexts := Res.Data.Dhp_Contexts; Autha_Contexts := Res.Data.Autha_Contexts; Ca_Contexts := Res.Data.Ca_Contexts; Lc_Contexts := Res.Data.Lc_Contexts; Ia_Contexts := Res.Data.Ia_Contexts; Ea_Contexts := Res.Data.Ea_Contexts; Dha_Contexts := Res.Data.Dha_Contexts; end if; end Tkm_Limits; ------------------------------------------------------------------------- procedure Tkm_Reset (Result : out Results.Result_Type) is Req : Request.Cfg.Tkm_Reset.Request_Type; Res : Response.Cfg.Tkm_Reset.Response_Type; Data : Response.Data_Type; begin Req := Request.Cfg.Tkm_Reset.Null_Request; Transport.Client.Send_Receive (Req_Data => Request.Cfg.Tkm_Reset.Convert.To_Request (S => Req), Res_Data => Data); Res := Response.Cfg.Tkm_Reset.Convert.From_Response (S => Data); Result := Res.Header.Result; end Tkm_Reset; ------------------------------------------------------------------------- procedure Tkm_Version (Result : out Results.Result_Type; Version : out Types.Version_Type) is use type Tkmrpc.Results.Result_Type; Req : Request.Cfg.Tkm_Version.Request_Type; Res : Response.Cfg.Tkm_Version.Response_Type; Data : Response.Data_Type; begin Req := Request.Cfg.Tkm_Version.Null_Request; Transport.Client.Send_Receive (Req_Data => Request.Cfg.Tkm_Version.Convert.To_Request (S => Req), Res_Data => Data); Res := Response.Cfg.Tkm_Version.Convert.From_Response (S => Data); Result := Res.Header.Result; if Result = Results.Ok then Version := Res.Data.Version; end if; end Tkm_Version; end Tkmrpc.Clients.Cfg;
-- compile with -gnatW8 with Ada.Text_IO; use Ada.Text_IO; with Ada.Wide_Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; with Ada.Strings.Unbounded; procedure Test_Types is type Cows_Counter_Type is new Natural; type Fixed_Point_Type is delta 0.01 range 0.0 .. 1_166_405_539.00; -- decimal fixed point type Money is delta 0.001 digits 15; type Byte is mod 2**8; for Byte'Size use 8; subtype Age_Type is Integer range 0 .. 150; package SU renames Ada.Strings.Unbounded; subtype U_String is SU.Unbounded_String; function Us (S : String) return U_String renames SU.To_Unbounded_String; -- A record type Person is record Name : U_String; Surname : U_String; Age : Age_Type; Married : Boolean; end record; function To_String (P : Person) return String is begin return SU.To_String (P.Name) & " " & Su.To_String (P.Surname) & ", " & Integer'Image (P.Age) & " years old, " & (if P.Married then "married" else "single"); end To_String; -- overload the concat op, just for moo function "&" (L : String; R : Cows_Counter_Type) return String is begin return L & Integer'Image (Integer (R)); end "&"; Cows_In_The_Park : constant Cows_Counter_Type := 0; Newborn_Cows : constant Integer := 1; Huge_Number : constant Long_Integer := Long_Integer'Last; Very_Huge_Number : constant Long_Long_Integer := Long_Long_Integer'First; Normal_Float : constant Float := Float'Last; Big_Float : constant Long_Float := Long_Float'Last; Huge_Float : constant Long_Long_Float := Long_Long_Float'Last; -- ANSI ESC seq for Bold and normal Esc_Char : constant Character := Character'Val (27); Bold_On : constant String := Esc_Char & "[1m"; Fancy_Off : constant String := Esc_Char & "[0m"; -- this is a way to encode a character by its code Strange_Sign : constant Wide_Character := '["A345"]'; -- or we can write it "for real", provided the source code encoding -- matches the one chosen by the compiler... I use UTF-8 and GNAT -- compiler, therefore I've added the -gnatW8 option Greek_Letter : constant Wide_Character := 'α'; -- Also with Wide_Character we can use the attribute-function Val -- to convert the code of a character into the character No_Hiragana : constant Wide_Character := Wide_Character'Val (16#306e#); -- always with the -gnatW8 option, we can write "wide string" -- directly. Hello_String : constant Wide_String := "→Hello← "; -- A second longs a second One_Second : constant Duration := 1.0; T : Duration; -- these are bytes; let's see the wrap-around arithmetic Byte_1 : constant Byte := 254; Byte_2 : constant Byte := Byte_1 + 1; Byte_3 : constant Byte := Byte_2 + 1; Homer_Simpson : constant Person := (Name => Us ("Homer"), Surname => Us ("Simpson"), Age => 54, Married => True); package LI is new Integer_IO (Long_Integer); package LLI is new Integer_IO (Long_Long_Integer); package F is new Float_IO (Float); package FF is new Float_IO (Long_Float); package FFF is new Float_IO (Long_Long_Float); package D is new Fixed_IO (Duration); package M is new Modular_IO (Byte); -- we can also have our special Cow IO package Cow is new Integer_IO (Cows_Counter_Type); package W renames Ada.Wide_Text_IO; begin -- the following won't compile --Cows_In_The_Park := Cows_In_The_Park + Newborn_Cows; Put_Line ("cows in the park: " & Cows_In_The_Park); Cow.Put (Cows_In_The_Park); Put ("; "); Put ("newborn cows: "); Put (Newborn_Cows); New_Line; Put (Integer (Cows_Counter_Type'Last)); New_Line; LI.Put (Huge_Number); New_Line; LLI.Put (Very_Huge_Number); New_Line; Put (Integer'First); Put (Integer'Last); New_Line; Put (Float'Digits); Put (" §§ "); F.Put (Float'First); New_Line; delay One_Second; -- let's waste a second of your time Put (Long_Float'Digits); New_Line; Put (Long_Long_Float'Digits); New_Line; F.Put (Normal_Float); Put (" << Float"); New_Line; FF.Put (Big_Float); Put (" << Long_Float"); New_Line; FFF.Put (Huge_Float); Put (" << Long_Long_Float"); New_Line; Put_Line (Bold_On & "BOLD" & Fancy_Off); W.Put_Line (Hello_String & Greek_Letter & Strange_Sign & No_Hiragana); T := 1.0; while T > 0.01 loop D.Put (T, Aft => 2); delay T; T := T / 2.0; end loop; New_Line; F.Put (Float (Duration'Delta)); New_Line; F.Put (Float (Duration'First)); F.Put (Float (Duration'Last)); New_Line; F.Put (Float (Duration'Small)); New_Line; F.Put (Float (Fixed_Point_Type'Small)); New_Line; F.Put (Float (Money'Small)); New_Line; F.Put (Float (Money'First)); F.Put (Float (Money'Last)); New_Line; M.Put (Byte_1); M.Put (Byte_2); M.Put (Byte_3); New_Line; -- Let's try with a different base; unfortunately, it uses the Ada -- notation, found no way to remove it to write e.g. FF instead of -- 16#FF#. M.Put (Byte_1, Width => 8, Base => 16); M.Put (Byte_2, Width => 8, Base => 16); M.Put (Byte_3, Width => 8, Base => 2); New_Line; Put_Line (To_String (Homer_Simpson)); end Test_Types;
package physics.Shape -- -- Models a physical shape. -- is type Item is limited interface; type View is access all Item'Class; procedure define (Self : in out Item) is abstract; procedure free (Self : in out View); procedure Scale_is (Self : in out Item; Now : in math.Vector_3) is abstract; procedure evolve (Self : in out Item; By : in Duration) is null; procedure destruct (Self : in out Item) is abstract; end physics.Shape;
-- Copyright 2012-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 Pck is Global_Variable : Integer := 1; procedure Increment (I : in out Integer); end Pck;
/* Author - Ashish Tyagi */ with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; procedure Hello is Div_By_3 : Boolean := false; Div_By_5 : Boolean := false; begin For_Loop : for I in Integer range 1 .. 100 loop Div_By_3 := I mod 3 = 0; Div_By_5 := I mod 5 = 0; if Div_By_3 and Div_By_5 then Put_Line("FizzBuzz"); elsif Div_By_3 then Put_Line("Fizz"); elsif Div_By_5 then Put_Line("Buzz"); else Put( I ); New_Line(1); end if; end loop For_Loop; end Hello;
with AdaM.Declaration.of_exception, gtk.Widget; private with gtk.gEntry, gtk.Box, gtk.Label, gtk.Button; package aIDE.Editor.of_exception is type Item is new Editor.item with private; type View is access all Item'Class; package Forge is function new_Editor (the_Target : in AdaM.Declaration.of_exception.view) return View; end Forge; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget; private use gtk.Button, gtk.gEntry, gtk.Label, gtk.Box; type Item is new Editor.item with record Target : AdaM.Declaration.of_exception.view; top_Box : gtk_Box; name_Entry : Gtk_Entry; rid_Button : gtk_Button; end record; overriding procedure freshen (Self : in out Item); end aIDE.Editor.of_exception;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses2.util -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- Copyright 2020 Thomas E. Dickey -- -- Copyright 2000,2006 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.3 $ -- $Date: 2020/02/02 23:34:34 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Ada.Text_IO; package ncurses2.util is Blank : constant Character := ' '; Blank2 : constant Attributed_Character := (Ch => Blank, Attr => Normal_Video, Color => Color_Pair'First); newl : constant Character := Character'Val (10); function CTRL (c : Character) return Key_Code; function CTRL (c : Character) return Character; function Getchar (win : Window := Standard_Window) return Key_Code; procedure Getchar (win : Window := Standard_Window); procedure Pause; procedure Cannot (s : String); procedure ShellOut (message : Boolean); package Int_IO is new Ada.Text_IO.Integer_IO (Integer); function Is_Digit (c : Key_Code) return Boolean; procedure P (s : String); function Code_To_Char (c : Key_Code) return Character; function ctoi (c : Character) return Integer; end ncurses2.util;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . E X P _ L I N T -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- Copyright (c) 1992,1993,1994 NYU, All Rights Reserved -- -- -- -- The GNAT library is free software; you can redistribute it and/or modify -- -- it under terms of the GNU Library General Public License as published by -- -- the Free Software Foundation; either version 2, or (at your option) any -- -- later version. The GNAT 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 -- -- the GNAT library; see the file COPYING.LIB. If not, write to the Free -- -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -- -- -- ------------------------------------------------------------------------------ -- Long_Integer exponentiation (checks on) with System.Exp_Gen; package System.Exp_LInt is pragma Pure (Exp_LInt); function Exp_Long_Integer is new System.Exp_Gen.Exp_Integer_Type (Long_Integer); end System.Exp_LInt;
with Interfaces; use Interfaces; package body VirtAPU is generic type Int_T is range <>; function To_Int (S : Sample) return Int_T with Inline; generic type UInt_T is mod <>; function To_UInt (S : Sample) return UInt_T with Inline; function Saturate (S : Sample) return Sample with Inline; function Next_Sample_Pulse_And_Noise (Chan : in out Channel; Sample_Rate : Positive) return Sample with Inline; function Next_Sample_Triangle (Chan : in out Channel; Sample_Rate : Positive) return Sample with Inline; procedure Process_Seq (This : in out Instance; Chan_Id : Channel_ID); ----------------------- -- Period_In_Samples -- ----------------------- function Period_In_Samples (Sample_Rate : Positive; Rate_In_Hertz : Frequency) return Float is (Float (Sample_Rate) / Float (Rate_In_Hertz)) with Inline; --------------------------------- -- Next_Sample_Pulse_And_Noise -- --------------------------------- function Next_Sample_Pulse_And_Noise (Chan : in out Channel; Sample_Rate : Positive) return Sample is Delta_Time : Float; Width : Float; Next_State : BLIT_State := Down; begin Chan.CSample_Nb := Chan.CSample_Nb + 1; -- If it is time, compute the next BLIT step if Chan.Next_Impulse_Time <= Chan.CSample_Nb then if Chan.State = Up then Width := Chan.Width; else Width := 1.0 - Chan.Width; end if; Delta_Time := Period_In_Samples (Sample_Rate, Chan.Freq) * Width + Chan.Next_Impulse_Phase; Chan.Next_Impulse_Time := Chan.Next_Impulse_Time + Natural (Float'Floor (Delta_Time)); Chan.Next_Impulse_Phase := Delta_Time - Float'Floor (Delta_Time); case Chan.Mode is when Pulse => -- Invert the state Next_State := (if Chan.State = Up then Down else Up); when Noise_1 | Noise_2 => -- Next state depends on LFSR noise declare B0 : constant Unsigned_16 := Chan.LFSR and 1; B1 : constant Unsigned_16 := Shift_Right (Chan.LFSR, 1) and 1; B6 : constant Unsigned_16 := Shift_Right (Chan.LFSR, 6) and 1; Feedback : Unsigned_16; begin if Chan.Mode = Noise_1 then Feedback := B0 xor B1; else Feedback := B0 xor B6; end if; Next_State := (if B0 = 0 then Down else Up); Chan.LFSR := Shift_Right (Chan.LFSR, 1); if (Feedback and 1) /= 0 then Chan.LFSR := Chan.LFSR or 16#4000#; else Chan.LFSR := Chan.LFSR and not 16#4000#; end if; end; when others => Next_State := Down; end case; if Next_State /= Chan.State then if Next_State = Up then Chan.State := Up; else Chan.State := Down; end if; end if; end if; if Chan.State = Up then return Chan.Level; else return -Chan.Level; end if; end Next_Sample_Pulse_And_Noise; -------------------------- -- Next_Sample_Triangle -- -------------------------- function Next_Sample_Triangle (Chan : in out Channel; Sample_Rate : Positive) return Sample is Delta_Time : Float; Width : Float; begin Chan.CSample_Nb := Chan.CSample_Nb + 1; -- If it is time, compute the next change of direction if Chan.Next_Impulse_Time <= Chan.CSample_Nb then if Chan.State = Up then Width := Chan.Width; else Width := 1.0 - Chan.Width; end if; Delta_Time := Period_In_Samples (Sample_Rate, Chan.Freq) * Width + Chan.Next_Impulse_Phase; Chan.Next_Impulse_Time := Chan.Next_Impulse_Time + Natural (Float'Floor (Delta_Time)); Chan.Next_Impulse_Phase := Delta_Time - Float'Floor (Delta_Time); if Chan.State = Up then Chan.State := Down; Chan.Last_Sum := 1.0; Chan.Trig_Rate := Sample (-2.0 / Delta_Time); else Chan.State := Up; Chan.Last_Sum := -1.0; Chan.Trig_Rate := Sample (2.0 / Delta_Time); end if; end if; -- Do the trig! /\/\/\ Chan.Last_Sum := Chan.Last_Sum + Chan.Trig_Rate; return Chan.Last_Sum * Chan.Level; end Next_Sample_Triangle; -------------- -- Saturate -- -------------- function Saturate (S : Sample) return Sample is (if S > 1.0 then 1.0 elsif S < -1.0 then -1.0 else S); ------------ -- To_Int -- ------------ function To_Int (S : Sample) return Int_T is begin return Int_T (Float (Saturate (S)) * Float (Int_T'Last - 1)); end To_Int; ------------- -- To_UInt -- ------------- function To_UInt (S : Sample) return UInt_T is begin return UInt_T ((((Float (Saturate (S)) / 4.0) + 1.0) / 2.0) * Float (UInt_T'Last - 1)); end To_UInt; ----------------- -- Next_Sample -- ----------------- function Next_Sample (This : in out Instance) return Sample is S : Sample := 0.0; begin -- Mix the channels for Chan of This.Channels loop case Chan.Mode is when Pulse | Noise_1 | Noise_2 => S := S + Next_Sample_Pulse_And_Noise (Chan, This.Sample_Rate); when Triangle => S := S + Next_Sample_Triangle (Chan, This.Sample_Rate); end case; end loop; return S; end Next_Sample; ---------------------- -- Next_Samples_Int -- ---------------------- procedure Next_Samples_Int (This : in out Instance; Buffer : out Buffer_T) is function From_Sample is new To_Int (Int_T); begin for Elt of Buffer loop Elt := From_Sample (This.Next_Sample); end loop; end Next_Samples_Int; ----------------------- -- Next_Samples_UInt -- ----------------------- procedure Next_Samples_UInt (This : in out Instance; Buffer : out Buffer_T) is function From_Sample is new To_UInt (UInt_T); begin for Elt of Buffer loop Elt := From_Sample (This.Next_Sample); end loop; end Next_Samples_UInt; ----------------- -- Process_Seq -- ----------------- procedure Process_Seq (This : in out Instance; Chan_Id : Channel_ID) is Chan : Channel renames This.Channels (Chan_Id); begin if Chan.Seq_Remaining_Ticks /= 0 then Chan.Seq_Remaining_Ticks := Chan.Seq_Remaining_Ticks - 1; end if; if Chan.Seq_Remaining_Ticks = 0 then while Chan.Seq_Index in Chan.Seq'Range loop declare Cmd : Command renames Chan.Seq (Chan.Seq_Index); begin case Cmd.Kind is when Wait_Ticks => Chan.Seq_Remaining_Ticks := Cmd.Ticks; when Wait_Note => Chan.Seq_Remaining_Ticks := Tick_Count ((60.0 / Float (Chan.BPM)) * Float (Chan.Ticks_Per_Second) * (case Cmd.Note is when Large => 8.0, when Long => 4.0, when Double => 2.0, when Whole => 1.0, when Half => 0.5, when Quarter => 0.25, when N_8th => 0.125, when N_16th => 0.0625, when N_32nd => 0.0312, when N_64th => 0.015625, when N_128th => 0.0078125, when N_256th => 0.0039062)); when Note_On => Note_On (This, Chan_Id, Cmd.Freq); when Note_Off => Note_Off (This, Chan_Id); when Set_Decay => Set_Decay (This, Chan_Id, Cmd.Decay_Ticks); when Set_Sweep => Set_Sweep (This, Chan_Id, Cmd.Sweep, Cmd.Sweep_Len, Cmd.Sweep_Ticks); when Set_Volume => Set_Volume (This, Chan_Id, Cmd.Vol); when Set_Mode => Set_Mode (This, Chan_Id, Cmd.Mode); when Set_Width => Set_Width (This, Chan_Id, Cmd.Width); end case; end; Chan.Seq_Index := Chan.Seq_Index + 1; if Chan.Seq_Index not in Chan.Seq'Range and then Chan.Seq_Loop then Chan.Seq_Index := Chan.Seq'First; end if; -- Exit if we have to wait before the next command exit when Chan.Seq_Remaining_Ticks /= 0; end loop; end if; end Process_Seq; ---------- -- Tick -- ---------- procedure Tick (This : in out Instance) is begin -- Sequencer for Chan_Id in This.Channels'Range loop Process_Seq (This, Chan_Id); end loop; for Chan of This.Channels loop -- Sweep case Chan.Sweep is when None => null; when Up | Down => if Chan.Sweep_Remaining_Ticks > 0 then Chan.Sweep_Remaining_Ticks := Chan.Sweep_Remaining_Ticks - 1; end if; if Chan.Sweep_Remaining_Ticks = 0 and then Chan.Sweep_Remaining > 0 then declare Freq : constant Float := Float (Chan.Freq); Sign : constant Float := (if Chan.Sweep = Up then 1.0 else -1.0); Delt : constant Float := (Sign * Freq) / Float (2 ** Chan.Sweep_Remaining); begin Chan.Freq := Frequency (Freq + Delt); Chan.Sweep_Remaining := Chan.Sweep_Remaining - 1; Chan.Sweep_Remaining_Ticks := Chan.Sweep_Ticks; end; end if; end case; -- Envelope case Chan.Env_State is when Decay => if Chan.Decay_Remaining = 0 then Chan.Env_State := Mute; Chan.Level := 0.0; else Chan.Decay_Remaining := Chan.Decay_Remaining - 1; Chan.Level := Sample ((Float (Chan.Vol) / Float (Chan.Decay_Ticks)) * Float (Chan.Decay_Remaining)); end if; when others => null; end case; end loop; end Tick; -------------- -- Set_Mode -- -------------- procedure Set_Mode (This : in out Instance; Chan_Id : Channel_ID; Mode : Mode_Kind) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Mode := Mode; Chan.Last_Sum := 0.0; Chan.State := Down; Chan.CSample_Nb := 0; Chan.Next_Impulse_Phase := 0.0; Chan.Next_Impulse_Time := 0; end Set_Mode; ------------- -- Note_On -- ------------- procedure Note_On (This : in out Instance; Chan_Id : Channel_ID; Freq : Frequency) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Freq := Freq; Chan.Level := Chan.Vol; Chan.Env_State := Note_On; if Chan.Sweep /= None then Chan.Sweep_Remaining := Chan.Sweep_Len; Chan.Sweep_Remaining_Ticks := Chan.Sweep_Ticks; end if; end Note_On; -------------- -- Note_Off -- -------------- procedure Note_Off (This : in out Instance; Chan_Id : Channel_ID) is Chan : Channel renames This.Channels (Chan_Id); begin if Chan.Decay_Ticks /= No_Decay then Chan.Env_State := Decay; Chan.Decay_Remaining := Chan.Decay_Ticks; else Chan.Env_State := Mute; Chan.Level := 0.0; end if; end Note_Off; --------------- -- Set_Width -- --------------- procedure Set_Width (This : in out Instance; Chan_Id : Channel_ID; Width : Pulse_Width) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Width := Float (Width) / 100.0; end Set_Width; --------------- -- Set_Sweep -- --------------- procedure Set_Sweep (This : in out Instance; Chan_Id : Channel_ID; Kind : Sweep_Kind; Sweep_Len : Positive; Sweep_Ticks : Tick_Count) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Sweep := Kind; Chan.Sweep_Len := Sweep_Len; Chan.Sweep_Ticks := Sweep_Ticks; end Set_Sweep; ---------------- -- Set_Volume -- ---------------- procedure Set_Volume (This : in out Instance; Chan_Id : Channel_ID; Vol : Volume) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Vol := Sample (Vol) / 100.0; end Set_Volume; --------------- -- Set_Decay -- --------------- procedure Set_Decay (This : in out Instance; Chan_Id : Channel_ID; Ticks : Tick_Count) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Decay_Ticks := Ticks; end Set_Decay; ---------------- -- Set_Rhythm -- ---------------- procedure Set_Rhythm (This : in out Instance; BPM : Positive; Ticks_Per_Second : Positive) is begin for Chan of This.Channels loop Chan.BPM := BPM; Chan.Ticks_Per_Second := Ticks_Per_Second; end loop; end Set_Rhythm; ---------------- -- Set_Rhythm -- ---------------- procedure Set_Rhythm (This : in out Instance; Chan_Id : Channel_ID; BPM : Positive; Ticks_Per_Second : Positive) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.BPM := BPM; Chan.Ticks_Per_Second := Ticks_Per_Second; end Set_Rhythm; --------- -- Run -- --------- procedure Run (This : in out Instance; Chan_Id : Channel_ID; Seq : Sequence; Looping : Boolean := False) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Seq := Seq; Chan.Seq_Index := Seq'First; Chan.Seq_Remaining_Ticks := 0; Chan.Seq_Loop := Looping; end Run; end VirtAPU;
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2018 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.Log -- -- Message logging. -------------------------------------------------------------------------------------------------------------------- package SDL.Log is -- Messages longer than Max_Length will be truncated. -- TODO: Import this from a C constant set from SDL_MAX_LOG_MESSAGE. Max_Length : constant Integer := 4096; -- Had to make this into a type with constants due to the abuse of -- the C enumeration. type Categories is range 0 .. 2 ** 32; Application : constant Categories := 0; Errors : constant Categories := 1; Assert : constant Categories := 2; System : constant Categories := 3; Audio : constant Categories := 4; Video : constant Categories := 5; Render : constant Categories := 6; Input : constant Categories := 7; Test : constant Categories := 8; -- Reserved categories. Reserved_First : constant Categories := 9; Reserved_Last : constant Categories := 18; -- Custom categories. subtype Custom_Categories is Categories range Reserved_Last .. Categories'Last; type Priorities is (Verbose, Debug, Info, Warn, Error, Critical) with Convention => C; for Priorities use (Verbose => 1, Debug => 2, Info => 3, Warn => 4, Error => 5, Critical => 6); -- Log a message with Category: Application and Priority: Info. procedure Put (Message : in String) with Inline => True; procedure Put (Message : in String; Category : in Categories; Priority : in Priorities) with Inline => True; -- Log a message with Priority: Critical. procedure Put_Critical (Message : in String; Category : in Categories := Application) with Inline => True; -- Log a message with Priority: Debug. procedure Put_Debug (Message : in String; Category : in Categories := Application) with Inline => True; -- Log a message with Priority: Error. procedure Put_Error (Message : in String; Category : in Categories := Application) with Inline => True; -- Log a message with Priority: Info. procedure Put_Info (Message : in String; Category : in Categories := Application) with Inline => True; -- Log a message with Priority: Verbose. procedure Put_Verbose (Message : in String; Category : in Categories := Application) with Inline => True; -- Log a message with Priority: Warn. procedure Put_Warn (Message : in String; Category : in Categories := Application) with Inline => True; -- procedure Reset_Priorities with Inline => True; -- Set the priority of all the log categories to the given Priority. procedure Set (Priority : in Priorities) with Inline => True; -- Set the the given log Category to the given Priority. procedure Set (Category : in Categories; Priority : in Priorities) with Inline => True; -- Logging callbacks. -- TODO: complete this. -- I think this will require a bit more work. I think we will have to allocate a record -- and store this in a container which gets destroyed on application shutdown before SDL quits. type Root_User_Data is tagged null record; type Output_Callback is access procedure (User_Data : in Root_User_Data'Class; Category : in Categories; Priority : in Priorities; Message : in String); end SDL.Log;
with STM32_SVD.SPI; with STM32_SVD; use STM32_SVD; package STM32GD.SPI is pragma Preelaborate; SPI_1 : STM32_SVD.SPI.SPI_Peripheral renames STM32_SVD.SPI.SPI1_Periph; type SPI_Data_Size is (Data_Size_8b, Data_Size_16b); type SPI_Data_8b is array (Natural range <>) of Byte; type SPI_Data_16b is array (Natural range <>) of UInt16; end STM32GD.SPI;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . U T I L -- -- -- -- S p e c -- -- -- -- Copyright (C) 2001-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. -- -- -- ------------------------------------------------------------------------------ -- Utilities for use in processing project files package Prj.Util is function Executable_Of (Project : Project_Id; In_Tree : Project_Tree_Ref; Main : Name_Id; Index : Int; Ada_Main : Boolean := True) return Name_Id; -- Return the value of the attribute Builder'Executable for file Main in -- the project Project, if it exists. If there is no attribute Executable -- for Main, remove the suffix from Main; then, if the attribute -- Executable_Suffix is specified, add this suffix, otherwise add the -- standard executable suffix for the platform. function Value_Of (Variable : Variable_Value; Default : String) return String; -- Get the value of a single string variable. If Variable is -- Nil_Variable_Value, is a string list or is defaulted, return Default. function Value_Of (Index : Name_Id; In_Array : Array_Element_Id; In_Tree : Project_Tree_Ref) return Name_Id; -- Get a single string array component. Returns No_Name if there is no -- component Index, if In_Array is null, or if the component is a String -- list. Depending on the attribute (only attributes may be associative -- arrays) the index may or may not be case sensitive. If the index is not -- case sensitive, it is first set to lower case before the search in the -- associative array. function Value_Of (Index : Name_Id; Src_Index : Int := 0; In_Array : Array_Element_Id; In_Tree : Project_Tree_Ref) return Variable_Value; -- Get a string array component (single String or String list). -- Returns Nil_Variable_Value if there is no component Index -- or if In_Array is null. -- -- Depending on the attribute (only attributes may be associative arrays) -- the index may or may not be case sensitive. If the index is not case -- sensitive, it is first set to lower case before the search in the -- associative array. function Value_Of (Name : Name_Id; Index : Int := 0; Attribute_Or_Array_Name : Name_Id; In_Package : Package_Id; In_Tree : Project_Tree_Ref) return Variable_Value; -- In a specific package, -- - if there exists an array Attribute_Or_Array_Name with an index Name, -- returns the corresponding component (depending on the attribute, the -- index may or may not be case sensitive, see previous function), -- - otherwise if there is a single attribute Attribute_Or_Array_Name, -- returns this attribute, -- - otherwise, returns Nil_Variable_Value. -- If In_Package is null, returns Nil_Variable_Value. function Value_Of (Index : Name_Id; In_Array : Name_Id; In_Arrays : Array_Id; In_Tree : Project_Tree_Ref) return Name_Id; -- Get a string array component in an array of an array list. Returns -- No_Name if there is no component Index, if In_Arrays is null, if -- In_Array is not found in In_Arrays or if the component is a String list. function Value_Of (Name : Name_Id; In_Arrays : Array_Id; In_Tree : Project_Tree_Ref) return Array_Element_Id; -- Returns a specified array in an array list. Returns No_Array_Element -- if In_Arrays is null or if Name is not the name of an array in -- In_Arrays. The caller must ensure that Name is in lower case. function Value_Of (Name : Name_Id; In_Packages : Package_Id; In_Tree : Project_Tree_Ref) return Package_Id; -- Returns a specified package in a package list. Returns No_Package if -- In_Packages is null or if Name is not the name of a package in -- Package_List. The caller must ensure that Name is in lower case. function Value_Of (Variable_Name : Name_Id; In_Variables : Variable_Id; In_Tree : Project_Tree_Ref) return Variable_Value; -- Returns a specified variable in a variable list. Returns null if -- In_Variables is null or if Variable_Name is not the name of a -- variable in In_Variables. Caller must ensure that Name is lower case. procedure Write_Str (S : String; Max_Length : Positive; Separator : Character); -- Output string S using Output.Write_Str. If S is too long to fit in -- one line of Max_Length, cut it in several lines, using Separator as -- the last character of each line, if possible. type Text_File is limited private; -- Represents a text file. Default is invalid text file function Is_Valid (File : Text_File) return Boolean; -- Returns True if File designates an open text file that -- has not yet been closed. procedure Open (File : out Text_File; Name : String); -- Open a text file. If this procedure fails, File is invalid function End_Of_File (File : Text_File) return Boolean; -- Returns True if the end of the text file File has been reached. Fails if -- File is invalid. procedure Get_Line (File : Text_File; Line : out String; Last : out Natural); -- Reads a line from an open text file. Fails if File is invalid procedure Close (File : in out Text_File); -- Close an open text file. File becomes invalid. Fails if File is already -- invalid. private type Text_File_Data is record FD : File_Descriptor := Invalid_FD; Buffer : String (1 .. 1_000); Buffer_Len : Natural; Cursor : Natural := 0; End_Of_File_Reached : Boolean := False; end record; type Text_File is access Text_File_Data; end Prj.Util;
with Ada.Integer_Text_IO; with Ada.Text_IO; with Ada.Containers.Ordered_Sets; with PrimeUtilities; package body Problem_35 is package IO renames Ada.Text_IO; package I_IO renames Ada.Integer_Text_IO; subtype One_Million is Integer range 1 .. 1_000_000; package Million_Set is new Ada.Containers.Ordered_Sets(One_Million); package Million_Primes is new PrimeUtilities(One_Million); function Magnitude(n : One_Million) return Natural is begin if n >= 100_000 then return 100_000; elsif n >= 10_000 then return 10_000; elsif n >= 1_000 then return 1_000; elsif n >= 100 then return 100; elsif n >= 10 then return 10; else return 1; end if; end Magnitude; function Rotate(n : One_Million; mag : Natural) return One_Million is begin return n mod 10 * mag + n / 10; end Rotate; procedure Solve is primes : Million_Set.Set; count : Natural := 0; procedure Check_Rotations(c : Million_Set.Cursor) is prime : constant One_Million := Million_Set.Element(c); mag : constant Natural := Magnitude(prime); possible : One_Million := Rotate(prime, mag); All_Prime : Boolean := True; begin while possible /= prime loop if not primes.Contains(possible) then All_Prime := False; exit; else possible := Rotate(possible, mag); end if; end loop; if All_Prime then count := count + 1; end if; end Check_Rotations; begin declare prime : One_Million; gen : Million_Primes.Prime_Generator := Million_Primes.Make_Generator(One_Million'Last); begin loop Million_Primes.Next_Prime(gen, prime); exit when prime = 1; primes.Insert(prime); end loop; end; primes.Iterate(Process => Check_Rotations'Access); I_IO.Put(count); IO.New_Line; end Solve; end Problem_35;
pragma License (Unrestricted); -- extended unit with Ada.Numerics; package Ada.Colors is -- Color spaces. pragma Pure; subtype Brightness is Float range 0.0 .. 1.0; subtype Hue is Float range 0.0 .. Float'Pred (2.0 * Numerics.Pi); type RGB is record Red : Brightness; Green : Brightness; Blue : Brightness; end record; type HSV is record Hue : Colors.Hue; Saturation : Brightness; Value : Brightness; end record; type HSL is record Hue : Colors.Hue; Saturation : Brightness; Lightness : Brightness; end record; function To_RGB (Color : HSV) return RGB; function To_RGB (Color : HSL) return RGB; function To_HSV (Color : RGB) return HSV; function To_HSV (Color : HSL) return HSV; function To_HSL (Color : RGB) return HSL; function To_HSL (Color : HSV) return HSL; -- NTSC luminance function Luminance (Color : RGB) return Brightness; function Luminance (Color : HSV) return Brightness; function Luminance (Color : HSL) return Brightness; -- distances in the color spaces function RGB_Distance (Left, Right : RGB) return Float; function HSV_Distance (Left, Right : HSV) return Float; function HSL_Distance (Left, Right : HSL) return Float; end Ada.Colors;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_01D2 is pragma Preelaborate; Group_01D2 : aliased constant Core_Second_Stage := (16#00# .. 16#41# => -- 01D200 .. 01D241 (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#42# .. 16#44# => -- 01D242 .. 01D244 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#45# => -- 01D245 (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), others => (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False))); end Matreshka.Internals.Unicode.Ucd.Core_01D2;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . A T O M I C _ C O U N T E R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2011-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is version of the package, for use on platforms where this capability -- is not supported. All Atomic_Counter operations raises Program_Error, -- Atomic_Unsigned operations processed in non-atomic manner. package body System.Atomic_Counters is --------------- -- Decrement -- --------------- function Decrement (Item : in out Atomic_Counter) return Boolean is begin raise Program_Error; return False; end Decrement; function Decrement (Item : aliased in out Atomic_Unsigned) return Boolean is begin -- Could not use Item := Item - 1; because it is disabled in spec. Item := Atomic_Unsigned'Pred (Item); return Item = 0; end Decrement; procedure Decrement (Item : aliased in out Atomic_Unsigned) is begin Item := Atomic_Unsigned'Pred (Item); end Decrement; --------------- -- Increment -- --------------- procedure Increment (Item : in out Atomic_Counter) is begin raise Program_Error; end Increment; procedure Increment (Item : aliased in out Atomic_Unsigned) is begin Item := Atomic_Unsigned'Succ (Item); end Increment; ---------------- -- Initialize -- ---------------- procedure Initialize (Item : out Atomic_Counter) is begin raise Program_Error; end Initialize; ------------ -- Is_One -- ------------ function Is_One (Item : Atomic_Counter) return Boolean is begin raise Program_Error; return False; end Is_One; end System.Atomic_Counters;
with System; use System; with AVTAS.LMCP.Types; use AVTAS.LMCP.Types; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package AVTAS.LMCP.ByteBuffers is Maximum_Length : constant := UInt32'Last - 1; subtype Index is UInt32 range 1 .. Maximum_Length; type ByteBuffer (Capacity : Index) is tagged private with Default_Initial_Condition => Position (ByteBuffer) = 1 and Length (ByteBuffer) = 0; procedure Rewind (This : in out ByteBuffer) with Post'Class => Position (This) = 1 and Length (This) = Length (This)'Old; -- For reading, resetting the buffer position would allow reading of -- existing content from the beginning, presumably after writing -- values into it (via the Put_* routines). -- -- For writing, resetting the buffer position would make subsequent calls -- to Put_* start over at the beginning, overwriting any existing values, -- but NOTE that this does not reset the length, i.e., new Put_* calls -- would increase the Length determined by any Put_* calls made prior -- to Rewind. As a result, for writing you probably want to call Clear -- instead. procedure Clear (This : in out ByteBuffer) with Post'Class => Position (This) = 1 and Length (This) = 0; function Remaining (This : ByteBuffer) return UInt32; function Has_Remaining (This : ByteBuffer) return Boolean with Post => ((Has_Remaining'Result) = (Remaining (This) > 0)); function Position (This : ByteBuffer) return UInt32; -- Position always returns the next place within the buffer for reading or -- for writing. -- -- Both Put_* and Get_* routines affect the value of Position. Only the -- Put_* routines affect the Length. function Length (This : ByteBuffer) return UInt32; -- The logical length of the content of the buffer, i.e., the "high water -- mark" for values placed into the buffer by the various Put_* routines. -- Not affected by the Get_* routines. The logical length of the content -- may not be equal the Capacity. -- We use procedures rather than functions for the sake of SPARK, if proof -- is to be applied procedure Get_Byte (This : in out ByteBuffer; Value : out Byte) with Pre'Class => Remaining (This) >= 1, Post'Class => Position (This) = Position (This)'Old + 1 and Length (This) = Length (This)'Old; procedure Get_Boolean (This : in out ByteBuffer; Value : out Boolean) with Pre'Class => Remaining (This) >= 1, Post'Class => Position (This) = Position (This)'Old + 1 and Length (This) = Length (This)'Old; procedure Get_Int16 (This : in out ByteBuffer; Value : out Int16) with Pre'Class => Remaining (This) >= 2, Post'Class => Position (This) = Position (This)'Old + 2 and Length (This) = Length (This)'Old; procedure Get_Short (This : in out ByteBuffer; Value : out Int16) renames Get_Int16; procedure Get_UInt16 (This : in out ByteBuffer; Value : out UInt16) with Pre'Class => Remaining (This) >= 2, Post'Class => Position (This) = Position (This)'Old + 2 and Length (This) = Length (This)'Old; procedure Get_UShort (This : in out ByteBuffer; Value : out UInt16) renames Get_UInt16; procedure Get_Int32 (This : in out ByteBuffer; Value : out Int32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old; procedure Get_Int (This : in out ByteBuffer; Value : out Int32) renames Get_Int32; procedure Get_UInt32 (This : in ByteBuffer; Value : out UInt32; First : Index) with Pre'Class => First <= Length (This) - 3, Post'Class => Position (This) = Position (This)'Old and Length (This) = Length (This)'Old; -- Gets a UInt32 value from This buffer, at indexes First .. First + 3 -- rather than from This.Position .. This.Positon + 3 procedure Get_UInt32 (This : in out ByteBuffer; Value : out UInt32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old; procedure Get_UInt (This : in out ByteBuffer; Value : out UInt32) renames Get_UInt32; procedure Get_Int64 (This : in out ByteBuffer; Value : out Int64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old; procedure Get_Long (This : in out ByteBuffer; Value : out Int64) renames Get_Int64; procedure Get_UInt64 (This : in out ByteBuffer; Value : out UInt64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old; procedure Get_ULong (This : in out ByteBuffer; Value : out UInt64) renames Get_UInt64; procedure Get_Real32 (This : in out ByteBuffer; Value : out Real32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old; procedure Get_Real64 (This : in out ByteBuffer; Value : out Real64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old; procedure Get_String (This : in out ByteBuffer; Value : out String; Last : out Natural) with Pre'Class => Remaining (This) >= 2, Post'Class => -- Last is Value'First - 1 when the number of characters is read as zero, otherwise it is in Value'Range Last in Value'First - 1 .. Value'Last and -- we read the length, which was zero, so nothing else was read (if Last = Value'First - 1 then Position (This) = Position (This'Old) + 2) and -- we read the length, which was nonzero, and then that many characters (if Last /= Value'First - 1 then Position (This) = Position (This'Old) + 2 + UInt32(Last - Value'First + 1)) and Length (This) = Length (This)'Old; -- The string content is preceeded in the buffer by a two-byte length, -- even when zero, so the precondition checks that there are least -- that many bytes available. procedure Get_Unbounded_String (This : in out ByteBuffer; Value : out Unbounded_String) with Pre'Class => Remaining (This) >= 3, Post'Class => -- we read the length, which was zero, so nothing else was read (if Value = Null_Unbounded_String then Position (This) = Position (This'Old) + 2) and -- we read the length, which was nonzero, and then that many characters (if Value /= Null_Unbounded_String then Position (This) = Position (This'Old) + 2 + UInt32 (Length (Value))) and Length (This) = Length (This)'Old; procedure Put_Byte (This : in out ByteBuffer; Value : Byte) with Pre'Class => Remaining (This) >= 1, Post'Class => Position (This) = Position (This)'Old + 1 and Length (This) = Length (This)'Old + 1; procedure Put_Boolean (This : in out ByteBuffer; Value : Boolean) with Pre'Class => Remaining (This) >= 1, Post'Class => Position (This) = Position (This)'Old + 1 and Length (This) = Length (This)'Old + 1; procedure Put_Int16 (This : in out ByteBuffer; Value : Int16) with Pre'Class => Remaining (This) >= 2, Post'Class => Position (This) = Position (This)'Old + 2 and Length (This) = Length (This)'Old + 2; procedure Put_Short (This : in out ByteBuffer; Value : Int16) renames Put_Int16; procedure Put_UInt16 (This : in out ByteBuffer; Value : UInt16) with Pre'Class => Remaining (This) >= 2, Post'Class => Position (This) = Position (This)'Old + 2 and Length (This) = Length (This)'Old + 2; procedure Put_UShort (This : in out ByteBuffer; Value : UInt16) renames Put_UInt16; procedure Put_Int32 (This : in out ByteBuffer; Value : Int32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old + 4; procedure Put_Int (This : in out ByteBuffer; Value : Int32) renames Put_Int32; procedure Put_UInt32 (This : in out ByteBuffer; Value : UInt32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old + 4; procedure Put_UInt (This : in out ByteBuffer; Value : UInt32) renames Put_UInt32; procedure Put_Int64 (This : in out ByteBuffer; Value : Int64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old + 8; procedure Put_Long (This : in out ByteBuffer; Value : Int64) renames Put_Int64; procedure Put_UInt64 (This : in out ByteBuffer; Value : UInt64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old + 8; procedure Put_ULong (This : in out ByteBuffer; Value : UInt64) renames Put_UInt64; -- ByteBuffer & putFloat(float f); procedure Put_Real32 (This : in out ByteBuffer; Value : Real32) with Pre'Class => Remaining (This) >= 4, Post'Class => Position (This) = Position (This)'Old + 4 and Length (This) = Length (This)'Old + 4; -- ByteBuffer & putDouble(double d); procedure Put_Real64 (This : in out ByteBuffer; Value : Real64) with Pre'Class => Remaining (This) >= 8, Post'Class => Position (This) = Position (This)'Old + 8 and Length (This) = Length (This)'Old + 8; procedure Put_String (This : in out ByteBuffer; Value : String) with Pre'Class => Remaining (This) >= Value'Length + 2, -- 2 bytes for the length Post'Class => Position (This) = Position (This)'Old + 2 + Value'Length and Length (This) = Length (This)'Old + Value'Length + 2; -- Populate the ByteBuffer from the bytes in a String. Useful for then -- rewinding and reading back out meaningful objects. The input Value is a -- String because that's the most convenient choice, based on client usage. procedure Put_Raw_Bytes (This : in out ByteBuffer; Value : String) with Pre'Class => Value /= "" and Remaining (This) >= Value'Length, -- we don't write the length attr Post'Class => Position (This) = Position (This)'Old + Value'Length and -- we don't write the length attr Length (This) = Length (This)'Old + Value'Length; -- we don't write the length attr procedure Put_Unbounded_String (This : in out ByteBuffer; Value : Unbounded_String) with Pre'Class => Integer (Remaining (This)) >= 2 + Length (Value), -- 2 bytes for the length Post'Class => Position (This) = Position (This)'Old + 2 + UInt32 (Length (Value)) and Length (This) = Length (This)'Old + 2 + UInt32 (Length (Value)); type Byte_Array is array (Index range <>) of Byte with Component_Size => 1 * Storage_Unit; -- confirming function Raw_Bytes (This : ByteBuffer) return Byte_Array; -- Returns the full internal byte array content function Raw_Bytes (This : ByteBuffer) return String; -- Returns the full internal byte array content, as a String function Checksum (This : ByteBuffer; From, To : Index) return UInt32 with Pre'Class => From <= To and -- null ranges are not useful From <= This.Capacity and -- physically possible To <= This.Capacity and From <= This.Length and -- logically possible To <= This.Length; -- Computes the checksum of the slice of the internal byte array From .. To. private subtype Natural_Index is UInt32 range 0 .. Maximum_Length; type ByteBuffer (Capacity : Index) is tagged record Content : Byte_Array (1 .. Capacity) := (others => 0); Position : Index := 1; -- reset to 1 by Rewind Length : Natural_Index := 0; -- reset to by Clear end record; end AVTAS.LMCP.ByteBuffers;
-- MIT License -- -- Copyright (c) 2021 Glen Cornell <glen.m.cornell@gmail.com> -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in all -- copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. function Create_Can_Frame (Can_Id : Sockets.Can_Frame.Can_Id_Type; Data : Sockets.Can_Frame.Unconstrained_Can_Frame_Data_Array) return Sockets.Can_Frame.Can_Frame is Rval : Sockets.Can_Frame.Can_Frame := (Can_Id => Can_Id, Can_Dlc => Data'Length, Uu_Pad => 16#FF#, Uu_Res0 => 16#FF#, Uu_Res1 => 16#FF#, Data => (others => 16#FF#)); Dst : Sockets.Can_Frame.Can_Dlc_Type := Rval.Data'First; begin for Src in Data'Range loop Rval.Data (Dst) := Data (Src); Dst := Sockets.Can_Frame.Can_Dlc_Type'Succ(Dst); end loop; return Rval; end Create_Can_Frame;
------------------------------------------------------------------------------ -- -- -- 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_dac.h and stm32f4xx_hal_dac_ex.h -- -- @author MCD Application Team -- -- @version V1.3.1 -- -- @date 25-March-2015 -- -- @brief Header file of DAC HAL module. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides interfaces for the digital-to-analog converters on the -- STM32F4 (ARM Cortex M4F) microcontrollers from ST Microelectronics. with System; use System; private with STM32_SVD.DAC; package STM32.DAC is type Digital_To_Analog_Converter is limited private; type DAC_Channel is (Channel_1, Channel_2); -- Note that Channel 1 is tied to GPIO pin PA4, and Channel 2 to PA5 procedure Enable (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline, Post => Enabled (This, Channel); -- Powers up the channel. The channel is then enabled after a startup -- time "Twakeup" specified in the datasheet. -- -- NB: When no hardware trigger has been selected, the value in the -- DAC_DHRx register is transfered automatically to the DOR register. -- Therefore, in that case enabling the channel starts the output -- conversion on that channel. See the RM, section 14.3.4 "DAC -- conversion" second and third paragraphs. procedure Disable (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline, Post => not Enabled (This, Channel); -- When the software trigger has been selected, disabling the channel stops -- the output conversion on that channel. function Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; type DAC_Resolution is (DAC_Resolution_12_Bits, DAC_Resolution_8_Bits); Max_12bit_Resolution : constant := 16#0FFF#; Max_8bit_Resolution : constant := 16#00FF#; type Data_Alignment is (Left_Aligned, Right_Aligned); procedure Set_Output (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Value : UInt32; Resolution : DAC_Resolution; Alignment : Data_Alignment); -- For the specified channel, writes the output Value to the data holding -- register within This corresponding to the Resolution and Alignment. -- -- The output voltage = ((Value / Max_nbit_Counts) * VRef+), where VRef+ is -- the reference input voltage and the 'n' of Max_nbit_Counts is either 12 -- or 8. procedure Trigger_Conversion_By_Software (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Pre => Trigger_Selection (This, Channel) = Software_Trigger and Trigger_Enabled (This, Channel); -- Cause the conversion to occur and the output to appear, per 14.3.6 "DAC -- trigger selection" in the RM. This routine is needed when the Software -- Trigger has been selected and the trigger has been enabled, otherwise no -- conversion occurs. If you don't enable the trigger any prior selection -- has no effect, but note that when no *hardware* trigger is selected the -- output happens automatically when the channel is enabled. See the RM, -- section 14.3.4 "DAC conversion" second and third paragraphs. procedure Trigger_Conversion_By_Software (This : in out Digital_To_Analog_Converter); function Converted_Output_Value (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return UInt32; -- Returns the latest output value for the specified channel. procedure Set_Dual_Output_Voltages (This : in out Digital_To_Analog_Converter; Channel_1_Value : UInt32; Channel_2_Value : UInt32; Resolution : DAC_Resolution; Alignment : Data_Alignment); type Dual_Channel_Output is record Channel_1_Data : UInt16; Channel_2_Data : UInt16; end record; function Converted_Dual_Output_Value (This : Digital_To_Analog_Converter) return Dual_Channel_Output; -- Returns the combination of the latest output values for both channels. type External_Event_Trigger_Selection is (Timer_6_Output_Trigger, Timer_8_Output_Trigger, Timer_7_Output_Trigger, Timer_5_Output_Trigger, Timer_2_Output_Trigger, Timer_4_Output_Trigger, EXTI_Line_9_Trigger, -- any GPIO_x Pin_9 Software_Trigger); procedure Select_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Trigger : External_Event_Trigger_Selection) with Pre => not Trigger_Enabled (This, Channel), -- per note in RM, pg 435 Post => Trigger_Selection (This, Channel) = Trigger and not Trigger_Enabled (This, Channel); -- If the software trigger is selected, output conversion starts once the -- channel is enabled. function Trigger_Selection (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return External_Event_Trigger_Selection; procedure Enable_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => Trigger_Enabled (This, Channel); procedure Disable_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => not Trigger_Enabled (This, Channel); function Trigger_Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; procedure Enable_DMA (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => DMA_Enabled (This, Channel); procedure Disable_DMA (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => not DMA_Enabled (This, Channel); function DMA_Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; type DAC_Status_Flag is (DMA_Underrun_Channel_1, DMA_Underrun_Channel_2); -- For the indicated channel, the currently selected trigger is driving the -- channel conversion at a frequency higher than the DMA service capability -- rate function Status (This : Digital_To_Analog_Converter; Flag : DAC_Status_Flag) return Boolean; procedure Clear_Status (This : in out Digital_To_Analog_Converter; Flag : DAC_Status_Flag) with Inline, Post => not Status (This, Flag); type DAC_Interrupts is (DMA_Underrun_Channel_1, DMA_Underrun_Channel_2); procedure Enable_Interrupts (This : in out Digital_To_Analog_Converter; Source : DAC_Interrupts) with Inline, Post => Interrupt_Enabled (This, Source); procedure Disable_Interrupts (This : in out Digital_To_Analog_Converter; Source : DAC_Interrupts) with Inline, Post => not Interrupt_Enabled (This, Source); function Interrupt_Enabled (This : Digital_To_Analog_Converter; Source : DAC_Interrupts) return Boolean with Inline; function Interrupt_Source (This : Digital_To_Analog_Converter) return DAC_Interrupts with Inline; procedure Clear_Interrupt_Pending (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline; type Wave_Generation_Selection is (No_Wave_Generation, Noise_Wave, Triangle_Wave); type Noise_Wave_Mask_Selection is (LFSR_Unmask_Bit0, LFSR_Unmask_Bits1_0, LFSR_Unmask_Bits2_0, LFSR_Unmask_Bits3_0, LFSR_Unmask_Bits4_0, LFSR_Unmask_Bits5_0, LFSR_Unmask_Bits6_0, LFSR_Unmask_Bits7_0, LFSR_Unmask_Bits8_0, LFSR_Unmask_Bits9_0, LFSR_Unmask_Bits10_0, LFSR_Unmask_Bits11_0); -- Unmask LFSR bits for noise wave generation type Triangle_Wave_Amplitude_Selection is (Triangle_Amplitude_1, -- Select max triangle amplitude of 1 Triangle_Amplitude_3, -- Select max triangle amplitude of 3 Triangle_Amplitude_7, -- Select max triangle amplitude of 7 Triangle_Amplitude_15, -- Select max triangle amplitude of 15 Triangle_Amplitude_31, -- Select max triangle amplitude of 31 Triangle_Amplitude_63, -- Select max triangle amplitude of 63 Triangle_Amplitude_127, -- Select max triangle amplitude of 127 Triangle_Amplitude_255, -- Select max triangle amplitude of 255 Triangle_Amplitude_511, -- Select max triangle amplitude of 511 Triangle_Amplitude_1023, -- Select max triangle amplitude of 1023 Triangle_Amplitude_2047, -- Select max triangle amplitude of 2047 Triangle_Amplitude_4095); -- Select max triangle amplitude of 4095 type Wave_Generation (Kind : Wave_Generation_Selection) is record case Kind is when No_Wave_Generation => null; when Noise_Wave => Mask : Noise_Wave_Mask_Selection; when Triangle_Wave => Amplitude : Triangle_Wave_Amplitude_Selection; end case; end record; Wave_Generation_Disabled : constant Wave_Generation := (Kind => No_Wave_Generation); procedure Select_Wave_Generation (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Selection : Wave_Generation) with Post => Selected_Wave_Generation (This, Channel) = Selection; function Selected_Wave_Generation (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Wave_Generation; function Data_Address (This : Digital_To_Analog_Converter; Channel : DAC_Channel; Resolution : DAC_Resolution; Alignment : Data_Alignment) return Address; -- Returns the address of the Data Holding register within This, for the -- specified Channel, at the specified Resolution and Alignment. -- -- This function is stricly for use with DMA, all others use the API above. private type Digital_To_Analog_Converter is new STM32_SVD.DAC.DAC_Peripheral; end STM32.DAC;
------------------------------------------------------------------------------ -- -- -- J E W L . C A N V A S _ I M P L E M E N T A T I O N -- -- -- -- This is the body of a private package containing the internal -- -- implementation details of canvases, as defined in JEWL.Windows. -- -- -- -- Copyright (C) John English 2000. Contact address: je@brighton.ac.uk -- -- This software is released under the terms of the GNU General Public -- -- License and is intended primarily for educational use. Please contact -- -- the author to report bugs, suggestions and modifications. -- -- -- ------------------------------------------------------------------------------ -- $Id: jewl-canvas_implementation.adb 1.7 2007/01/08 17:00:00 JE Exp $ ------------------------------------------------------------------------------ -- -- $Log: jewl-canvas_implementation.adb $ -- Revision 1.7 2007/01/08 17:00:00 JE -- * Fixed linker options in JEWL.Win32_Interface to accommodate changes to GNAT -- GPL 2006 compiler (thanks to John McCormick for this) -- * Added delay in message loop to avoid the appearance of hogging 100% of CPU -- time -- -- Revision 1.6 2001/11/02 16:00:00 JE -- * Fixed canvas bug when saving an empty canvas -- * Restore with no prior save now acts as erase -- * Removed redundant variable declaration in Image function -- -- Revision 1.5 2001/08/22 15:00:00 JE -- * Minor bugfix to Get_Text for combo boxes -- * Minor changes to documentation (including new example involving dialogs) -- -- Revision 1.4 2001/01/25 09:00:00 je -- Changes visible to the user: -- -- * Added support for drawing bitmaps on canvases (Draw_Image operations -- and new type Image_Type) -- * Added Play_Sound -- * Added several new operations on all windows: Get_Origin, Get_Width, -- Get_Height, Set_Origin, Set_Size and Focus -- * Added several functions giving screen and window dimensions: Screen_Width, -- Screen_Height, Frame_Width, Frame_Height, Dialog_Width, Dialog_Height and -- Menu_Height -- * Canvases can now handle keyboard events: new constructor and Key_Code added -- * Added procedure Play_Sound -- * Operations "+" and "-" added for Point_Type -- * Pens can now be zero pixels wide -- * The absolute origin of a frame can now have be specified when the frame -- is created -- * Added new File_Dialog operations Add_Filter and Set_Directory -- * Added Get_Line renames to JEWL.IO for compatibility with Ada.Text_IO -- * Added all the Get(File,Item) operations mentioned in documentation but -- unaccountably missing :-( -- * Documentation updated to reflect the above changes -- * HTML versions of public package specifications added with links from -- main documentation pages -- -- Other internal changes: -- -- * Canvas fonts, pens etc. now use JEWL.Reference_Counted_Type rather than -- reinventing this particular wheel, as do images -- * Various minor code formatting changes: some code reordered for clarity, -- some comments added or amended, -- * Changes introduced in 1.2 to support GNAT 3.10 have been reversed, since -- GNAT 3.10 still couldn't compile this code correctly... ;-( -- -- Outstanding issues: -- -- * Optimisation breaks the code (workaround: don't optimise) -- -- Revision 1.3 2000/07/07 12:00:00 je -- * JEWL.Simple_Windows added; JEWL.IO modified to use JEWL.Simple_Windows. -- * JEWL.IO bug fix: Put_Line to file wrote newline to standard output -- instead of to the file (thanks to Jeff Carter for pointing this out). -- * Panels fixed so that mouse clicks are passed on correctly to subwindows. -- * Memos fixed so that tabs are handled properly. -- * Password feature added to editboxes. -- * Minor typos fixed in comments within the package sources. -- * Documentation corrected and updated following comments from Moti Ben-Ari -- and Don Overheu. -- -- Revision 1.2 2000/04/18 20:00:00 je -- * Minor code changes to enable compilation by GNAT 3.10 -- * Minor documentation errors corrected -- * Some redundant "with" clauses removed -- -- Revision 1.1 2000/04/09 21:00:00 je -- Initial revision -- ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; with Ada.Text_IO; package body JEWL.Canvas_Implementation is use JEWL.Win32_Interface; procedure Free is new Ada.Unchecked_Deallocation (Canvas_Object_Type'Class, Canvas_Object_Ptr); ---------------------------------------------------------------------------- -- -- C A N V A S _ M O N I T O R -- -- This protected type mediates between the canvas operations and the -- message loop task. -- ---------------------------------------------------------------------------- protected body Canvas_Monitor is -------------------------------------------------------------------------- -- -- Clear: delete all objects on the drawing list by restoring to the -- beginning of the list. -- procedure Clear is begin Save_Pointer := null; Restore; end Clear; -------------------------------------------------------------------------- -- -- Save: record the current position in the drawing list. -- procedure Save is begin Save_Pointer := Last_Object; end Save; -------------------------------------------------------------------------- -- -- Restore: truncate the drawing list back to the saved position (or -- the beginning, if the saved position is null) and delete -- any objects removed in the process. -- procedure Restore is P,Q : Canvas_Object_Ptr; begin if Save_Pointer = null then P := First_Object; First_Object := null; Last_Object := null; else Last_Object := Save_Pointer; P := Last_Object.Next; Last_Object.Next := null; end if; while P /= null loop Q := P; P := P.Next; Free (Q); end loop; end Restore; -------------------------------------------------------------------------- -- -- Draw: draw all objects on the drawing list. -- procedure Draw (Handle : in Win32_HWND; Font : in Win32_HFONT) is P : Canvas_Object_Ptr := First_Object; D : Win32_HDC; H : Win32_HANDLE; S : aliased Win32_PAINTSTRUCT; I : Win32_INT; L : aliased Win32_LOGBRUSH; B : Win32_HBRUSH; begin L.lbStyle := BS_HOLLOW; B := CreateBrushIndirect(L'Unchecked_Access); -- Start drawing using the initial tool set: a transparent brush, -- standard black pen, and the canvas font D := BeginPaint (Handle, S'Access); H := SelectObject(D, B); H := SelectObject(D, GetStockObject(BLACK_PEN)); H := SelectObject(D, Font); I := SetBkMode (D, TRANSPARENT); -- Draw the objects in the drawing list while P /= null loop Draw (P.all, D); P := P.Next; end loop; -- Finish painting and destroy the brush Bool_Dummy := EndPaint (Handle, S'Access); Bool_Dummy := DeleteObject (B); end Draw; -------------------------------------------------------------------------- -- -- Add: add a new object to the end of the drawing list. -- procedure Add (Object : in Canvas_Object_Ptr) is begin if Last_Object = null then First_Object := Object; else Last_Object.Next := Object; end if; Last_Object := Object; Object.Next := null; end Add; -------------------------------------------------------------------------- -- -- Set_Brush: store the brush used to erase the background. -- procedure Set_Brush (Brush : in Win32_HBRUSH) is begin Bool_Dummy := DeleteObject(BG_Brush); BG_Brush := Brush; end Set_Brush; -------------------------------------------------------------------------- -- -- Background: get the background brush. This is called by the message -- loop task in response to a WM_ERASEBKGND message. -- function Background return Win32_HBRUSH is begin return BG_Brush; end Background; -------------------------------------------------------------------------- -- -- Set_Start: store the position where the mouse button was pressed. -- This is called by the message loop task in response to -- a WM_LBUTTONDOWN message. The end position is initially -- set to match the start position. -- procedure Set_Start (X, Y : in Integer) is begin Start_X := X; Start_Y := Y; End_X := X; End_Y := Y; Moved := False; end Set_Start; -------------------------------------------------------------------------- -- -- Get_Start: get the position where the mouse button was pressed. -- procedure Get_Start (X, Y : out Integer) is begin X := Start_X; Y := Start_Y; end Get_Start; -------------------------------------------------------------------------- -- -- Set_End: store the current mouse position. This is called by -- the message loop task in response to a WM_MOUSEMOVE -- or WM_LBUTTONUP message. The Moved flag is set true -- to indicate that the mouse has moved. -- procedure Set_End (X, Y : in Integer) is begin End_X := X; End_Y := Y; Moved := True; end Set_End; -------------------------------------------------------------------------- -- -- Get_End: get the current mouse position. The Moved flag is reset -- so that Mouse_Moved will return False until the mouse is -- moved again. -- procedure Get_End (X, Y : out Integer) is begin X := End_X; Y := End_Y; Moved := False; end Get_End; -------------------------------------------------------------------------- -- -- Set_Button: store the current mouse button state. This is called -- from the message loop task in response to WM_LBUTTONUP -- or WM_LBUTTONDOWN messages. -- procedure Set_Button (B : in Boolean) is begin Button := B; end Set_Button; -------------------------------------------------------------------------- -- -- Mouse_Down: get the current mouse button state. -- function Mouse_Down return Boolean is begin return Button; end Mouse_Down; -------------------------------------------------------------------------- -- -- Mouse_Moved: test if the mouse has moved since the last time that -- Get_End was called. -- function Mouse_Moved return Boolean is begin return Moved; end Mouse_Moved; -------------------------------------------------------------------------- -- -- Set_Key: store the character corresponding to a key that has been -- pressed. This is called from the message loop in response -- to WM_CHAR messages. -- procedure Set_Key (C : in Character) is begin Keycode := C; end Set_Key; -------------------------------------------------------------------------- -- -- Get_Key: return the character corresponding to a key that has been -- pressed. -- procedure Get_Key (C : out Character) is begin C := Keycode; Keycode := ASCII.NUL; end Get_Key; end Canvas_Monitor; ---------------------------------------------------------------------------- -- -- D R A W I N G O P E R A T I O N S -- -- The following procedures are the implementations of Draw for the -- different types of canvas objects. They are called by Draw in the -- canvas monitor, which dispatches to the appropriate procedure for -- each object in the drawing list. -- ---------------------------------------------------------------------------- -- -- Draw a text string -- procedure Draw (Object : in out Text_Type; Window : in Win32_HDC) is I : Win32_INT; R : aliased Win32_RECT; W : Win32_UINT; S : Win32_String := To_Array(Object.Text); begin -- Calculate the bounding rectangle R.Left := Win32_LONG(Object.From.X); R.Top := Win32_LONG(Object.From.Y); R.Right := Win32_LONG(Object.To.X); R.Bottom := Win32_LONG(Object.To.Y); -- Select the appropriate alignment flag (-1 is used to indicate -- that the text is not clipped by the bounding rectangle, and 0 -- upwards are values generated by Alignment_Type'Pos). if Object.Align < 0 then W := DT_NOCLIP; elsif Object.Align = 0 then W := DT_LEFT; elsif Object.Align = 1 then W := DT_CENTER; else W := DT_RIGHT; end if; -- Now draw the text I := DrawText (Window, To_LPCSTR(S), Win32_INT(Object.Length), R'Unchecked_Access, W); end Draw; ---------------------------------------------------------------------------- -- -- Draw a line -- procedure Draw (Object : in out Line_Type; Window : in Win32_HDC) is begin Bool_Dummy := MoveToEx (Window, Win32_INT(Object.From.X), Win32_INT(Object.From.Y), null); Bool_Dummy := LineTo (Window, Win32_INT(Object.To.X), Win32_INT(Object.To.Y)); end Draw; ---------------------------------------------------------------------------- -- -- Draw a rectangle -- procedure Draw (Object : in out Rectangle_Type; Window : in Win32_HDC) is begin Bool_Dummy := Rectangle (Window, Win32_INT(Object.From.X), Win32_INT(Object.From.Y), Win32_INT(Object.To.X), Win32_INT(Object.To.Y)); end Draw; ---------------------------------------------------------------------------- -- -- Draw a rectangle with rounded corners -- procedure Draw (Object : in out Rounded_Rectangle_Type; Window : in Win32_HDC) is begin Bool_Dummy := RoundRect (Window, Win32_INT(Object.From.X), Win32_INT(Object.From.Y), Win32_INT(Object.To.X), Win32_INT(Object.To.Y), Win32_INT(Object.Corner.X), Win32_INT(Object.Corner.Y)); end Draw; ---------------------------------------------------------------------------- -- -- Draw an ellipse -- procedure Draw (Object : in out Ellipse_Type; Window : in Win32_HDC) is begin Bool_Dummy := Ellipse (Window, Win32_INT(Object.From.X), Win32_INT(Object.From.Y), Win32_INT(Object.To.X), Win32_INT(Object.To.Y)); end Draw; ---------------------------------------------------------------------------- -- -- Draw a polyline -- procedure Draw (Object : in out Polyline_Type; Window : in Win32_HDC) is begin Bool_Dummy := Polyline (Window, Object.Points(1)'Unchecked_Access, Win32_INT(Object.Count)); end Draw; ---------------------------------------------------------------------------- -- -- Draw a polygon -- procedure Draw (Object : in out Polygon_Type; Window : in Win32_HDC) is begin Bool_Dummy := Polygon (Window, Object.Points(1)'Unchecked_Access, Win32_INT(Object.Count)); end Draw; ---------------------------------------------------------------------------- -- -- Draw a bitmap -- procedure Draw (Object : in out Bitmap_Type; Window : in Win32_HDC) is H : Win32_HDC := CreateCompatibleDC (Window); B : Win32_BITMAP; P : aliased Win32_POINT; Q : aliased Win32_POINT; I : Image_Ptr := Image_Ptr(Object.Bitmap.Pointer); W : Win32_HBITMAP := I.Image; N : Win32_INT; begin Long_Dummy := To_LONG (SelectObject (H, W)); N := SetMapMode (H, GetMapMode(Window)); N := GetObject (W, Win32_INT(Win32_BITMAP'Size/Win32_BYTE'Size), B'Address); P := (X => B.bmWidth, Y => B.bmHeight); Bool_Dummy := DPtoLP (Window, P'Unchecked_Access, 1); Q := (0,0); Bool_Dummy := DPtoLP (H, Q'Unchecked_Access, 1); Bool_Dummy := StretchBlt (Window, Win32_INT(Object.From.X), Win32_INT(Object.From.Y), Win32_INT(Object.Width), Win32_INT(Object.Height), H, Win32_INT(Q.X), Win32_INT(Q.Y), Win32_INT(I.Width), Win32_INT(I.Height)); Bool_Dummy := DeleteDC (H); end Draw; ---------------------------------------------------------------------------- -- -- Select a drawing tool -- procedure Draw (Object : in out Handle_Type; Window : in Win32_HDC) is H : Win32_HGDIOBJ; W : Win32_HBITMAP := Counted_Handle_Type(Object.Handle.Pointer.all).Handle; begin H := SelectObject (Window, W); end Draw; ---------------------------------------------------------------------------- -- -- C O N T R O L L E D T Y P E O P E R A T I O N S -- ---------------------------------------------------------------------------- -- -- Cleanup: destroy a bitmap handle in an Image_Internals object. -- procedure Cleanup (Object : in out Image_Internals) is begin Bool_Dummy := DeleteObject (Object.Image); end Cleanup; ---------------------------------------------------------------------------- -- -- Cleanup: destroy a handle to a Windows GDI object. -- procedure Cleanup (Object : in out Counted_Handle_Type) is begin Bool_Dummy := DeleteObject (Object.Handle); end Cleanup; ---------------------------------------------------------------------------- -- -- Handle: create a reference counted object for a Windows handle. -- function Handle (Object : Win32_HGDIOBJ) return JEWL.Controlled_Type is C : JEWL.Controlled_Type; begin C.Pointer := new Counted_Handle_Type; Counted_Handle_Type(C.Pointer.all).Handle := Object; return C; end Handle; end JEWL.Canvas_Implementation;
-- parse_args-concrete.ads -- A simple command line option parser -- Copyright (c) 2014 - 2015, James Humphry -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -- PERFORMANCE OF THIS SOFTWARE. -- This private child package contains some concrete implementations of -- different options. It is not expected that package users will create these -- types directly. Instead the factory functions in the parent package are used, -- as these ensure that the options will be indexed and referenced correctly. pragma Profile(No_Implementation_Extensions); private package Parse_Args.Concrete is -- Concrete options are not exposed to ensure that any options are not added -- to Argument_Parser inconsistently. type Option_With_Argument is abstract new Option with null record; procedure Set_Option(O : in out Option_With_Argument; A : in out Argument_Parser'Class); type Concrete_Boolean_Option is new Option and Boolean_Option with record Value : Boolean := False; Default : Boolean := False; end record; procedure Set_Option(O : in out Concrete_Boolean_Option; A : in out Argument_Parser'Class); function Image(O : in Concrete_Boolean_Option) return String is (Boolean'Image(O.Value)); function Value(O : in Concrete_Boolean_Option) return Boolean is (O.Value); type Concrete_Integer_Option is new Option_With_Argument and Integer_Option with record Value : Integer := 0; Default : Integer := 0; Min : Integer := Integer'First; Max : Integer := Integer'Last; end record; procedure Set_Option_Argument(O : in out Concrete_Integer_Option; Arg : in String; A : in out Argument_Parser'Class); function Image(O : in Concrete_Integer_Option) return String is (Integer'Image(O.Value)); function Value(O : in Concrete_Integer_Option) return Integer is (O.Value); type Repeated_Option is new Concrete_Integer_Option with null record; procedure Set_Option(O : in out Repeated_Option; A : in out Argument_Parser'Class); type Concrete_String_Option is new Option_With_Argument and String_Option with record Value : Unbounded_String := Null_Unbounded_String; Default : Unbounded_String := Null_Unbounded_String; end record; procedure Set_Option_Argument(O : in out Concrete_String_Option; Arg : in String; A : in out Argument_Parser'Class); function Value(O : in Concrete_String_Option) return String is (To_String(O.Value)); function Image(O : in Concrete_String_Option) return String renames Value; overriding procedure Finalize(Object : in out Concrete_String_Option); end Parse_Args.Concrete;
with Interfaces.C; package body usb_handler is -- External IRQ handler function usb_handler return Interfaces.C.int with Import => True, Convention => C, External_Name => "OTG_FS_IRQHandler"; -- Main usb device protected body Device_Interface is procedure Handler is unused : Interfaces.C.int; begin unused := usb_handler; end Handler; end Device_Interface; end usb_handler;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . A D D R E S S _ T O _ A C C E S S _ C O N V E R S I O N S -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- This specification is adapted from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ generic type Object (<>) is limited private; package System.Address_To_Access_Conversions is pragma Preelaborate (Address_To_Access_Conversions); type Object_Pointer is access all Object; function To_Pointer (Value : Address) return Object_Pointer; function To_Address (Value : Object_Pointer) return Address; pragma Convention (Intrinsic, To_Pointer); pragma Convention (Intrinsic, To_Address); end System.Address_To_Access_Conversions;
--# - # - # - # ----------------- -- Change log: -- -- GdM : 2011 : using System.Address_To_Access_Conversions instead of Ada.Unchecked_Conversion -- GdM : 2008 : GL 1.5 items moved to GL.Extended ('cause of Windows : - () -- RK : 2007 : added CLAMP_TO_EDGE and CLAMP_TO_BORDER for texturing. -- RK : 2007 : added positive_uInt -- RK : 2007 : renamed 'intPtr' to 'intPointer' and added correct openGL intPtr type (which is a 'ptrdiff_t') -- RK : 2007 : added support for vertex buffer objects -- GdM : 2007 : added BGR, BGRA to PixelFormatEnm and TexFormatEnm (OpenGL 1.2) -- RK : 2007 : conversions to GL.Pointer -- GdM : 2006 : added MULTISAMPLE_ARB, GetString returning a String -- GdM : End 2005 : improved 2002's point 3) -- GdM : 27 - Jan - 2004 : Added Material_Float_vector and Material ( .. .) for it -- GdM : 4 - Jan - 2003 : -- for overloading names, preference is given to GL.Double -- (Gl.Float keeps 'f') and GL.Int (GL.Short keeps 's'), in order to avoid -- confusing compilers i.r.o. arithmetics with universal types. -- GdM : 11 - Apr - 2002 : -- 1) "gl" and "GL_" useless prefixes removed, -- except when conflicting with Ada keywords -- 2) improving the independance from the "pointer" model -- 3) possibility of avoiding useless "4f"- style -- suffixes through overloading --# - # - # - # ----------------- -- Changed by MB for Windows 95, 980529 -- C replaced by Stdcall, 4th parameter starts with _ if present, -- but it is not needed -- -- OpenGL 1.1 Ada binding, package GL -- -- W. M. Richards, NiEstu, Phoenix AZ, December 1997 -- -- Converted from Brian Paul's Mesa package GL.h header file, version 2, 5. -- As noted below in Brian's original comments, this code is distributed -- under the terms of the GNU Library General Public License. -- -- Version 0.1, 21 December 1997 -- -- -- Here are the original GL.h comments: -- -- Mesa 3 - D graphics library -- Version : 2.5 -- Copyright (C) 1995 - 1997 Brian Paul -- -- 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., 675 Mass Ave, Cambridge, MA 02139, USA. with Interfaces.C; with Ada.Unchecked_Conversion; with System.Address_To_Access_Conversions; package GL is package C renames Interfaces.C; ------------------------------------------------------------------------------ MESA_MAJOR_VERSION : constant := 2; MESA_MINOR_VERSION : constant := 5; VERSION_1_1 : constant := 1; EXT_BLEND_COLOR : constant := 1; EXT_BLEND_LOGIC_OP : constant := 1; EXT_BLEND_MINMAX : constant := 1; EXT_BLEND_SUBTRACT : constant := 1; EXT_POLYGON_OFFSET : constant := 1; EXT_VERTEX_ARRAY : constant := 1; EXT_TEXTURE_OBJECT : constant := 1; EXT_TEXTURE3D : constant := 1; EXT_PALETTED_TEXTURE : constant := 1; EXT_SHARED_TEXTURE_PALETTE : constant := 1; EXT_POINT_PARAMETERS : constant := 1; MESA_WINDOW_POS : constant := 1; MESA_RESIZE_BUFFERS : constant := 1; CURRENT_BIT : constant := 16#00000001#; POINT_BIT : constant := 16#00000002#; LINE_BIT : constant := 16#00000004#; POLYGON_BIT : constant := 16#00000008#; POLYGON_STIPPLE_BIT : constant := 16#00000010#; PIXEL_MODE_BIT : constant := 16#00000020#; LIGHTING_BIT : constant := 16#00000040#; FOG_BIT : constant := 16#00000080#; DEPTH_BUFFER_BIT : constant := 16#00000100#; ACCUM_BUFFER_BIT : constant := 16#00000200#; STENCIL_BUFFER_BIT : constant := 16#00000400#; VIEWPORT_BIT : constant := 16#00000800#; TRANSFORM_BIT : constant := 16#00001000#; ENABLE_BIT : constant := 16#00002000#; COLOR_BUFFER_BIT : constant := 16#00004000#; HINT_BIT : constant := 16#00008000#; EVAL_BIT : constant := 16#00010000#; LIST_BIT : constant := 16#00020000#; TEXTURE_BIT : constant := 16#00040000#; SCISSOR_BIT : constant := 16#00080000#; ALL_ATTRIB_BITS : constant := 16#000FFFFF#; CLIENT_PIXEL_STORE_BIT : constant := 16#00000001#; CLIENT_VERTEX_ARRAY_BIT : constant := 16#00000002#; CLIENT_ALL_ATTRIB_BITS : constant := 16#0000FFFF#; ------------------------------------------------------------------------------ -- Base types type Bitfield is new C.unsigned; -- 4 - byte unsigned type GL_Boolean is new C.unsigned_char; -- 1 - byte unsigned in [0, 1] type Byte is new C.char; -- 1 - byte signed type Short is new C.short; -- 2 - byte signed type Int is new C.int; -- 4 - byte signed type Ubyte is new C.unsigned_char; -- 1 - byte unsigned type Ushort is new C.unsigned_short; -- 2 - byte unsigned type Uint is new C.unsigned; -- 4 - byte unsigned type Sizei is new C.int; -- 4 - byte signed type C_Float is new C.C_float; -- single precision float type Clampf is new C.C_float; -- single precision float in [0, 1] type Double is new C.double; -- double precision float type Clampd is new C.double; -- double precision float in [0, 1] type positive_uInt is new GL.Uint range 1 .. GL.Uint'Last; package A2A_double is new System.Address_To_Access_Conversions (Double); -- Pointer types type GL_BooleanPtr is access all GL_Boolean; type bytePtr is access all Byte; type shortPtr is access all Short; type intPointer is access all Int; type ubytePtr is access all Ubyte; type ushortPtr is access all Ushort; type uintPtr is access all Uint; type floatPtr is access all GL.C_Float; type clampfPtr is access all Clampf; subtype doublePtr is A2A_double.Object_Pointer; subtype sizeiPtr is Interfaces.C.ptrdiff_t; -- used for pointer arithmetic subtype intPtr is Interfaces.C.ptrdiff_t; type pointer is access all Ubyte; -- our substitute for "void *" -- Vectors type Light_Float_vector is array (0 .. 3) of aliased GL.C_Float; type Material_Float_vector is array (0 .. 3) of aliased GL.C_Float; type Double_Vector_3D is array (0 .. 2) of aliased GL.Double; type RGB_Color is record Red, Green, Blue : GL.Double; end record; type RGBA_Color is record red, green, blue, alpha : GL.Double; end record; -- conversions to GL.Pointer type color_access is access all GL.RGB_Color; function to_Pointer is new Ada.Unchecked_Conversion (color_access, GL.pointer); subtype double_access is doublePtr; function to_Pointer is new Ada.Unchecked_Conversion (double_access, GL.pointer); type natural_access is access all Natural; function to_Pointer is new Ada.Unchecked_Conversion (natural_access, GL.pointer); function to_Pointer is new Ada.Unchecked_Conversion (uintPtr, GL.pointer); function to_Pointer is new Ada.Unchecked_Conversion (ushortPtr, GL.pointer); ------------------------------------------------------------------------------ -- GL.enum is used only for sizing of the real enumeration types type enum is new C.unsigned; -- The boolean constants GL_False : constant GL_Boolean := GL_Boolean'Val (0); GL_True : constant GL_Boolean := GL_Boolean'Val (1); -- Get pointer values type GetPointerEnm is ( FEEDBACK_BUFFER_POINTER, VERTEX_ARRAY_POINTER, NORMAL_ARRAY_POINTER, COLOR_ARRAY_POINTER, INDEX_ARRAY_POINTER, TEXTURE_COORD_ARRAY_POINTER, EDGE_FLAG_ARRAY_POINTER, SELECTION_BUFFER_POINTER ); for GetPointerEnm use ( FEEDBACK_BUFFER_POINTER => 16#0DF0#, VERTEX_ARRAY_POINTER => 16#808E#, NORMAL_ARRAY_POINTER => 16#808F#, COLOR_ARRAY_POINTER => 16#8090#, INDEX_ARRAY_POINTER => 16#8091#, TEXTURE_COORD_ARRAY_POINTER => 16#8092#, EDGE_FLAG_ARRAY_POINTER => 16#8093#, SELECTION_BUFFER_POINTER => 16#FFFF# -- fixme : Mesa 2.5 does not support!! What's the real value? ); for GetPointerEnm'Size use GL.enum'Size; procedure GetPointerv (pname : GetPointerEnm; params : GL.pointer); -- Alpha, stencil, and depth tests type FuncEnm is ( NEVER, LESS, EQUAL, LEQUAL, GREATER, NOTEQUAL, GEQUAL, ALWAYS ); for FuncEnm use ( NEVER => 16#0200#, LESS => 16#0201#, EQUAL => 16#0202#, LEQUAL => 16#0203#, GREATER => 16#0204#, NOTEQUAL => 16#0205#, GEQUAL => 16#0206#, ALWAYS => 16#0207# ); for FuncEnm'Size use GL.enum'Size; procedure Alpha_Func (func : FuncEnm; ref : GL.Clampf); procedure DepthFunc (func : FuncEnm); procedure StencilFunc (func : FuncEnm; ref : GL.Int; mask : GL.Uint); -- Stencil operations type StencilOpEnm is ( ZERO, INVERT, KEEP, REPLACE, INCR, DECR ); for StencilOpEnm use ( ZERO => 16#0000#, INVERT => 16#150A#, KEEP => 16#1E00#, REPLACE => 16#1E01#, INCR => 16#1E02#, DECR => 16#1E03# ); for StencilOpEnm'Size use GL.enum'Size; procedure StencilOp (fail : StencilOpEnm; zfail : StencilOpEnm; zpass : StencilOpEnm); -- Blending functions type BlendSrcEnm is ( ZERO, ONE, SRC_ALPHA, ONE_MINUS_SRC_ALPHA, DST_ALPHA, ONE_MINUS_DST_ALPHA, DST_COLOR, ONE_MINUS_DST_COLOR, SRC_ALPHA_SATURATE, CONSTANT_COLOR, ONE_MINUS_CONSTANT_COLOR, CONSTANT_ALPHA, ONE_MINUS_CONSTANT_ALPHA ); for BlendSrcEnm use ( ZERO => 16#0000#, ONE => 16#0001#, SRC_ALPHA => 16#0302#, ONE_MINUS_SRC_ALPHA => 16#0303#, DST_ALPHA => 16#0304#, ONE_MINUS_DST_ALPHA => 16#0305#, DST_COLOR => 16#0306#, ONE_MINUS_DST_COLOR => 16#0307#, SRC_ALPHA_SATURATE => 16#0308#, CONSTANT_COLOR => 16#8001#, -- are these four Mesa - specific? ONE_MINUS_CONSTANT_COLOR => 16#8002#, CONSTANT_ALPHA => 16#8003#, ONE_MINUS_CONSTANT_ALPHA => 16#8004# ); for BlendSrcEnm'Size use GL.enum'Size; type BlendDstEnm is ( ZERO, ONE, SRC_COLOR, ONE_MINUS_SRC_COLOR, SRC_ALPHA, ONE_MINUS_SRC_ALPHA, DST_ALPHA, ONE_MINUS_DST_ALPHA ); for BlendDstEnm use ( ZERO => 16#0000#, ONE => 16#0001#, SRC_COLOR => 16#0300#, ONE_MINUS_SRC_COLOR => 16#0301#, SRC_ALPHA => 16#0302#, ONE_MINUS_SRC_ALPHA => 16#0303#, DST_ALPHA => 16#0304#, ONE_MINUS_DST_ALPHA => 16#0305# ); for BlendDstEnm'Size use GL.enum'Size; type BlendEquationEnm is ( LOGIC_OP, FUNC_ADD_EXT, MIN_EXT, MAX_EXT, FUNC_SUBTRACT_EXT, FUNC_REVERSE_SUBTRACT_EXT ); for BlendEquationEnm use ( LOGIC_OP => 16#0BF1#, FUNC_ADD_EXT => 16#8006#, MIN_EXT => 16#8007#, MAX_EXT => 16#8008#, FUNC_SUBTRACT_EXT => 16#800A#, FUNC_REVERSE_SUBTRACT_EXT => 16#800B# ); for BlendEquationEnm'Size use GL.enum'Size; procedure BlendFunc (sfactor : BlendSrcEnm; dfactor : BlendDstEnm); procedure BlendEquationEXT (mode : BlendEquationEnm); procedure BlendColorEXT (red : GL.Clampf; green : GL.Clampf; blue : GL.Clampf; alpha : GL.Clampf); -- Locic operation function type LogicOpEnm is ( CLEAR, GL_AND, AND_REVERSE, COPY, AND_INVERTED, NOOP, GL_XOR, GL_OR, NOR, EQUIV, INVERT, OR_REVERSE, COPY_INVERTED, OR_INVERTED, NAND, SET ); for LogicOpEnm use ( CLEAR => 16#1500#, GL_AND => 16#1501#, AND_REVERSE => 16#1502#, COPY => 16#1503#, AND_INVERTED => 16#1504#, NOOP => 16#1505#, GL_XOR => 16#1506#, GL_OR => 16#1507#, NOR => 16#1508#, EQUIV => 16#1509#, INVERT => 16#150A#, OR_REVERSE => 16#150B#, COPY_INVERTED => 16#150C#, OR_INVERTED => 16#150D#, NAND => 16#150E#, SET => 16#150F# ); for LogicOpEnm'Size use GL.enum'Size; procedure LogicOp (opcode : LogicOpEnm); -- Face culling type FaceEnm is ( FRONT, BACK, FRONT_AND_BACK ); for FaceEnm use ( FRONT => 16#0404#, BACK => 16#0405#, FRONT_AND_BACK => 16#0408# ); for FaceEnm'Size use GL.enum'Size; procedure CullFace (mode : FaceEnm); -- Polygon orientation type OrientationEnm is ( CW, CCW ); for OrientationEnm use ( CW => 16#0900#, CCW => 16#0901# ); for OrientationEnm'Size use GL.enum'Size; procedure FrontFace (mode : OrientationEnm); -- Polygon mode type PolygonModeEnm is ( POINT, LINE, FILL ); for PolygonModeEnm use ( POINT => 16#1B00#, LINE => 16#1B01#, FILL => 16#1B02# ); for PolygonModeEnm'Size use GL.enum'Size; procedure PolygonMode (face : FaceEnm; mode : PolygonModeEnm); -- Clipping plane operations type ClipPlaneEnm is ( CLIP_PLANE0, CLIP_PLANE1, CLIP_PLANE2, CLIP_PLANE3, CLIP_PLANE4, CLIP_PLANE5 ); for ClipPlaneEnm use ( CLIP_PLANE0 => 16#3000#, CLIP_PLANE1 => 16#3001#, CLIP_PLANE2 => 16#3002#, CLIP_PLANE3 => 16#3003#, CLIP_PLANE4 => 16#3004#, CLIP_PLANE5 => 16#3005# ); for ClipPlaneEnm'Size use GL.enum'Size; procedure ClipPlane (plane : ClipPlaneEnm; equation : GL.doublePtr); procedure GetClipPlane (plane : ClipPlaneEnm; equation : GL.doublePtr); -- Buffer selection type DrawBufferEnm is ( NONE, FRONT_LEFT, FRONT_RIGHT, BACK_LEFT, BACK_RIGHT, FRONT, BACK, LEFT, RIGHT, FRONT_AND_BACK, AUX0, AUX1, AUX2, AUX3 ); for DrawBufferEnm use ( NONE => 16#0000#, FRONT_LEFT => 16#0400#, FRONT_RIGHT => 16#0401#, BACK_LEFT => 16#0402#, BACK_RIGHT => 16#0403#, FRONT => 16#0404#, BACK => 16#0405#, LEFT => 16#0406#, RIGHT => 16#0407#, FRONT_AND_BACK => 16#0408#, AUX0 => 16#0409#, AUX1 => 16#040A#, AUX2 => 16#040B#, AUX3 => 16#040C# ); for DrawBufferEnm'Size use GL.enum'Size; procedure DrawBuffer (mode : DrawBufferEnm); type ReadBufferEnm is ( FRONT_LEFT, FRONT_RIGHT, BACK_LEFT, BACK_RIGHT, FRONT, BACK, LEFT, RIGHT, AUX0, AUX1, AUX2, AUX3 ); for ReadBufferEnm use ( FRONT_LEFT => 16#0400#, FRONT_RIGHT => 16#0401#, BACK_LEFT => 16#0402#, BACK_RIGHT => 16#0403#, FRONT => 16#0404#, BACK => 16#0405#, LEFT => 16#0406#, RIGHT => 16#0407#, AUX0 => 16#0409#, AUX1 => 16#040A#, AUX2 => 16#040B#, AUX3 => 16#040C# ); for ReadBufferEnm'Size use GL.enum'Size; procedure ReadBuffer (mode : ReadBufferEnm); -- Server - side capabilities type ServerCapabilityEnm is ( POINT_SMOOTH, LINE_SMOOTH, LINE_STIPPLE, POLYGON_SMOOTH, POLYGON_STIPPLE, CULL_FACE, LIGHTING, COLOR_MATERIAL, FOG, DEPTH_TEST, STENCIL_TEST, NORMALIZE, ALPHA_TEST, DITHER, BLEND, INDEX_LOGIC_OP, COLOR_LOGIC_OP, SCISSOR_TEST, TEXTURE_GEN_S, TEXTURE_GEN_T, TEXTURE_GEN_R, TEXTURE_GEN_Q, AUTO_NORMAL, MAP1_COLOR_4, MAP1_INDEX, MAP1_NORMAL, MAP1_TEXTURE_COORD_1, MAP1_TEXTURE_COORD_2, MAP1_TEXTURE_COORD_3, MAP1_TEXTURE_COORD_4, MAP1_VERTEX_3, MAP1_VERTEX_4, MAP2_COLOR_4, MAP2_INDEX, MAP2_NORMAL, MAP2_TEXTURE_COORD_1, MAP2_TEXTURE_COORD_2, MAP2_TEXTURE_COORD_3, MAP2_TEXTURE_COORD_4, MAP2_VERTEX_3, MAP2_VERTEX_4, TEXTURE_1D, TEXTURE_2D, POLYGON_OFFSET_POINT, POLYGON_OFFSET_LINE, CLIP_PLANE0, CLIP_PLANE1, CLIP_PLANE2, CLIP_PLANE3, CLIP_PLANE4, CLIP_PLANE5, LIGHT0, LIGHT1, LIGHT2, LIGHT3, LIGHT4, LIGHT5, LIGHT6, LIGHT7, POLYGON_OFFSET_FILL, TEXTURE_3D_EXT, -- ARB_multisample: MULTISAMPLE_ARB, SAMPLE_ALPHA_TO_COVERAGE_ARB, SAMPLE_ALPHA_TO_ONE_ARB, SAMPLE_COVERAGE_ARB, SAMPLE_BUFFERS_ARB, SAMPLES_ARB, SAMPLE_COVERAGE_VALUE_ARB, SAMPLE_COVERAGE_INVERT_ARB, MULTISAMPLE_BIT_ARB ); for ServerCapabilityEnm use ( POINT_SMOOTH => 16#0B10#, LINE_SMOOTH => 16#0B20#, LINE_STIPPLE => 16#0B24#, POLYGON_SMOOTH => 16#0B41#, POLYGON_STIPPLE => 16#0B42#, CULL_FACE => 16#0B44#, LIGHTING => 16#0B50#, COLOR_MATERIAL => 16#0B57#, FOG => 16#0B60#, DEPTH_TEST => 16#0B71#, STENCIL_TEST => 16#0B90#, NORMALIZE => 16#0BA1#, ALPHA_TEST => 16#0BC0#, DITHER => 16#0BD0#, BLEND => 16#0BE2#, INDEX_LOGIC_OP => 16#0BF1#, COLOR_LOGIC_OP => 16#0BF2#, SCISSOR_TEST => 16#0C11#, TEXTURE_GEN_S => 16#0C60#, TEXTURE_GEN_T => 16#0C61#, TEXTURE_GEN_R => 16#0C62#, TEXTURE_GEN_Q => 16#0C63#, AUTO_NORMAL => 16#0D80#, MAP1_COLOR_4 => 16#0D90#, MAP1_INDEX => 16#0D91#, MAP1_NORMAL => 16#0D92#, MAP1_TEXTURE_COORD_1 => 16#0D93#, MAP1_TEXTURE_COORD_2 => 16#0D94#, MAP1_TEXTURE_COORD_3 => 16#0D95#, MAP1_TEXTURE_COORD_4 => 16#0D96#, MAP1_VERTEX_3 => 16#0D97#, MAP1_VERTEX_4 => 16#0D98#, MAP2_COLOR_4 => 16#0DB0#, MAP2_INDEX => 16#0DB1#, MAP2_NORMAL => 16#0DB2#, MAP2_TEXTURE_COORD_1 => 16#0DB3#, MAP2_TEXTURE_COORD_2 => 16#0DB4#, MAP2_TEXTURE_COORD_3 => 16#0DB5#, MAP2_TEXTURE_COORD_4 => 16#0DB6#, MAP2_VERTEX_3 => 16#0DB7#, MAP2_VERTEX_4 => 16#0DB8#, TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1#, POLYGON_OFFSET_POINT => 16#2A01#, POLYGON_OFFSET_LINE => 16#2A02#, CLIP_PLANE0 => 16#3000#, CLIP_PLANE1 => 16#3001#, CLIP_PLANE2 => 16#3002#, CLIP_PLANE3 => 16#3003#, CLIP_PLANE4 => 16#3004#, CLIP_PLANE5 => 16#3005#, LIGHT0 => 16#4000#, LIGHT1 => 16#4001#, LIGHT2 => 16#4002#, LIGHT3 => 16#4003#, LIGHT4 => 16#4004#, LIGHT5 => 16#4005#, LIGHT6 => 16#4006#, LIGHT7 => 16#4007#, POLYGON_OFFSET_FILL => 16#8037#, TEXTURE_3D_EXT => 16#806F#, MULTISAMPLE_ARB => 16#809D#, SAMPLE_ALPHA_TO_COVERAGE_ARB => 16#809E#, SAMPLE_ALPHA_TO_ONE_ARB => 16#809F#, SAMPLE_COVERAGE_ARB => 16#80A0#, SAMPLE_BUFFERS_ARB => 16#80A8#, SAMPLES_ARB => 16#80A9#, SAMPLE_COVERAGE_VALUE_ARB => 16#80AA#, SAMPLE_COVERAGE_INVERT_ARB => 16#80AB#, MULTISAMPLE_BIT_ARB => 16#20000000# ); for ServerCapabilityEnm'Size use GL.enum'Size; procedure Enable (cap : ServerCapabilityEnm); procedure Disable (cap : ServerCapabilityEnm); function IsEnabled (cap : ServerCapabilityEnm) return GL_Boolean; -- Client state type ClientCapabilityEnm is ( VERTEX_ARRAY, NORMAL_ARRAY, COLOR_ARRAY, INDEX_ARRAY, TEXTURE_COORD_ARRAY, EDGE_FLAG_ARRAY ); for ClientCapabilityEnm use ( VERTEX_ARRAY => 16#8074#, NORMAL_ARRAY => 16#8075#, COLOR_ARRAY => 16#8076#, INDEX_ARRAY => 16#8077#, TEXTURE_COORD_ARRAY => 16#8078#, EDGE_FLAG_ARRAY => 16#8079# ); for ClientCapabilityEnm'Size use GL.enum'Size; procedure Enable_Client_State (cap : ClientCapabilityEnm); procedure Disable_Client_State (cap : ClientCapabilityEnm); -- Parameter fetches type ParameterNameEnm is ( CURRENT_COLOR, CURRENT_INDEX, CURRENT_NORMAL, CURRENT_TEXTURE_COORDS, CURRENT_RASTER_COLOR, CURRENT_RASTER_INDEX, CURRENT_RASTER_TEXTURE_COORDS, CURRENT_RASTER_POSITION, CURRENT_RASTER_POSITION_VALID, CURRENT_RASTER_DISTANCE, POINT_SMOOTH, POINT_SIZE, POINT_SIZE_RANGE, POINT_SIZE_GRANULARITY, LINE_SMOOTH, LINE_WIDTH, LINE_WIDTH_RANGE, LINE_WIDTH_GRANULARITY, LINE_STIPPLE, LINE_STIPPLE_PATTERN, LINE_STIPPLE_REPEAT, LIST_MODE, MAX_LIST_NESTING, LIST_BASE, LIST_INDEX, POLYGON_MODE, POLYGON_SMOOTH, POLYGON_STIPPLE, EDGE_FLAG, CULL_FACE, CULL_FACE_MODE, FRONT_FACE, LIGHTING, LIGHT_MODEL_LOCAL_VIEWER, LIGHT_MODEL_TWO_SIDE, LIGHT_MODEL_AMBIENT, SHADE_MODEL, COLOR_MATERIAL_FACE, COLOR_MATERIAL_PARAMETER, COLOR_MATERIAL, FOG, FOG_INDEX, FOG_DENSITY, FOG_START, FOG_END, FOG_MODE, FOG_COLOR, DEPTH_RANGE, DEPTH_TEST, DEPTH_WRITEMASK, DEPTH_CLEAR_VALUE, DEPTH_FUNC, ACCUM_CLEAR_VALUE, STENCIL_TEST, STENCIL_CLEAR_VALUE, STENCIL_FUNC, STENCIL_VALUE_MASK, STENCIL_FAIL, STENCIL_PASS_DEPTH_FAIL, STENCIL_PASS_DEPTH_PASS, STENCIL_REF, STENCIL_WRITEMASK, MATRIX_MODE, NORMALIZE, VIEWPORT, MODELVIEW_STACK_DEPTH, PROJECTION_STACK_DEPTH, TEXTURE_STACK_DEPTH, MODELVIEW_MATRIX, PROJECTION_MATRIX, TEXTURE_MATRIX, ATTRIB_STACK_DEPTH, CLIENT_ATTRIB_STACK_DEPTH, ALPHA_TEST, ALPHA_TEST_FUNC, ALPHA_TEST_REF, DITHER, BLEND_DST, BLEND_SRC, BLEND, LOGIC_OP_MODE, INDEX_LOGIC_OP, COLOR_LOGIC_OP, AUX_BUFFERS, DRAW_BUFFER, READ_BUFFER, SCISSOR_BOX, SCISSOR_TEST, INDEX_CLEAR_VALUE, INDEX_WRITEMASK, COLOR_CLEAR_VALUE, COLOR_WRITEMASK, INDEX_MODE, RGBA_MODE, DOUBLEBUFFER, STEREO, RENDER_MODE, PERSPECTIVE_CORRECTION_HINT, POINT_SMOOTH_HINT, LINE_SMOOTH_HINT, POLYGON_SMOOTH_HINT, FOG_HINT, TEXTURE_GEN_S, TEXTURE_GEN_T, TEXTURE_GEN_R, TEXTURE_GEN_Q, PIXEL_MAP_I_TO_I_SIZE, PIXEL_MAP_S_TO_S_SIZE, PIXEL_MAP_I_TO_R_SIZE, PIXEL_MAP_I_TO_G_SIZE, PIXEL_MAP_I_TO_B_SIZE, PIXEL_MAP_I_TO_A_SIZE, PIXEL_MAP_R_TO_R_SIZE, PIXEL_MAP_G_TO_G_SIZE, PIXEL_MAP_B_TO_B_SIZE, PIXEL_MAP_A_TO_A_SIZE, UNPACK_SWAP_BYTES, UNPACK_LSB_FIRST, UNPACK_ROW_LENGTH, UNPACK_SKIP_ROWS, UNPACK_SKIP_PIXELS, UNPACK_ALIGNMENT, PACK_SWAP_BYTES, PACK_LSB_FIRST, PACK_ROW_LENGTH, PACK_SKIP_ROWS, PACK_SKIP_PIXELS, PACK_ALIGNMENT, MAP_COLOR, MAP_STENCIL, INDEX_SHIFT, INDEX_OFFSET, RED_SCALE, RED_BIAS, ZOOM_X, ZOOM_Y, GREEN_SCALE, GREEN_BIAS, BLUE_SCALE, BLUE_BIAS, ALPHA_SCALE, ALPHA_BIAS, DEPTH_SCALE, DEPTH_BIAS, MAX_EVAL_ORDER, MAX_LIGHTS, MAX_CLIP_PLANES, MAX_TEXTURE_SIZE, MAX_PIXEL_MAP_TABLE, MAX_ATTRIB_STACK_DEPTH, MAX_MODELVIEW_STACK_DEPTH, MAX_NAME_STACK_DEPTH, MAX_PROJECTION_STACK_DEPTH, MAX_TEXTURE_STACK_DEPTH, MAX_VIEWPORT_DIMS, MAX_CLIENT_ATTRIB_STACK_DEPTH, SUBPIXEL_BITS, INDEX_BITS, RED_BITS, GREEN_BITS, BLUE_BITS, ALPHA_BITS, DEPTH_BITS, STENCIL_BITS, ACCUM_RED_BITS, ACCUM_GREEN_BITS, ACCUM_BLUE_BITS, ACCUM_ALPHA_BITS, NAME_STACK_DEPTH, AUTO_NORMAL, MAP1_COLOR_4, MAP1_INDEX, MAP1_NORMAL, MAP1_TEXTURE_COORD_1, MAP1_TEXTURE_COORD_2, MAP1_TEXTURE_COORD_3, MAP1_TEXTURE_COORD_4, MAP1_VERTEX_3, MAP1_VERTEX_4, MAP2_COLOR_4, MAP2_INDEX, MAP2_NORMAL, MAP2_TEXTURE_COORD_1, MAP2_TEXTURE_COORD_2, MAP2_TEXTURE_COORD_3, MAP2_TEXTURE_COORD_4, MAP2_VERTEX_3, MAP2_VERTEX_4, MAP1_GRID_DOMAIN, MAP1_GRID_SEGMENTS, MAP2_GRID_DOMAIN, MAP2_GRID_SEGMENTS, TEXTURE_1D, TEXTURE_2D, POLYGON_OFFSET_UNITS, POLYGON_OFFSET_POINT, POLYGON_OFFSET_LINE, POLYGON_OFFSET_FILL, POLYGON_OFFSET_FACTOR, TEXTURE_BINDING_1D, TEXTURE_BINDING_2D, VERTEX_ARRAY, NORMAL_ARRAY, COLOR_ARRAY, INDEX_ARRAY, TEXTURE_COORD_ARRAY, EDGE_FLAG_ARRAY, VERTEX_ARRAY_SIZE, VERTEX_ARRAY_TYPE, VERTEX_ARRAY_STRIDE, NORMAL_ARRAY_TYPE, NORMAL_ARRAY_STRIDE, COLOR_ARRAY_SIZE, COLOR_ARRAY_TYPE, COLOR_ARRAY_STRIDE, INDEX_ARRAY_TYPE, INDEX_ARRAY_STRIDE, TEXTURE_COORD_ARRAY_SIZE, TEXTURE_COORD_ARRAY_TYPE, TEXTURE_COORD_ARRAY_STRIDE, EDGE_FLAG_ARRAY_STRIDE, SAMPLES ); for ParameterNameEnm use ( CURRENT_COLOR => 16#0B00#, CURRENT_INDEX => 16#0B01#, CURRENT_NORMAL => 16#0B02#, CURRENT_TEXTURE_COORDS => 16#0B03#, CURRENT_RASTER_COLOR => 16#0B04#, CURRENT_RASTER_INDEX => 16#0B05#, CURRENT_RASTER_TEXTURE_COORDS => 16#0B06#, CURRENT_RASTER_POSITION => 16#0B07#, CURRENT_RASTER_POSITION_VALID => 16#0B08#, CURRENT_RASTER_DISTANCE => 16#0B09#, POINT_SMOOTH => 16#0B10#, POINT_SIZE => 16#0B11#, POINT_SIZE_RANGE => 16#0B12#, POINT_SIZE_GRANULARITY => 16#0B13#, LINE_SMOOTH => 16#0B20#, LINE_WIDTH => 16#0B21#, LINE_WIDTH_RANGE => 16#0B22#, LINE_WIDTH_GRANULARITY => 16#0B23#, LINE_STIPPLE => 16#0B24#, LINE_STIPPLE_PATTERN => 16#0B25#, LINE_STIPPLE_REPEAT => 16#0B26#, LIST_MODE => 16#0B30#, MAX_LIST_NESTING => 16#0B31#, LIST_BASE => 16#0B32#, LIST_INDEX => 16#0B33#, POLYGON_MODE => 16#0B40#, POLYGON_SMOOTH => 16#0B41#, POLYGON_STIPPLE => 16#0B42#, EDGE_FLAG => 16#0B43#, CULL_FACE => 16#0B44#, CULL_FACE_MODE => 16#0B45#, FRONT_FACE => 16#0B46#, LIGHTING => 16#0B50#, LIGHT_MODEL_LOCAL_VIEWER => 16#0B51#, LIGHT_MODEL_TWO_SIDE => 16#0B52#, LIGHT_MODEL_AMBIENT => 16#0B53#, SHADE_MODEL => 16#0B54#, COLOR_MATERIAL_FACE => 16#0B55#, COLOR_MATERIAL_PARAMETER => 16#0B56#, COLOR_MATERIAL => 16#0B57#, FOG => 16#0B60#, FOG_INDEX => 16#0B61#, FOG_DENSITY => 16#0B62#, FOG_START => 16#0B63#, FOG_END => 16#0B64#, FOG_MODE => 16#0B65#, FOG_COLOR => 16#0B66#, DEPTH_RANGE => 16#0B70#, DEPTH_TEST => 16#0B71#, DEPTH_WRITEMASK => 16#0B72#, DEPTH_CLEAR_VALUE => 16#0B73#, DEPTH_FUNC => 16#0B74#, ACCUM_CLEAR_VALUE => 16#0B80#, STENCIL_TEST => 16#0B90#, STENCIL_CLEAR_VALUE => 16#0B91#, STENCIL_FUNC => 16#0B92#, STENCIL_VALUE_MASK => 16#0B93#, STENCIL_FAIL => 16#0B94#, STENCIL_PASS_DEPTH_FAIL => 16#0B95#, STENCIL_PASS_DEPTH_PASS => 16#0B96#, STENCIL_REF => 16#0B97#, STENCIL_WRITEMASK => 16#0B98#, MATRIX_MODE => 16#0BA0#, NORMALIZE => 16#0BA1#, VIEWPORT => 16#0BA2#, MODELVIEW_STACK_DEPTH => 16#0BA3#, PROJECTION_STACK_DEPTH => 16#0BA4#, TEXTURE_STACK_DEPTH => 16#0BA5#, MODELVIEW_MATRIX => 16#0BA6#, PROJECTION_MATRIX => 16#0BA7#, TEXTURE_MATRIX => 16#0BA8#, ATTRIB_STACK_DEPTH => 16#0BB0#, CLIENT_ATTRIB_STACK_DEPTH => 16#0BB1#, ALPHA_TEST => 16#0BC0#, ALPHA_TEST_FUNC => 16#0BC1#, ALPHA_TEST_REF => 16#0BC2#, DITHER => 16#0BD0#, BLEND_DST => 16#0BE0#, BLEND_SRC => 16#0BE1#, BLEND => 16#0BE2#, LOGIC_OP_MODE => 16#0BF0#, INDEX_LOGIC_OP => 16#0BF1#, COLOR_LOGIC_OP => 16#0BF2#, AUX_BUFFERS => 16#0C00#, DRAW_BUFFER => 16#0C01#, READ_BUFFER => 16#0C02#, SCISSOR_BOX => 16#0C10#, SCISSOR_TEST => 16#0C11#, INDEX_CLEAR_VALUE => 16#0C20#, INDEX_WRITEMASK => 16#0C21#, COLOR_CLEAR_VALUE => 16#0C22#, COLOR_WRITEMASK => 16#0C23#, INDEX_MODE => 16#0C30#, RGBA_MODE => 16#0C31#, DOUBLEBUFFER => 16#0C32#, STEREO => 16#0C33#, RENDER_MODE => 16#0C40#, PERSPECTIVE_CORRECTION_HINT => 16#0C50#, POINT_SMOOTH_HINT => 16#0C51#, LINE_SMOOTH_HINT => 16#0C52#, POLYGON_SMOOTH_HINT => 16#0C53#, FOG_HINT => 16#0C54#, TEXTURE_GEN_S => 16#0C60#, TEXTURE_GEN_T => 16#0C61#, TEXTURE_GEN_R => 16#0C62#, TEXTURE_GEN_Q => 16#0C63#, PIXEL_MAP_I_TO_I_SIZE => 16#0CB0#, PIXEL_MAP_S_TO_S_SIZE => 16#0CB1#, PIXEL_MAP_I_TO_R_SIZE => 16#0CB2#, PIXEL_MAP_I_TO_G_SIZE => 16#0CB3#, PIXEL_MAP_I_TO_B_SIZE => 16#0CB4#, PIXEL_MAP_I_TO_A_SIZE => 16#0CB5#, PIXEL_MAP_R_TO_R_SIZE => 16#0CB6#, PIXEL_MAP_G_TO_G_SIZE => 16#0CB7#, PIXEL_MAP_B_TO_B_SIZE => 16#0CB8#, PIXEL_MAP_A_TO_A_SIZE => 16#0CB9#, UNPACK_SWAP_BYTES => 16#0CF0#, UNPACK_LSB_FIRST => 16#0CF1#, UNPACK_ROW_LENGTH => 16#0CF2#, UNPACK_SKIP_ROWS => 16#0CF3#, UNPACK_SKIP_PIXELS => 16#0CF4#, UNPACK_ALIGNMENT => 16#0CF5#, PACK_SWAP_BYTES => 16#0D00#, PACK_LSB_FIRST => 16#0D01#, PACK_ROW_LENGTH => 16#0D02#, PACK_SKIP_ROWS => 16#0D03#, PACK_SKIP_PIXELS => 16#0D04#, PACK_ALIGNMENT => 16#0D05#, MAP_COLOR => 16#0D10#, MAP_STENCIL => 16#0D11#, INDEX_SHIFT => 16#0D12#, INDEX_OFFSET => 16#0D13#, RED_SCALE => 16#0D14#, RED_BIAS => 16#0D15#, ZOOM_X => 16#0D16#, ZOOM_Y => 16#0D17#, GREEN_SCALE => 16#0D18#, GREEN_BIAS => 16#0D19#, BLUE_SCALE => 16#0D1A#, BLUE_BIAS => 16#0D1B#, ALPHA_SCALE => 16#0D1C#, ALPHA_BIAS => 16#0D1D#, DEPTH_SCALE => 16#0D1E#, DEPTH_BIAS => 16#0D1F#, MAX_EVAL_ORDER => 16#0D30#, MAX_LIGHTS => 16#0D31#, MAX_CLIP_PLANES => 16#0D32#, MAX_TEXTURE_SIZE => 16#0D33#, MAX_PIXEL_MAP_TABLE => 16#0D34#, MAX_ATTRIB_STACK_DEPTH => 16#0D35#, MAX_MODELVIEW_STACK_DEPTH => 16#0D36#, MAX_NAME_STACK_DEPTH => 16#0D37#, MAX_PROJECTION_STACK_DEPTH => 16#0D38#, MAX_TEXTURE_STACK_DEPTH => 16#0D39#, MAX_VIEWPORT_DIMS => 16#0D3A#, MAX_CLIENT_ATTRIB_STACK_DEPTH => 16#0D3B#, SUBPIXEL_BITS => 16#0D50#, INDEX_BITS => 16#0D51#, RED_BITS => 16#0D52#, GREEN_BITS => 16#0D53#, BLUE_BITS => 16#0D54#, ALPHA_BITS => 16#0D55#, DEPTH_BITS => 16#0D56#, STENCIL_BITS => 16#0D57#, ACCUM_RED_BITS => 16#0D58#, ACCUM_GREEN_BITS => 16#0D59#, ACCUM_BLUE_BITS => 16#0D5A#, ACCUM_ALPHA_BITS => 16#0D5B#, NAME_STACK_DEPTH => 16#0D70#, AUTO_NORMAL => 16#0D80#, MAP1_COLOR_4 => 16#0D90#, MAP1_INDEX => 16#0D91#, MAP1_NORMAL => 16#0D92#, MAP1_TEXTURE_COORD_1 => 16#0D93#, MAP1_TEXTURE_COORD_2 => 16#0D94#, MAP1_TEXTURE_COORD_3 => 16#0D95#, MAP1_TEXTURE_COORD_4 => 16#0D96#, MAP1_VERTEX_3 => 16#0D97#, MAP1_VERTEX_4 => 16#0D98#, MAP2_COLOR_4 => 16#0DB0#, MAP2_INDEX => 16#0DB1#, MAP2_NORMAL => 16#0DB2#, MAP2_TEXTURE_COORD_1 => 16#0DB3#, MAP2_TEXTURE_COORD_2 => 16#0DB4#, MAP2_TEXTURE_COORD_3 => 16#0DB5#, MAP2_TEXTURE_COORD_4 => 16#0DB6#, MAP2_VERTEX_3 => 16#0DB7#, MAP2_VERTEX_4 => 16#0DB8#, MAP1_GRID_DOMAIN => 16#0DD0#, MAP1_GRID_SEGMENTS => 16#0DD1#, MAP2_GRID_DOMAIN => 16#0DD2#, MAP2_GRID_SEGMENTS => 16#0DD3#, TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1#, POLYGON_OFFSET_UNITS => 16#2A00#, POLYGON_OFFSET_POINT => 16#2A01#, POLYGON_OFFSET_LINE => 16#2A02#, POLYGON_OFFSET_FILL => 16#8037#, POLYGON_OFFSET_FACTOR => 16#8038#, TEXTURE_BINDING_1D => 16#8068#, TEXTURE_BINDING_2D => 16#8069#, VERTEX_ARRAY => 16#8074#, NORMAL_ARRAY => 16#8075#, COLOR_ARRAY => 16#8076#, INDEX_ARRAY => 16#8077#, TEXTURE_COORD_ARRAY => 16#8078#, EDGE_FLAG_ARRAY => 16#8079#, VERTEX_ARRAY_SIZE => 16#807A#, VERTEX_ARRAY_TYPE => 16#807B#, VERTEX_ARRAY_STRIDE => 16#807C#, NORMAL_ARRAY_TYPE => 16#807E#, NORMAL_ARRAY_STRIDE => 16#807F#, COLOR_ARRAY_SIZE => 16#8081#, COLOR_ARRAY_TYPE => 16#8082#, COLOR_ARRAY_STRIDE => 16#8083#, INDEX_ARRAY_TYPE => 16#8085#, INDEX_ARRAY_STRIDE => 16#8086#, TEXTURE_COORD_ARRAY_SIZE => 16#8088#, TEXTURE_COORD_ARRAY_TYPE => 16#8089#, TEXTURE_COORD_ARRAY_STRIDE => 16#808A#, EDGE_FLAG_ARRAY_STRIDE => 16#808C#, SAMPLES => 16#80A9# ); for ParameterNameEnm'Size use GL.enum'Size; procedure GetBooleanv (pname : ParameterNameEnm; params : GL_BooleanPtr); procedure Get (pname : ParameterNameEnm; params : GL.doublePtr); procedure GetFloatv (pname : ParameterNameEnm; params : floatPtr); procedure GetIntegerv (pname : ParameterNameEnm; params : GL.intPointer); -- Render mode type RenderModeEnm is ( RENDER, FEEDBACK, GL_SELECT ); for RenderModeEnm use ( RENDER => 16#1C00#, FEEDBACK => 16#1C01#, GL_SELECT => 16#1C02# ); for RenderModeEnm'Size use GL.enum'Size; function RenderMode (mode : RenderModeEnm) return GL.Int; -- Error information type ErrorEnm is ( NO_ERROR, INVALID_ENUM, INVALID_VALUE, INVALID_OPERATION, STACK_OVERFLOW, STACK_UNDERFLOW, OUT_OF_MEMORY ); for ErrorEnm use ( NO_ERROR => 16#0000#, INVALID_ENUM => 16#0500#, INVALID_VALUE => 16#0501#, INVALID_OPERATION => 16#0502#, STACK_OVERFLOW => 16#0503#, STACK_UNDERFLOW => 16#0504#, OUT_OF_MEMORY => 16#0505# ); for ErrorEnm'Size use GL.enum'Size; function Get_Error return ErrorEnm; -- Connection description type StringEnm is ( VENDOR, RENDERER, VERSION, EXTENSIONS ); for StringEnm use ( VENDOR => 16#1F00#, RENDERER => 16#1F01#, VERSION => 16#1F02#, EXTENSIONS => 16#1F03# ); for StringEnm'Size use GL.enum'Size; function GetString (name : StringEnm) return ubytePtr; function GetString (name : StringEnm) return String; -- Behavior hints type HintEnm is ( PERSPECTIVE_CORRECTION_HINT, POINT_SMOOTH_HINT, LINE_SMOOTH_HINT, POLYGON_SMOOTH_HINT, FOG_HINT ); for HintEnm use ( PERSPECTIVE_CORRECTION_HINT => 16#0C50#, POINT_SMOOTH_HINT => 16#0C51#, LINE_SMOOTH_HINT => 16#0C52#, POLYGON_SMOOTH_HINT => 16#0C53#, FOG_HINT => 16#0C54# ); for HintEnm'Size use GL.enum'Size; type HintModeEnm is ( DONT_CARE, FASTEST, NICEST ); for HintModeEnm use ( DONT_CARE => 16#1100#, FASTEST => 16#1101#, NICEST => 16#1102# ); for HintModeEnm'Size use GL.enum'Size; procedure Hint (target : HintEnm; mode : HintModeEnm); -- Accumulation buffer type AccumEnm is ( ACCUM, LOAD, GL_RETURN, MULT, ADD ); for AccumEnm use ( ACCUM => 16#0100#, LOAD => 16#0101#, GL_RETURN => 16#0102#, MULT => 16#0103#, ADD => 16#0104# ); for AccumEnm'Size use GL.enum'Size; procedure Accum (op : AccumEnm; value : GL.C_Float); -- Matrix mode type MatrixModeEnm is ( MODELVIEW, PROJECTION, TEXTURE ); for MatrixModeEnm use ( MODELVIEW => 16#1700#, PROJECTION => 16#1701#, TEXTURE => 16#1702# ); for MatrixModeEnm'Size use GL.enum'Size; procedure MatrixMode (mode : MatrixModeEnm); -- Display liststype ListModeEnm is type ListModeEnm is ( COMPILE, COMPILE_AND_EXECUTE ); for ListModeEnm use ( COMPILE => 16#1300#, COMPILE_AND_EXECUTE => 16#1301# ); for ListModeEnm'Size use GL.enum'Size; type OffsetTypeEnm is ( GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, GL_2_BYTES, GL_3_BYTES, GL_4_BYTES ); for OffsetTypeEnm use ( GL_BYTE => 16#1400#, GL_UNSIGNED_BYTE => 16#1401#, GL_SHORT => 16#1402#, GL_UNSIGNED_SHORT => 16#1403#, GL_INT => 16#1404#, GL_UNSIGNED_INT => 16#1405#, GL_FLOAT => 16#1406#, GL_2_BYTES => 16#1407#, GL_3_BYTES => 16#1408#, GL_4_BYTES => 16#1409# ); for OffsetTypeEnm'Size use GL.enum'Size; function IsList (list : GL.Uint) return GL_Boolean; procedure DeleteLists (list : GL.Uint; c_range : GL.Sizei); function GenLists (c_range : GL.Sizei) return GL.Uint; procedure NewList (list : GL.Uint; mode : ListModeEnm); procedure EndList; procedure CallList (list : GL.Uint); procedure CallLists (n : GL.Sizei; c_type : OffsetTypeEnm; lists : GL.pointer); procedure ListBase (base : GL.Uint); -- Object definition type ObjectTypeEnm is ( POINTS, LINES, LINE_LOOP, LINE_STRIP, TRIANGLES, TRIANGLE_STRIP, TRIANGLE_FAN, QUADS, QUAD_STRIP, POLYGON ); pragma Ordered (ObjectTypeEnm); for ObjectTypeEnm use ( POINTS => 16#0000#, LINES => 16#0001#, LINE_LOOP => 16#0002#, LINE_STRIP => 16#0003#, TRIANGLES => 16#0004#, TRIANGLE_STRIP => 16#0005#, TRIANGLE_FAN => 16#0006#, QUADS => 16#0007#, QUAD_STRIP => 16#0008#, POLYGON => 16#0009# ); for ObjectTypeEnm'Size use GL.enum'Size; procedure GL_Begin (mode : ObjectTypeEnm); procedure GL_End; -- Vertex arrays and related type VertexTypeEnm is ( GL_SHORT, GL_INT, GL_FLOAT, GL_DOUBLE ); for VertexTypeEnm use ( GL_SHORT => 16#1402#, GL_INT => 16#1404#, GL_FLOAT => 16#1406#, GL_DOUBLE => 16#140A# ); for VertexTypeEnm'Size use GL.enum'Size; type NormalTypeEnm is ( GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, GL_DOUBLE ); for NormalTypeEnm use ( GL_BYTE => 16#1400#, GL_SHORT => 16#1402#, GL_INT => 16#1404#, GL_FLOAT => 16#1406#, GL_DOUBLE => 16#140A# ); for NormalTypeEnm'Size use GL.enum'Size; type ColorTypeEnm is ( GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, GL_DOUBLE ); for ColorTypeEnm use ( GL_BYTE => 16#1400#, GL_UNSIGNED_BYTE => 16#1401#, GL_SHORT => 16#1402#, GL_UNSIGNED_SHORT => 16#1403#, GL_INT => 16#1404#, GL_UNSIGNED_INT => 16#1405#, GL_FLOAT => 16#1406#, GL_DOUBLE => 16#140A# ); for ColorTypeEnm'Size use GL.enum'Size; type IndexTypeEnm is ( GL_UNSIGNED_BYTE, GL_SHORT, GL_INT, GL_FLOAT, GL_DOUBLE ); for IndexTypeEnm use ( GL_UNSIGNED_BYTE => 16#1401#, GL_SHORT => 16#1402#, GL_INT => 16#1404#, GL_FLOAT => 16#1406#, GL_DOUBLE => 16#140A# ); for IndexTypeEnm'Size use GL.enum'Size; type TexCoordTypeEnm is ( GL_SHORT, GL_INT, GL_FLOAT, GL_DOUBLE ); for TexCoordTypeEnm use ( GL_SHORT => 16#1402#, GL_INT => 16#1404#, GL_FLOAT => 16#1406#, GL_DOUBLE => 16#140A# ); for TexCoordTypeEnm'Size use GL.enum'Size; type ArrayIndexTypeEnm is ( UNSIGNED_BYTE, UNSIGNED_SHORT, UNSIGNED_INT ); for ArrayIndexTypeEnm use ( UNSIGNED_BYTE => 16#1401#, UNSIGNED_SHORT => 16#1403#, UNSIGNED_INT => 16#1405# ); for ArrayIndexTypeEnm'Size use GL.enum'Size; type InterleaveFormatEnm is ( V2F, V3F, C4UB_V2F, C4UB_V3F, C3F_V3F, N3F_V3F, C4F_N3F_V3F, T2F_V3F, T4F_V4F, T2F_C4UB_V3F, T2F_C3F_V3F, T2F_N3F_V3F, T2F_C4F_N3F_V3F, T4F_C4F_N3F_V4F ); for InterleaveFormatEnm use ( V2F => 16#2A20#, V3F => 16#2A21#, C4UB_V2F => 16#2A22#, C4UB_V3F => 16#2A23#, C3F_V3F => 16#2A24#, N3F_V3F => 16#2A25#, C4F_N3F_V3F => 16#2A26#, T2F_V3F => 16#2A27#, T4F_V4F => 16#2A28#, T2F_C4UB_V3F => 16#2A29#, T2F_C3F_V3F => 16#2A2A#, T2F_N3F_V3F => 16#2A2B#, T2F_C4F_N3F_V3F => 16#2A2C#, T4F_C4F_N3F_V4F => 16#2A2D# ); for InterleaveFormatEnm'Size use GL.enum'Size; procedure VertexPointer (size : GL.Int; c_type : VertexTypeEnm; stride : GL.Sizei; ptr : GL.pointer); procedure Normal_Pointer (c_type : NormalTypeEnm; stride : GL.Sizei; ptr : GL.pointer); procedure ColorPointer (size : GL.Int; c_type : ColorTypeEnm; stride : GL.Sizei; ptr : GL.pointer); procedure IndexPointer (c_type : IndexTypeEnm; stride : GL.Sizei; ptr : GL.pointer); procedure Tex_Coord_Pointer (size : GL.Int; c_type : TexCoordTypeEnm; stride : GL.Sizei; ptr : GL.pointer); procedure EdgeFlagPointer (stride : GL.Sizei; ptr : GL_BooleanPtr); procedure ArrayElement (i : GL.Int); procedure DrawArrays (mode : ObjectTypeEnm; first : GL.Int; count : GL.Sizei); procedure DrawElements (mode : ObjectTypeEnm; count : GL.Sizei; c_type : ArrayIndexTypeEnm; indices : GL.pointer); procedure interleavedArrays (format : InterleaveFormatEnm; stride : GL.Sizei; ptr : GL.pointer); -- Shading model type ShadeModeEnm is ( FLAT, SMOOTH ); for ShadeModeEnm use ( FLAT => 16#1D00#, SMOOTH => 16#1D01# ); for ShadeModeEnm'Size use GL.enum'Size; procedure ShadeModel (mode : ShadeModeEnm); -- Lighting type LightIDEnm is ( LIGHT0, LIGHT1, LIGHT2, LIGHT3, LIGHT4, LIGHT5, LIGHT6, LIGHT7 ); for LightIDEnm use ( LIGHT0 => 16#4000#, LIGHT1 => 16#4001#, LIGHT2 => 16#4002#, LIGHT3 => 16#4003#, LIGHT4 => 16#4004#, LIGHT5 => 16#4005#, LIGHT6 => 16#4006#, LIGHT7 => 16#4007# ); for LightIDEnm'Size use GL.enum'Size; type LightParameterEnm is ( SPOT_EXPONENT, SPOT_CUTOFF, CONSTANT_ATTENUATION, LINEAR_ATTENUATION, QUADRATIC_ATTENUATION ); for LightParameterEnm use ( SPOT_EXPONENT => 16#1205#, SPOT_CUTOFF => 16#1206#, CONSTANT_ATTENUATION => 16#1207#, LINEAR_ATTENUATION => 16#1208#, QUADRATIC_ATTENUATION => 16#1209# ); for LightParameterEnm'Size use GL.enum'Size; type LightParameterVEnm is ( AMBIENT, DIFFUSE, SPECULAR, POSITION, SPOT_DIRECTION, SPOT_EXPONENT, SPOT_CUTOFF, CONSTANT_ATTENUATION, LINEAR_ATTENUATION, QUADRATIC_ATTENUATION ); for LightParameterVEnm use ( AMBIENT => 16#1200#, DIFFUSE => 16#1201#, SPECULAR => 16#1202#, POSITION => 16#1203#, SPOT_DIRECTION => 16#1204#, SPOT_EXPONENT => 16#1205#, SPOT_CUTOFF => 16#1206#, CONSTANT_ATTENUATION => 16#1207#, LINEAR_ATTENUATION => 16#1208#, QUADRATIC_ATTENUATION => 16#1209# ); for LightParameterVEnm'Size use GL.enum'Size; type LightModelEnm is ( LIGHT_MODEL_LOCAL_VIEWER, LIGHT_MODEL_TWO_SIDE ); for LightModelEnm use ( LIGHT_MODEL_LOCAL_VIEWER => 16#0B51#, LIGHT_MODEL_TWO_SIDE => 16#0B52# ); for LightModelEnm'Size use GL.enum'Size; type LightModelVEnm is ( LIGHT_MODEL_LOCAL_VIEWER, LIGHT_MODEL_TWO_SIDE, LIGHT_MODEL_AMBIENT ); for LightModelVEnm use ( LIGHT_MODEL_LOCAL_VIEWER => 16#0B51#, LIGHT_MODEL_TWO_SIDE => 16#0B52#, LIGHT_MODEL_AMBIENT => 16#0B53# ); for LightModelVEnm'Size use GL.enum'Size; procedure Light (light_id : LightIDEnm; pname : LightParameterEnm; param : GL.C_Float); procedure Lighti (light_id : LightIDEnm; pname : LightParameterEnm; param : GL.Int); procedure Light (Light_id : LightIDEnm; pname : LightParameterVEnm; params : Light_Float_vector); procedure Lightiv (light_id : LightIDEnm; pname : LightParameterVEnm; params : GL.intPointer); procedure GetLightfv (light_id : LightIDEnm; pname : LightParameterVEnm; params : floatPtr); procedure GetLightiv (light_id : LightIDEnm; pname : LightParameterVEnm; params : GL.intPointer); procedure LightModelf (pname : LightModelEnm; param : GL.C_Float); procedure LightModeli (pname : LightModelEnm; param : GL.Int); procedure LightModelfv (pname : LightModelVEnm; params : floatPtr); procedure LightModeliv (pname : LightModelVEnm; params : GL.intPointer); -- Materials type MaterialParameterEnm is ( SHININESS ); for MaterialParameterEnm use ( SHININESS => 16#1601# ); for MaterialParameterEnm'Size use GL.enum'Size; type MaterialParameterVEnm is ( AMBIENT, DIFFUSE, SPECULAR, EMISSION, SHININESS, AMBIENT_AND_DIFFUSE, COLOR_INDEXES ); for MaterialParameterVEnm use ( AMBIENT => 16#1200#, DIFFUSE => 16#1201#, SPECULAR => 16#1202#, EMISSION => 16#1600#, SHININESS => 16#1601#, AMBIENT_AND_DIFFUSE => 16#1602#, COLOR_INDEXES => 16#1603# ); for MaterialParameterVEnm'Size use GL.enum'Size; type GetMaterialParameterEnm is ( AMBIENT, DIFFUSE, SPECULAR, EMISSION, SHININESS, COLOR_INDEXES ); for GetMaterialParameterEnm use ( AMBIENT => 16#1200#, DIFFUSE => 16#1201#, SPECULAR => 16#1202#, EMISSION => 16#1600#, SHININESS => 16#1601#, COLOR_INDEXES => 16#1603# ); for GetMaterialParameterEnm'Size use GL.enum'Size; type ColorMaterialEnm is ( AMBIENT, DIFFUSE, SPECULAR, EMISSION, AMBIENT_AND_DIFFUSE ); for ColorMaterialEnm use ( AMBIENT => 16#1200#, DIFFUSE => 16#1201#, SPECULAR => 16#1202#, EMISSION => 16#1600#, AMBIENT_AND_DIFFUSE => 16#1602# ); for ColorMaterialEnm'Size use GL.enum'Size; procedure Material (face : FaceEnm; pname : MaterialParameterEnm; param : GL.C_Float); procedure Materiali (face : FaceEnm; pname : MaterialParameterEnm; param : GL.Int); procedure Material (face : FaceEnm; pname : MaterialParameterVEnm; params : Material_Float_vector); procedure Materialiv (face : FaceEnm; pname : MaterialParameterVEnm; params : GL.intPointer); procedure GetMaterialfv (face : FaceEnm; pname : GetMaterialParameterEnm; params : floatPtr); procedure GetMaterialiv (face : FaceEnm; pname : GetMaterialParameterEnm; params : GL.intPointer); procedure ColorMaterial (face : FaceEnm; mode : ColorMaterialEnm); -- Pixel stuff type PixelStorageEnm is ( UNPACK_SWAP_BYTES, UNPACK_LSB_FIRST, UNPACK_ROW_LENGTH, UNPACK_SKIP_ROWS, UNPACK_SKIP_PIXELS, UNPACK_ALIGNMENT, PACK_SWAP_BYTES, PACK_LSB_FIRST, PACK_ROW_LENGTH, PACK_SKIP_ROWS, PACK_SKIP_PIXELS, PACK_ALIGNMENT ); for PixelStorageEnm use ( UNPACK_SWAP_BYTES => 16#0CF0#, UNPACK_LSB_FIRST => 16#0CF1#, UNPACK_ROW_LENGTH => 16#0CF2#, UNPACK_SKIP_ROWS => 16#0CF3#, UNPACK_SKIP_PIXELS => 16#0CF4#, UNPACK_ALIGNMENT => 16#0CF5#, PACK_SWAP_BYTES => 16#0D00#, PACK_LSB_FIRST => 16#0D01#, PACK_ROW_LENGTH => 16#0D02#, PACK_SKIP_ROWS => 16#0D03#, PACK_SKIP_PIXELS => 16#0D04#, PACK_ALIGNMENT => 16#0D05# ); for PixelStorageEnm'Size use GL.enum'Size; type PixelTransferEnm is ( MAP_COLOR, MAP_STENCIL, INDEX_SHIFT, INDEX_OFFSET, RED_SCALE, RED_BIAS, GREEN_SCALE, GREEN_BIAS, BLUE_SCALE, BLUE_BIAS, ALPHA_SCALE, ALPHA_BIAS, DEPTH_SCALE, DEPTH_BIAS ); for PixelTransferEnm use ( MAP_COLOR => 16#0D10#, MAP_STENCIL => 16#0D11#, INDEX_SHIFT => 16#0D12#, INDEX_OFFSET => 16#0D13#, RED_SCALE => 16#0D14#, RED_BIAS => 16#0D15#, GREEN_SCALE => 16#0D18#, GREEN_BIAS => 16#0D19#, BLUE_SCALE => 16#0D1A#, BLUE_BIAS => 16#0D1B#, ALPHA_SCALE => 16#0D1C#, ALPHA_BIAS => 16#0D1D#, DEPTH_SCALE => 16#0D1E#, DEPTH_BIAS => 16#0D1F# ); for PixelTransferEnm'Size use GL.enum'Size; type PixelMapEnm is ( PIXEL_MAP_I_TO_I, PIXEL_MAP_S_TO_S, PIXEL_MAP_I_TO_R, PIXEL_MAP_I_TO_G, PIXEL_MAP_I_TO_B, PIXEL_MAP_I_TO_A, PIXEL_MAP_R_TO_R, PIXEL_MAP_G_TO_G, PIXEL_MAP_B_TO_B, PIXEL_MAP_A_TO_A ); for PixelMapEnm use ( PIXEL_MAP_I_TO_I => 16#0C70#, PIXEL_MAP_S_TO_S => 16#0C71#, PIXEL_MAP_I_TO_R => 16#0C72#, PIXEL_MAP_I_TO_G => 16#0C73#, PIXEL_MAP_I_TO_B => 16#0C74#, PIXEL_MAP_I_TO_A => 16#0C75#, PIXEL_MAP_R_TO_R => 16#0C76#, PIXEL_MAP_G_TO_G => 16#0C77#, PIXEL_MAP_B_TO_B => 16#0C78#, PIXEL_MAP_A_TO_A => 16#0C79# ); for PixelMapEnm'Size use GL.enum'Size; type PixelFormatEnm is ( COLOR_INDEX, STENCIL_INDEX, DEPTH_COMPONENT, Red_Component, Green_Component, Blue_Component, Alpha_Component, RGB, RGBA, LUMINANCE, LUMINANCE_ALPHA, BGR, BGRA ); for PixelFormatEnm use ( COLOR_INDEX => 16#1900#, STENCIL_INDEX => 16#1901#, DEPTH_COMPONENT => 16#1902#, Red_Component => 16#1903#, Green_Component => 16#1904#, Blue_Component => 16#1905#, Alpha_Component => 16#1906#, RGB => 16#1907#, RGBA => 16#1908#, LUMINANCE => 16#1909#, LUMINANCE_ALPHA => 16#190A#, BGR => 16#80E0#, BGRA => 16#80E1# ); for PixelFormatEnm'Size use GL.enum'Size; type PixelDataTypeEnm is ( GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, GL_BITMAP ); for PixelDataTypeEnm use ( GL_BYTE => 16#1400#, GL_UNSIGNED_BYTE => 16#1401#, GL_SHORT => 16#1402#, GL_UNSIGNED_SHORT => 16#1403#, GL_INT => 16#1404#, GL_UNSIGNED_INT => 16#1405#, GL_FLOAT => 16#1406#, GL_BITMAP => 16#1A00# ); for PixelDataTypeEnm'Size use GL.enum'Size; type PixelCopyTypeEnm is ( COLOR, DEPTH, STENCIL ); for PixelCopyTypeEnm use ( COLOR => 16#1800#, DEPTH => 16#1801#, STENCIL => 16#1802# ); for PixelCopyTypeEnm'Size use GL.enum'Size; procedure PixelZoom (xfactor : GL.C_Float; yfactor : GL.C_Float); procedure PixelStoref (pname : PixelStorageEnm; param : GL.C_Float); procedure PixelStore (pname : PixelStorageEnm; param : GL.Int); procedure PixelTransferf (pname : PixelTransferEnm; param : GL.C_Float); procedure PixelTransferi (pname : PixelTransferEnm; param : GL.Int); procedure PixelMapfv (map : PixelMapEnm; mapsize : GL.Int; values : floatPtr); procedure PixelMapuiv (map : PixelMapEnm; mapsize : GL.Int; values : GL.uintPtr); procedure PixelMapusv (map : PixelMapEnm; mapsize : GL.Int; values : ushortPtr); procedure GetPixelMapfv (map : PixelMapEnm; values : floatPtr); procedure GetPixelMapuiv (map : PixelMapEnm; values : GL.uintPtr); procedure GetPixelMapusv (map : PixelMapEnm; values : ushortPtr); procedure ReadPixels (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei; format : PixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure DrawPixels (width : GL.Sizei; height : GL.Sizei; format : PixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure CopyPixels (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei; c_type : PixelCopyTypeEnm); -- Texturing type TexCoordEnm is ( S, T, R, Q ); for TexCoordEnm use ( S => 16#2000#, T => 16#2001#, R => 16#2002#, Q => 16#2003# ); for TexCoordEnm'Size use GL.enum'Size; type TexParameterEnm is ( TEXTURE_GEN_MODE ); for TexParameterEnm use ( TEXTURE_GEN_MODE => 16#2500# ); for TexParameterEnm'Size use GL.enum'Size; type TexParameterVEnm is ( TEXTURE_GEN_MODE, OBJECT_PLANE, EYE_PLANE ); for TexParameterVEnm use ( TEXTURE_GEN_MODE => 16#2500#, OBJECT_PLANE => 16#2501#, EYE_PLANE => 16#2502# ); for TexParameterVEnm'Size use GL.enum'Size; type TexEnvEnm is ( TEXTURE_ENV ); for TexEnvEnm use ( TEXTURE_ENV => 16#2300# ); for TexEnvEnm'Size use GL.enum'Size; type TexEnvParameterEnm is ( TEXTURE_ENV_MODE ); for TexEnvParameterEnm use ( TEXTURE_ENV_MODE => 16#2200# ); for TexEnvParameterEnm'Size use GL.enum'Size; type TexEnvParameterVEnm is ( TEXTURE_ENV_MODE, TEXTURE_ENV_COLOR ); for TexEnvParameterVEnm use ( TEXTURE_ENV_MODE => 16#2200#, TEXTURE_ENV_COLOR => 16#2201# ); for TexEnvParameterVEnm'Size use GL.enum'Size; type TargetTexEnm is ( TEXTURE_1D, TEXTURE_2D ); for TargetTexEnm use ( TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1# ); for TargetTexEnm'Size use GL.enum'Size; type TexParamEnm is ( TEXTURE_MAG_FILTER, TEXTURE_MIN_FILTER, TEXTURE_WRAP_S, TEXTURE_WRAP_T, TEXTURE_PRIORITY ); for TexParamEnm use ( TEXTURE_MAG_FILTER => 16#2800#, TEXTURE_MIN_FILTER => 16#2801#, TEXTURE_WRAP_S => 16#2802#, TEXTURE_WRAP_T => 16#2803#, TEXTURE_PRIORITY => 16#8066# ); for TexParamEnm'Size use GL.enum'Size; type TexParamVEnm is ( TEXTURE_BORDER_COLOR, TEXTURE_MAG_FILTER, TEXTURE_MIN_FILTER, TEXTURE_WRAP_S, TEXTURE_WRAP_T, TEXTURE_PRIORITY ); for TexParamVEnm use ( TEXTURE_BORDER_COLOR => 16#1004#, TEXTURE_MAG_FILTER => 16#2800#, TEXTURE_MIN_FILTER => 16#2801#, TEXTURE_WRAP_S => 16#2802#, TEXTURE_WRAP_T => 16#2803#, TEXTURE_PRIORITY => 16#8066# ); for TexParamVEnm'Size use GL.enum'Size; type GetTexParamEnm is ( TEXTURE_BORDER_COLOR, TEXTURE_MAG_FILTER, TEXTURE_MIN_FILTER, TEXTURE_WRAP_S, TEXTURE_WRAP_T, TEXTURE_PRIORITY, TEXTURE_RESIDENT ); for GetTexParamEnm use ( TEXTURE_BORDER_COLOR => 16#1004#, TEXTURE_MAG_FILTER => 16#2800#, TEXTURE_MIN_FILTER => 16#2801#, TEXTURE_WRAP_S => 16#2802#, TEXTURE_WRAP_T => 16#2803#, TEXTURE_PRIORITY => 16#8066#, TEXTURE_RESIDENT => 16#8067# ); for GetTexParamEnm'Size use GL.enum'Size; type TargetTexLevelEnm is ( TEXTURE_1D, TEXTURE_2D, PROXY_TEXTURE_1D, PROXY_TEXTURE_2D ); for TargetTexLevelEnm use ( TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1#, PROXY_TEXTURE_1D => 16#8063#, PROXY_TEXTURE_2D => 16#8064# ); for TargetTexLevelEnm'Size use GL.enum'Size; type TexLevelParameterEnm is ( TEXTURE_WIDTH, TEXTURE_HEIGHT, TEXTURE_COMPONENTS, TEXTURE_BORDER, TEXTURE_RED_SIZE, TEXTURE_GREEN_SIZE, TEXTURE_BLUE_SIZE, TEXTURE_ALPHA_SIZE, TEXTURE_LUMINANCE_SIZE, TEXTURE_INTENSITY_SIZE, TEXTURE_INTERNAL_FORMAT ); for TexLevelParameterEnm use ( TEXTURE_WIDTH => 16#1000#, TEXTURE_HEIGHT => 16#1001#, TEXTURE_COMPONENTS => 16#1003#, -- HP docs say to use this in 1.0 instead of INTERNAL_FORMAT??? TEXTURE_BORDER => 16#1005#, TEXTURE_RED_SIZE => 16#805C#, TEXTURE_GREEN_SIZE => 16#805D#, TEXTURE_BLUE_SIZE => 16#805E#, TEXTURE_ALPHA_SIZE => 16#805F#, TEXTURE_LUMINANCE_SIZE => 16#8060#, TEXTURE_INTENSITY_SIZE => 16#8061#, TEXTURE_INTERNAL_FORMAT => 16#FFFF# -- fixme : Mesa 2.5 does not support!! What's the real value? ); for TexLevelParameterEnm'Size use GL.enum'Size; type TargetTex1DEnm is ( TEXTURE_1D, PROXY_TEXTURE_1D ); for TargetTex1DEnm use ( TEXTURE_1D => 16#0DE0#, PROXY_TEXTURE_1D => 16#8063# ); for TargetTex1DEnm'Size use GL.enum'Size; type TexFormatEnm is ( Alpha_Value, RGB, RGBA, LUMINANCE, LUMINANCE_ALPHA, R3_G3_B2, ALPHA4, ALPHA8, ALPHA12, ALPHA16, LUMINANCE4, LUMINANCE8, LUMINANCE12, LUMINANCE16, LUMINANCE4_ALPHA4, LUMINANCE6_ALPHA2, LUMINANCE8_ALPHA8, LUMINANCE12_ALPHA4, LUMINANCE12_ALPHA12, LUMINANCE16_ALPHA16, INTENSITY, INTENSITY4, INTENSITY8, INTENSITY12, INTENSITY16, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8, RGB10_A2, RGBA12, RGBA16, BGR, BGRA ); for TexFormatEnm use ( Alpha_Value => 16#1906#, RGB => 16#1907#, RGBA => 16#1908#, LUMINANCE => 16#1909#, LUMINANCE_ALPHA => 16#190A#, R3_G3_B2 => 16#2A10#, ALPHA4 => 16#803B#, ALPHA8 => 16#803C#, ALPHA12 => 16#803D#, ALPHA16 => 16#803E#, LUMINANCE4 => 16#803F#, LUMINANCE8 => 16#8040#, LUMINANCE12 => 16#8041#, LUMINANCE16 => 16#8042#, LUMINANCE4_ALPHA4 => 16#8043#, LUMINANCE6_ALPHA2 => 16#8044#, LUMINANCE8_ALPHA8 => 16#8045#, LUMINANCE12_ALPHA4 => 16#8046#, LUMINANCE12_ALPHA12 => 16#8047#, LUMINANCE16_ALPHA16 => 16#8048#, INTENSITY => 16#8049#, INTENSITY4 => 16#804A#, INTENSITY8 => 16#804B#, INTENSITY12 => 16#804C#, INTENSITY16 => 16#804D#, RGB4 => 16#804F#, RGB5 => 16#8050#, RGB8 => 16#8051#, RGB10 => 16#8052#, RGB12 => 16#8053#, RGB16 => 16#8054#, RGBA2 => 16#8055#, RGBA4 => 16#8056#, RGB5_A1 => 16#8057#, RGBA8 => 16#8058#, RGB10_A2 => 16#8059#, RGBA12 => 16#805A#, RGBA16 => 16#805B#, BGR => 16#80E0#, BGRA => 16#80E1# ); for TexFormatEnm'Size use GL.enum'Size; type TexPixelFormatEnm is ( COLOR_INDEX, Red_Component, Green_Component, Blue_Component, Alpha_Component, RGB, RGBA, LUMINANCE, LUMINANCE_ALPHA ); for TexPixelFormatEnm use ( COLOR_INDEX => 16#1900#, Red_Component => 16#1903#, Green_Component => 16#1904#, Blue_Component => 16#1905#, Alpha_Component => 16#1906#, RGB => 16#1907#, RGBA => 16#1908#, LUMINANCE => 16#1909#, LUMINANCE_ALPHA => 16#190A# ); for TexPixelFormatEnm'Size use GL.enum'Size; type TargetTex2DEnm is ( TEXTURE_2D, PROXY_TEXTURE_2D ); for TargetTex2DEnm use ( TEXTURE_2D => 16#0DE1#, PROXY_TEXTURE_2D => 16#8064# ); for TargetTex2DEnm'Size use GL.enum'Size; type TexImageFormatEnm is ( Red_Component, Green_Component, Blue_Component, Alpha_Component, RGB, RGBA, LUMINANCE, LUMINANCE_ALPHA ); for TexImageFormatEnm use ( Red_Component => 16#1903#, Green_Component => 16#1904#, Blue_Component => 16#1905#, Alpha_Component => 16#1906#, RGB => 16#1907#, RGBA => 16#1908#, LUMINANCE => 16#1909#, LUMINANCE_ALPHA => 16#190A# ); for TexImageFormatEnm'Size use GL.enum'Size; type TargetTex1DOnlyEnm is ( TEXTURE_1D ); for TargetTex1DOnlyEnm use ( TEXTURE_1D => 16#0DE0# ); for TargetTex1DOnlyEnm'Size use GL.enum'Size; type TargetTex2DOnlyEnm is ( TEXTURE_2D ); for TargetTex2DOnlyEnm use ( TEXTURE_2D => 16#0DE1# ); for TargetTex2DOnlyEnm'Size use GL.enum'Size; type TargetTex3DEnm is ( TEXTURE_3D_EXT, PROXY_TEXTURE_3D_EXT ); for TargetTex3DEnm use ( TEXTURE_3D_EXT => 16#806F#, PROXY_TEXTURE_3D_EXT => 16#8070# ); for TargetTex3DEnm'Size use GL.enum'Size; type TargetTex3DOnlyEnm is ( TEXTURE_3D_EXT ); for TargetTex3DOnlyEnm use ( TEXTURE_3D_EXT => 16#806F# ); for TargetTex3DOnlyEnm'Size use GL.enum'Size; -- Texture map parameters OBJECT_LINEAR : constant := 16#2401#; EYE_LINEAR : constant := 16#2400#; SPHERE_MAP : constant := 16#2402#; -- Texture filter parameter values NEAREST_MIPMAP_NEAREST : constant := 16#2700#; NEAREST_MIPMAP_LINEAR : constant := 16#2702#; LINEAR_MIPMAP_NEAREST : constant := 16#2701#; LINEAR_MIPMAP_LINEAR : constant := 16#2703#; DECAL : constant := 16#2101#; MODULATE : constant := 16#2100#; NEAREST : constant := 16#2600#; REPEAT : constant := 16#2901#; CLAMP : constant := 16#2900#; CLAMP_TO_EDGE : constant := 16#812F#; CLAMP_TO_BORDER : constant := 16#812D#; procedure TexGend (coord : TexCoordEnm; pname : TexParameterEnm; param : GL.Double); procedure TexGenf (coord : TexCoordEnm; pname : TexParameterEnm; param : GL.C_Float); procedure TexGeni (coord : TexCoordEnm; pname : TexParameterEnm; param : GL.Int); procedure TexGendv (coord : TexCoordEnm; pname : TexParameterVEnm; params : GL.doublePtr); procedure TexGenfv (coord : TexCoordEnm; pname : TexParameterVEnm; params : floatPtr); procedure TexGeniv (coord : TexCoordEnm; pname : TexParameterVEnm; params : GL.intPointer); procedure GetTexGendv (coord : TexCoordEnm; pname : TexParameterVEnm; params : GL.doublePtr); procedure GetTexGenfv (coord : TexCoordEnm; pname : TexParameterVEnm; params : floatPtr); procedure GetTexGeniv (coord : TexCoordEnm; pname : TexParameterVEnm; params : GL.intPointer); procedure TexEnvf (target : TexEnvEnm; pname : TexEnvParameterEnm; param : GL.C_Float); procedure TexEnv (target : TexEnvEnm; pname : TexEnvParameterEnm; param : GL.Int); procedure TexEnvfv (target : TexEnvEnm; pname : TexEnvParameterVEnm; params : floatPtr); procedure TexEnviv (target : TexEnvEnm; pname : TexEnvParameterVEnm; params : GL.intPointer); procedure GetTexEnvfv (target : TexEnvEnm; pname : TexEnvParameterVEnm; params : floatPtr); procedure GetTexEnviv (target : TexEnvEnm; pname : TexEnvParameterVEnm; params : GL.intPointer); procedure TexParameterf (target : TargetTexEnm; pname : TexParamEnm; param : GL.C_Float); procedure TexParameter (target : TargetTexEnm; pname : TexParamEnm; param : GL.Int); procedure TexParameterfv (target : TargetTexEnm; pname : TexParamVEnm; params : floatPtr); procedure TexParameteriv (target : TargetTexEnm; pname : TexParamVEnm; params : GL.intPointer); procedure GetTexParameterfv (target : TargetTexEnm; pname : GetTexParamEnm; params : floatPtr); procedure GetTexParameteriv (target : TargetTexEnm; pname : GetTexParamEnm; params : GL.intPointer); procedure GetTexLevelParameterfv (target : TargetTexLevelEnm; level : GL.Int; pname : TexLevelParameterEnm; params : floatPtr); procedure GetTexLevelParameteriv (target : TargetTexLevelEnm; level : GL.Int; pname : TexLevelParameterEnm; params : GL.intPointer); procedure TexImage1D (target : TargetTex1DEnm; level : GL.Int; internalFormat : TexFormatEnm; width : GL.Sizei; border : GL.Int; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure TexImage2D (target : TargetTex2DEnm; level : GL.Int; internalFormat : TexFormatEnm; width : GL.Sizei; height : GL.Sizei; border : GL.Int; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure GetTexImage (target : TargetTexEnm; level : GL.Int; format : TexImageFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure Gen_Textures (n : GL.Sizei; textures : GL.uintPtr); procedure Delete_Textures (n : GL.Sizei; textures : GL.uintPtr); procedure BindTexture (target : TargetTexEnm; texture_ptr : GL.Uint); procedure PrioritizeTextures (n : GL.Sizei; textures : GL.uintPtr; priorities : GL.clampfPtr); function AreTexturesResident (n : GL.Sizei; textures : GL.uintPtr; residences : GL_BooleanPtr) return GL_Boolean; function IsTexture (texture_ptr : GL.Uint) return GL_Boolean; procedure TexSubImage1D (target : TargetTex1DOnlyEnm; level : GL.Int; xoffset : GL.Int; width : GL.Sizei; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure TexSubImage2D (target : TargetTex2DOnlyEnm; level : GL.Int; xoffset : GL.Int; yoffset : GL.Int; width : GL.Sizei; height : GL.Sizei; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure CopyTexImage1D (target : TargetTex1DOnlyEnm; level : GL.Int; internalformat : TexFormatEnm; x : GL.Int; y : GL.Int; width : GL.Sizei; border : GL.Int); procedure CopyTexImage2D (target : TargetTex2DOnlyEnm; level : GL.Int; internalformat : TexFormatEnm; x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei; border : GL.Int); procedure CopyTexSubImage1D (target : TargetTex1DOnlyEnm; level : GL.Int; xoffset : GL.Int; x : GL.Int; y : GL.Int; width : GL.Sizei); procedure CopyTexSubImage2D (target : TargetTex2DOnlyEnm; level : GL.Int; xoffset : GL.Int; yoffset : GL.Int; x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei); procedure TexImage3DEXT (target : TargetTex3DEnm; level : GL.Int; internalFormat : TexPixelFormatEnm; width_3d : GL.Sizei; height_3d : GL.Sizei; depth_3d : GL.Sizei; border : GL.Int; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure TexSubImage3DEXT (target : TargetTex3DOnlyEnm; level : GL.Int; xoffset : GL.Int; yoffset : GL.Int; zoffset : GL.Int; width_3d : GL.Sizei; height_3d : GL.Sizei; depth_3d : GL.Sizei; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; pixels : GL.pointer); procedure CopyTexSubImage3DEXT (target : TargetTex3DOnlyEnm; level : GL.Int; xoffset : GL.Int; yoffset : GL.Int; zoffset : GL.Int; x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei); -- Evaluators type Map1TargetEnm is ( MAP1_COLOR_4, MAP1_INDEX, MAP1_NORMAL, MAP1_TEXTURE_COORD_1, MAP1_TEXTURE_COORD_2, MAP1_TEXTURE_COORD_3, MAP1_TEXTURE_COORD_4, MAP1_VERTEX_3, MAP1_VERTEX_4 ); for Map1TargetEnm use ( MAP1_COLOR_4 => 16#0D90#, MAP1_INDEX => 16#0D91#, MAP1_NORMAL => 16#0D92#, MAP1_TEXTURE_COORD_1 => 16#0D93#, MAP1_TEXTURE_COORD_2 => 16#0D94#, MAP1_TEXTURE_COORD_3 => 16#0D95#, MAP1_TEXTURE_COORD_4 => 16#0D96#, MAP1_VERTEX_3 => 16#0D97#, MAP1_VERTEX_4 => 16#0D98# ); for Map1TargetEnm'Size use GL.enum'Size; type Map2TargetEnm is ( MAP2_COLOR_4, MAP2_INDEX, MAP2_NORMAL, MAP2_TEXTURE_COORD_1, MAP2_TEXTURE_COORD_2, MAP2_TEXTURE_COORD_3, MAP2_TEXTURE_COORD_4, MAP2_VERTEX_3, MAP2_VERTEX_4 ); for Map2TargetEnm use ( MAP2_COLOR_4 => 16#0DB0#, MAP2_INDEX => 16#0DB1#, MAP2_NORMAL => 16#0DB2#, MAP2_TEXTURE_COORD_1 => 16#0DB3#, MAP2_TEXTURE_COORD_2 => 16#0DB4#, MAP2_TEXTURE_COORD_3 => 16#0DB5#, MAP2_TEXTURE_COORD_4 => 16#0DB6#, MAP2_VERTEX_3 => 16#0DB7#, MAP2_VERTEX_4 => 16#0DB8# ); for Map2TargetEnm'Size use GL.enum'Size; type MapTargetEnm is ( MAP1_COLOR_4, MAP1_INDEX, MAP1_NORMAL, MAP1_TEXTURE_COORD_1, MAP1_TEXTURE_COORD_2, MAP1_TEXTURE_COORD_3, MAP1_TEXTURE_COORD_4, MAP1_VERTEX_3, MAP1_VERTEX_4, MAP2_COLOR_4, MAP2_INDEX, MAP2_NORMAL, MAP2_TEXTURE_COORD_1, MAP2_TEXTURE_COORD_2, MAP2_TEXTURE_COORD_3, MAP2_TEXTURE_COORD_4, MAP2_VERTEX_3, MAP2_VERTEX_4 ); for MapTargetEnm use ( MAP1_COLOR_4 => 16#0D90#, MAP1_INDEX => 16#0D91#, MAP1_NORMAL => 16#0D92#, MAP1_TEXTURE_COORD_1 => 16#0D93#, MAP1_TEXTURE_COORD_2 => 16#0D94#, MAP1_TEXTURE_COORD_3 => 16#0D95#, MAP1_TEXTURE_COORD_4 => 16#0D96#, MAP1_VERTEX_3 => 16#0D97#, MAP1_VERTEX_4 => 16#0D98#, MAP2_COLOR_4 => 16#0DB0#, MAP2_INDEX => 16#0DB1#, MAP2_NORMAL => 16#0DB2#, MAP2_TEXTURE_COORD_1 => 16#0DB3#, MAP2_TEXTURE_COORD_2 => 16#0DB4#, MAP2_TEXTURE_COORD_3 => 16#0DB5#, MAP2_TEXTURE_COORD_4 => 16#0DB6#, MAP2_VERTEX_3 => 16#0DB7#, MAP2_VERTEX_4 => 16#0DB8# ); for MapTargetEnm'Size use GL.enum'Size; type MapQueryEnm is ( COEFF, ORDER, DOMAIN ); for MapQueryEnm use ( COEFF => 16#0A00#, ORDER => 16#0A01#, DOMAIN => 16#0A02# ); for MapQueryEnm'Size use GL.enum'Size; type Mesh1ModeEnm is ( POINT, LINE ); for Mesh1ModeEnm use ( POINT => 16#1B00#, LINE => 16#1B01# ); for Mesh1ModeEnm'Size use GL.enum'Size; type Mesh2ModeEnm is ( POINT, LINE, FILL ); for Mesh2ModeEnm use ( POINT => 16#1B00#, LINE => 16#1B01#, FILL => 16#1B02# ); for Mesh2ModeEnm'Size use GL.enum'Size; procedure Map1d (target : Map1TargetEnm; u1 : GL.Double; u2 : GL.Double; stride : GL.Int; map_order : GL.Int; map_points : GL.doublePtr); procedure Map1f (target : Map1TargetEnm; u1 : GL.C_Float; u2 : GL.C_Float; stride : GL.Int; map_order : GL.Int; map_points : floatPtr); procedure Map2d (target : Map2TargetEnm; u1 : GL.Double; u2 : GL.Double; ustride : GL.Int; uorder : GL.Int; v1 : GL.Double; v2 : GL.Double; vstride : GL.Int; vorder : GL.Int; map_points : GL.doublePtr); procedure Map2f (target : Map2TargetEnm; u1 : GL.C_Float; u2 : GL.C_Float; ustride : GL.Int; uorder : GL.Int; v1 : GL.C_Float; v2 : GL.C_Float; vstride : GL.Int; vorder : GL.Int; map_points : floatPtr); procedure GetMapdv (target : MapTargetEnm; query : MapQueryEnm; v : GL.doublePtr); procedure GetMapfv (target : MapTargetEnm; query : MapQueryEnm; v : floatPtr); procedure GetMapiv (target : MapTargetEnm; query : MapQueryEnm; v : GL.intPointer); procedure EvalPoint1 (i : GL.Int); procedure EvalPoint2 (i : GL.Int; j : GL.Int); procedure EvalMesh1 (mode : Mesh1ModeEnm; i1 : GL.Int; i2 : GL.Int); procedure EvalMesh2 (mode : Mesh2ModeEnm; i1 : GL.Int; i2 : GL.Int; j1 : GL.Int; j2 : GL.Int); procedure EvalCoord1d (u : GL.Double); procedure EvalCoord1f (u : GL.C_Float); procedure EvalCoord1dv (u : GL.doublePtr); procedure EvalCoord1fv (u : floatPtr); procedure EvalCoord2d (u : GL.Double; v : GL.Double); procedure EvalCoord2f (u : GL.C_Float; v : GL.C_Float); procedure EvalCoord2dv (u : GL.doublePtr); procedure EvalCoord2fv (u : floatPtr); procedure MapGrid1d (un : GL.Int; u1 : GL.Double; u2 : GL.Double); procedure MapGrid1f (un : GL.Int; u1 : GL.C_Float; u2 : GL.C_Float); procedure MapGrid2d (un : GL.Int; u1 : GL.Double; u2 : GL.Double; vn : GL.Int; v1 : GL.Double; v2 : GL.Double); procedure MapGrid2f (un : GL.Int; u1 : GL.C_Float; u2 : GL.C_Float; vn : GL.Int; v1 : GL.C_Float; v2 : GL.C_Float); -- Fog type FogParameterEnm is ( FOG_INDEX, FOG_DENSITY, FOG_START, FOG_END, FOG_MODE ); for FogParameterEnm use ( FOG_INDEX => 16#0B61#, FOG_DENSITY => 16#0B62#, FOG_START => 16#0B63#, FOG_END => 16#0B64#, FOG_MODE => 16#0B65# ); for FogParameterEnm'Size use GL.enum'Size; type FogParameterVEnm is ( FOG_INDEX, FOG_DENSITY, FOG_START, FOG_END, FOG_MODE, FOG_COLOR ); for FogParameterVEnm use ( FOG_INDEX => 16#0B61#, FOG_DENSITY => 16#0B62#, FOG_START => 16#0B63#, FOG_END => 16#0B64#, FOG_MODE => 16#0B65#, FOG_COLOR => 16#0B66# ); for FogParameterVEnm'Size use GL.enum'Size; -- Fog attenuation modes LINEAR : constant := 16#2601#; EXP1 : constant := 16#0800#; EXP2 : constant := 16#0801#; -- EXP1 : original was EXP, confused with the Exp function (29 - May - 2006) procedure Fogf (pname : FogParameterEnm; param : GL.C_Float); procedure Fogi (pname : FogParameterEnm; param : GL.Int); procedure Fogfv (pname : FogParameterVEnm; params : floatPtr); procedure Fogiv (pname : FogParameterVEnm; params : GL.intPointer); -- Feedback type FeedbackModeEnm is ( GL_2D, GL_3D, GL_3D_COLOR, GL_3D_COLOR_TEXTURE, GL_4D_COLOR_TEXTURE ); for FeedbackModeEnm use ( GL_2D => 16#0600#, GL_3D => 16#0601#, GL_3D_COLOR => 16#0602#, GL_3D_COLOR_TEXTURE => 16#0603#, GL_4D_COLOR_TEXTURE => 16#0604# ); for FeedbackModeEnm'Size use GL.enum'Size; -- Feedback tokens POINT_TOKEN : constant := 16#0701#; LINE_TOKEN : constant := 16#0702#; LINE_RESET_TOKEN : constant := 16#0707#; POLYGON_TOKEN : constant := 16#0703#; BITMAP_TOKEN : constant := 16#0704#; DRAW_PIXEL_TOKEN : constant := 16#0705#; COPY_PIXEL_TOKEN : constant := 16#0706#; PASS_THROUGH_TOKEN : constant := 16#0700#; FEEDBACK_BUFFER_SIZE : constant := 16#0DF1#; FEEDBACK_BUFFER_TYPE : constant := 16#0DF2#; procedure FeedbackBuffer (size : GL.Sizei; c_type : FeedbackModeEnm; buffer : floatPtr); procedure PassThrough (token : GL.C_Float); -- Color tables (extension) type ColorTableTargetEnm is ( TEXTURE_1D, TEXTURE_2D, PROXY_TEXTURE_1D, PROXY_TEXTURE_2D, TEXTURE_3D_EXT, PROXY_TEXTURE_3D_EXT, SHARED_TEXTURE_PALETTE_EXT ); for ColorTableTargetEnm use ( TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1#, PROXY_TEXTURE_1D => 16#8063#, PROXY_TEXTURE_2D => 16#8064#, TEXTURE_3D_EXT => 16#806F#, PROXY_TEXTURE_3D_EXT => 16#8070#, SHARED_TEXTURE_PALETTE_EXT => 16#81FB# ); for ColorTableTargetEnm'Size use GL.enum'Size; type GetColorTableTargetEnm is ( TEXTURE_1D, TEXTURE_2D, TEXTURE_3D_EXT, SHARED_TEXTURE_PALETTE_EXT ); for GetColorTableTargetEnm use ( TEXTURE_1D => 16#0DE0#, TEXTURE_2D => 16#0DE1#, TEXTURE_3D_EXT => 16#806F#, SHARED_TEXTURE_PALETTE_EXT => 16#81FB# ); for GetColorTableTargetEnm'Size use GL.enum'Size; type ColorTableParameterEnm is ( COLOR_TABLE_FORMAT_EXT, COLOR_TABLE_WIDTH_EXT, COLOR_TABLE_RED_SIZE_EXT, COLOR_TABLE_GREEN_SIZE_EXT, COLOR_TABLE_BLUE_SIZE_EXT, COLOR_TABLE_ALPHA_SIZE_EXT, COLOR_TABLE_LUMINANCE_SIZE_EXT, COLOR_TABLE_INTENSITY_SIZE_EXT ); for ColorTableParameterEnm use ( COLOR_TABLE_FORMAT_EXT => 16#80D8#, COLOR_TABLE_WIDTH_EXT => 16#80D9#, COLOR_TABLE_RED_SIZE_EXT => 16#80DA#, COLOR_TABLE_GREEN_SIZE_EXT => 16#80DB#, COLOR_TABLE_BLUE_SIZE_EXT => 16#80DC#, COLOR_TABLE_ALPHA_SIZE_EXT => 16#80DD#, COLOR_TABLE_LUMINANCE_SIZE_EXT => 16#80DE#, COLOR_TABLE_INTENSITY_SIZE_EXT => 16#80DF# ); for ColorTableParameterEnm'Size use GL.enum'Size; procedure ColorTableEXT (target : ColorTableTargetEnm; internalformat : TexFormatEnm; width : GL.Sizei; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; table : GL.pointer); procedure ColorSubTableEXT (target : ColorTableTargetEnm; start : GL.Sizei; count : GL.Sizei; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; data : GL.pointer); procedure GetColorTableEXT (target : GetColorTableTargetEnm; format : TexPixelFormatEnm; c_type : PixelDataTypeEnm; table : GL.pointer); procedure GetColorTableParameterfvEXT (target : GetColorTableTargetEnm; pname : ColorTableParameterEnm; params : floatPtr); procedure GetColorTableParameterivEXT (target : GetColorTableTargetEnm; pname : ColorTableParameterEnm; params : GL.intPointer); -- Point parameters (extension) type PointParameterEnm is ( POINT_SIZE_MIN_EXT, POINT_SIZE_MAX_EXT, POINT_FADE_THRESHOLD_SIZE_EXT ); for PointParameterEnm use ( POINT_SIZE_MIN_EXT => 16#8126#, POINT_SIZE_MAX_EXT => 16#8127#, POINT_FADE_THRESHOLD_SIZE_EXT => 16#8128# ); for PointParameterEnm'Size use GL.enum'Size; type PointParameterVEnm is ( POINT_SIZE_MIN_EXT, POINT_SIZE_MAX_EXT, POINT_FADE_THRESHOLD_SIZE_EXT, DISTANCE_ATTENUATION_EXT ); for PointParameterVEnm use ( POINT_SIZE_MIN_EXT => 16#8126#, POINT_SIZE_MAX_EXT => 16#8127#, POINT_FADE_THRESHOLD_SIZE_EXT => 16#8128#, DISTANCE_ATTENUATION_EXT => 16#8129# ); for PointParameterVEnm'Size use GL.enum'Size; procedure PointParameterfEXT (pname : PointParameterEnm; param : GL.C_Float); procedure PointParameterfvEXT (pname : PointParameterVEnm; params : floatPtr); -- Clears procedure ClearIndex (c : GL.C_Float); procedure ClearColor (red : GL.Clampf; green : GL.Clampf; blue : GL.Clampf; alpha : GL.Clampf); procedure Clear (mask : Bitfield); procedure ClearDepth (clear_depth : GL.Clampd); procedure ClearAccum (red : GL.C_Float; green : GL.C_Float; blue : GL.C_Float; alpha : GL.C_Float); -- Masks procedure IndexMask (mask : GL.Uint); procedure ColorMask (red : GL_Boolean; green : GL_Boolean; blue : GL_Boolean; alpha : GL_Boolean); -- Drawing parameters procedure PointSize (size : GL.C_Float); procedure LineWidth (width : GL.C_Float); procedure LineStipple (factor : GL.Int; pattern : GL.Ushort); procedure PolygonOffset (factor : GL.C_Float; units : GL.C_Float); procedure PolygonStipple (mask : ubytePtr); procedure GetPolygonStipple (mask : ubytePtr); procedure EdgeFlag (flag : GL_Boolean); procedure EdgeFlagv (flag : GL_BooleanPtr); procedure Scissor (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei); -- Atribute stacks procedure PushAttrib (mask : Bitfield); procedure PopAttrib; procedure PushClientAttrib (mask : Bitfield); procedure PopClientAttrib; -- Pipeline control procedure Finish; procedure Flush; procedure Depth_Mask (flag : GL_Boolean); procedure DepthRange (near_val : GL.Clampd; far_val : GL.Clampd); -- Projections procedure Ortho (ortho_left : GL.Double; ortho_right : GL.Double; bottom : GL.Double; top : GL.Double; near_val : GL.Double; far_val : GL.Double); procedure Frustum (frustum_left : GL.Double; frustum_right : GL.Double; bottom : GL.Double; top : GL.Double; near_val : GL.Double; far_val : GL.Double); procedure Viewport (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei); -- Matrix stacks procedure PushMatrix; procedure PopMatrix; procedure LoadIdentity; procedure LoadMatrixd (m : GL.doublePtr); procedure LoadMatrixf (m : floatPtr); procedure MultMatrixd (m : GL.doublePtr); procedure MultMatrixf (m : floatPtr); -- Transformations procedure Rotate (angle : GL.Double; x : GL.Double; y : GL.Double; z : GL.Double); procedure Rotate_f (angle : GL.C_Float; x : GL.C_Float; y : GL.C_Float; z : GL.C_Float); procedure Scale (x, y, z : GL.Double); procedure Scale_f (x, y, z : GL.C_Float); procedure Translate (x, y, z : GL.Double); procedure Translate_f (x, y, z : GL.C_Float); procedure Translate (v : Double_Vector_3D); pragma Inline (Translate); -- Specify vertices procedure Vertex (x, y : GL.Double); procedure Vertex_f (x, y : GL.C_Float); procedure Vertex (x, y : GL.Int); procedure Vertex_s (x, y : GL.Short); procedure Vertex (x, y, z : GL.Double); procedure Vertex_f (x, y, z : GL.C_Float); procedure Vertex (x, y, z : GL.Int); procedure Vertex_s (x, y, z : GL.Short); procedure Vertex (x, y, z, w : GL.Double); procedure Vertex_f (x, y, z, w : GL.C_Float); procedure Vertex (x, y, z, w : GL.Int); procedure Vertex_s (x, y, z, w : GL.Short); procedure Vertex (v : Double_Vector_3D); pragma Inline (Vertex); procedure Vertex2dv (v : GL.doublePtr); procedure Vertex2fv (v : floatPtr); procedure Vertex2iv (v : GL.intPointer); procedure Vertex2sv (v : GL.shortPtr); procedure Vertex3dv (v : GL.doublePtr); procedure Vertex3fv (v : floatPtr); procedure Vertex3iv (v : GL.intPointer); procedure Vertex3sv (v : GL.shortPtr); procedure Vertex4dv (v : GL.doublePtr); procedure Vertex4fv (v : floatPtr); procedure Vertex4iv (v : GL.intPointer); procedure Vertex4sv (v : GL.shortPtr); -- Specify normal vectors procedure Normal (x, y, z : GL.Double); procedure Normal_f (x, y, z : GL.C_Float); procedure Normal (x, y, z : GL.Int); procedure Normal_b (x, y, z : GL.Byte); procedure Normal_s (x, y, z : GL.Short); procedure Normal (v : Double_Vector_3D); pragma Inline (Normal); procedure Normal3bv (v : GL.bytePtr); procedure Normal3dv (v : GL.doublePtr); procedure Normal3fv (v : floatPtr); procedure Normal3iv (v : GL.intPointer); procedure Normal3sv (v : GL.shortPtr); -- Indexed color procedure Indexd (c : GL.Double); procedure Indexf (c : GL.C_Float); procedure Indexi (c : GL.Int); procedure Indexs (c : GL.Short); procedure Indexub (c : GL.Ubyte); procedure Indexdv (c : GL.doublePtr); procedure Indexfv (c : floatPtr); procedure Indexiv (c : GL.intPointer); procedure Indexsv (c : GL.shortPtr); procedure Indexubv (c : ubytePtr); -- Component color procedure Color3b (red : GL.Byte; green : GL.Byte; blue : GL.Byte); procedure Color (red, green, blue : GL.Double); procedure Color_f (red, green, blue : GL.C_Float); procedure Color (red, green, blue : GL.Int); procedure Color_s (red, green, blue : GL.Short); procedure Color3ub (red : GL.Ubyte; green : GL.Ubyte; blue : GL.Ubyte); procedure Color3ui (red : GL.Uint; green : GL.Uint; blue : GL.Uint); procedure Color3us (red : GL.Ushort; green : GL.Ushort; blue : GL.Ushort); procedure Color4b (red : GL.Byte; green : GL.Byte; blue : GL.Byte; alpha : GL.Byte); procedure Color (red, green, blue, alpha : GL.Double); procedure Color_f (red, green, blue, alpha : GL.C_Float); procedure Color (red, green, blue, alpha : GL.Int); procedure Color_s (red, green, blue, alpha : GL.Short); procedure Color4ub (red : GL.Ubyte; green : GL.Ubyte; blue : GL.Ubyte; alpha : GL.Ubyte); procedure Color4ui (red : GL.Uint; green : GL.Uint; blue : GL.Uint; alpha : GL.Uint); procedure Color4us (red : GL.Ushort; green : GL.Ushort; blue : GL.Ushort; alpha : GL.Ushort); procedure Color3bv (v : GL.bytePtr); procedure Color3dv (v : GL.doublePtr); procedure Color (v : RGB_Color); procedure Color3fv (v : GL.floatPtr); procedure Color3iv (v : GL.intPointer); procedure Color3sv (v : GL.shortPtr); procedure Color3ubv (v : GL.ubytePtr); procedure Color3uiv (v : GL.uintPtr); procedure Color3usv (v : GL.ushortPtr); procedure Color4bv (v : GL.bytePtr); procedure Color4dv (v : GL.doublePtr); procedure Color (v : RGBA_Color); procedure Color4fv (v : GL.floatPtr); procedure Color4iv (v : GL.intPointer); procedure Color4sv (v : GL.shortPtr); procedure Color4ubv (v : GL.ubytePtr); procedure Color4uiv (v : GL.uintPtr); procedure Color4usv (v : GL.ushortPtr); -- Texture coordinates procedure TexCoord1d (s : GL.Double); procedure TexCoord1f (s : GL.C_Float); procedure TexCoord1i (s : GL.Int); procedure TexCoord1s (s : GL.Short); procedure TexCoord (s : GL.Double; t : GL.Double); procedure TexCoordf (s : GL.C_Float; t : GL.C_Float); procedure TexCoord2i (s : GL.Int; t : GL.Int); procedure TexCoord2s (s : GL.Short; t : GL.Short); procedure TexCoord3d (s : GL.Double; t : GL.Double; r : GL.Double); procedure TexCoord3f (s : GL.C_Float; t : GL.C_Float; r : GL.C_Float); procedure TexCoord3i (s : GL.Int; t : GL.Int; r : GL.Int); procedure TexCoord3s (s : GL.Short; t : GL.Short; r : GL.Short); procedure TexCoord4d (s : GL.Double; t : GL.Double; r : GL.Double; q : GL.Double); procedure TexCoord4f (s : GL.C_Float; t : GL.C_Float; r : GL.C_Float; q : GL.C_Float); procedure TexCoord4i (s : GL.Int; t : GL.Int; r : GL.Int; q : GL.Int); procedure TexCoord4s (s : GL.Short; t : GL.Short; r : GL.Short; q : GL.Short); procedure TexCoord1dv (v : GL.doublePtr); procedure TexCoord1fv (v : floatPtr); procedure TexCoord1iv (v : GL.intPointer); procedure TexCoord1sv (v : GL.shortPtr); procedure TexCoord2dv (v : GL.doublePtr); procedure TexCoord2fv (v : floatPtr); procedure TexCoord2iv (v : GL.intPointer); procedure TexCoord2sv (v : GL.shortPtr); procedure TexCoord3dv (v : GL.doublePtr); procedure TexCoord3fv (v : floatPtr); procedure TexCoord3iv (v : GL.intPointer); procedure TexCoord3sv (v : GL.shortPtr); procedure TexCoord4dv (v : GL.doublePtr); procedure TexCoord4fv (v : floatPtr); procedure TexCoord4iv (v : GL.intPointer); procedure TexCoord4sv (v : GL.shortPtr); -- Pixel op raster position procedure RasterPos2d (x : GL.Double; y : GL.Double); procedure RasterPos2f (x : GL.C_Float; y : GL.C_Float); procedure RasterPos (x, y : GL.Int); procedure RasterPos2s (x : GL.Short; y : GL.Short); procedure RasterPos3d (x : GL.Double; y : GL.Double; z : GL.Double); procedure RasterPos3f (x : GL.C_Float; y : GL.C_Float; z : GL.C_Float); procedure RasterPos3i (x : GL.Int; y : GL.Int; z : GL.Int); procedure RasterPos3s (x : GL.Short; y : GL.Short; z : GL.Short); procedure RasterPos4d (x : GL.Double; y : GL.Double; z : GL.Double; w : GL.Double); procedure RasterPos4f (x : GL.C_Float; y : GL.C_Float; z : GL.C_Float; w : GL.C_Float); procedure RasterPos4i (x : GL.Int; y : GL.Int; z : GL.Int; w : GL.Int); procedure RasterPos4s (x : GL.Short; y : GL.Short; z : GL.Short; w : GL.Short); procedure RasterPos2dv (v : GL.doublePtr); procedure RasterPos2fv (v : floatPtr); procedure RasterPos2iv (v : GL.intPointer); procedure RasterPos2sv (v : GL.shortPtr); procedure RasterPos3dv (v : GL.doublePtr); procedure RasterPos3fv (v : floatPtr); procedure RasterPos3iv (v : GL.intPointer); procedure RasterPos3sv (v : GL.shortPtr); procedure RasterPos4dv (v : GL.doublePtr); procedure RasterPos4fv (v : floatPtr); procedure RasterPos4iv (v : GL.intPointer); procedure RasterPos4sv (v : GL.shortPtr); -- Rectangles procedure Rectd (x1 : GL.Double; y1 : GL.Double; x2 : GL.Double; y2 : GL.Double); procedure Rectf (x1 : GL.C_Float; y1 : GL.C_Float; x2 : GL.C_Float; y2 : GL.C_Float); procedure Recti (x1 : GL.Int; y1 : GL.Int; x2 : GL.Int; y2 : GL.Int); procedure Rects (x1 : GL.Short; y1 : GL.Short; x2 : GL.Short; y2 : GL.Short); procedure Rectdv (v1 : GL.doublePtr; v2 : GL.doublePtr); procedure Rectfv (v1 : floatPtr; v2 : floatPtr); procedure Rectiv (v1 : GL.intPointer; v2 : GL.intPointer); procedure Rectsv (v1 : GL.shortPtr; v2 : GL.shortPtr); -- Bitmap procedure Bitmap (width : GL.Sizei; height : GL.Sizei; xorig : GL.C_Float; yorig : GL.C_Float; xmove : GL.C_Float; ymove : GL.C_Float; bitmap : ubytePtr); -- Stenciling procedure StencilMask (mask : GL.Uint); procedure ClearStencil (s : GL.Int); -- Selections and name stack procedure SelectBuffer (size : GL.Sizei; buffer : GL.uintPtr); procedure InitNames; procedure LoadName (name : GL.Uint); procedure PushName (name : GL.Uint); procedure PopName; -- Mesa - specific routines procedure WindowPos2iMESA (x : GL.Int; y : GL.Int); procedure WindowPos2sMESA (x : GL.Short; y : GL.Short); procedure WindowPos2fMESA (x : GL.C_Float; y : GL.C_Float); procedure WindowPos2dMESA (x : GL.Double; y : GL.Double); procedure WindowPos2ivMESA (p : GL.intPointer); procedure WindowPos2svMESA (p : GL.shortPtr); procedure WindowPos2fvMESA (p : floatPtr); procedure WindowPos2dvMESA (p : GL.doublePtr); procedure WindowPos3iMESA (x : GL.Int; y : GL.Int; z : GL.Int); procedure WindowPos3sMESA (x : GL.Short; y : GL.Short; z : GL.Short); procedure WindowPos3fMESA (x : GL.C_Float; y : GL.C_Float; z : GL.C_Float); procedure WindowPos3dMESA (x : GL.Double; y : GL.Double; z : GL.Double); procedure WindowPos3ivMESA (p : GL.intPointer); procedure WindowPos3svMESA (p : GL.shortPtr); procedure WindowPos3fvMESA (p : floatPtr); procedure WindowPos3dvMESA (p : GL.doublePtr); procedure WindowPos4iMESA (x : GL.Int; y : GL.Int; z : GL.Int; w : GL.Int); procedure WindowPos4sMESA (x : GL.Short; y : GL.Short; z : GL.Short; w : GL.Short); procedure WindowPos4fMESA (x : GL.C_Float; y : GL.C_Float; z : GL.C_Float; w : GL.C_Float); procedure WindowPos4dMESA (x : GL.Double; y : GL.Double; z : GL.Double; w : GL.Double); procedure WindowPos4ivMESA (p : GL.intPointer); procedure WindowPos4svMESA (p : GL.shortPtr); procedure WindowPos4fvMESA (p : floatPtr); procedure WindowPos4dvMESA (p : GL.doublePtr); procedure ResizeBuffersMESA; -- vertex buffer objects (GL 1.5 extension) -- procedure Gen_Buffers (n : GL.Sizei; buffers : GL.uintPtr); procedure Delete_Buffers (n : GL.Sizei; buffers : GL.uintPtr); type VBO_Target is ( ARRAY_BUFFER, ELEMENT_ARRAY_BUFFER, PIXEL_PACK_BUFFER, PIXEL_UNPACK_BUFFER ); for VBO_Target use ( ARRAY_BUFFER => 16#8892#, ELEMENT_ARRAY_BUFFER => 16#8893#, PIXEL_PACK_BUFFER => 16#88EB#, PIXEL_UNPACK_BUFFER => 16#88EC# ); procedure BindBuffer (target : VBO_Target; buffer : GL.Uint); type VBO_Usage is ( STREAM_DRAW, STREAM_READ, STREAM_COPY, STATIC_DRAW, STATIC_READ, STATIC_COPY, DYNAMIC_DRAW, DYNAMIC_READ, DYNAMIC_COPY ); for VBO_Usage use ( STREAM_DRAW => 16#88E0#, STREAM_READ => 16#88E1#, STREAM_COPY => 16#88E2#, STATIC_DRAW => 16#88E4#, STATIC_READ => 16#88E5#, STATIC_COPY => 16#88E6#, DYNAMIC_DRAW => 16#88E8#, DYNAMIC_READ => 16#88E9#, DYNAMIC_COPY => 16#88EA# ); procedure Buffer_Data (target : GL.VBO_Target; size : GL.sizeiPtr; data : GL.pointer; usage : GL.VBO_Usage); procedure BufferSubData (target : GL.VBO_Target; offset : GL.intPtr; size : GL.sizeiPtr; data : GL.pointer); type Access_Policy is ( READ_ONLY, WRITE_ONLY, READ_WRITE ); for Access_Policy use ( READ_ONLY => 16#88B8#, WRITE_ONLY => 16#88B9#, READ_WRITE => 16#88BA# ); function MapBuffer (target : GL.VBO_Target; Policy : GL.Access_Policy) return GL.pointer; function UnmapBuffer (target : GL.VBO_Target) return GL_Boolean; type Buffer_Parameter is ( BUFFER_SIZE, BUFFER_USAGE, BUFFER_ACCESS, BUFFER_MAPPED ); for Buffer_Parameter use ( BUFFER_SIZE => 16#8764#, BUFFER_USAGE => 16#8765#, BUFFER_ACCESS => 16#88BB#, BUFFER_MAPPED => 16#88BC# ); procedure GetBufferParameter (target : GL.VBO_Target; value : Buffer_Parameter; data : intPointer); ------------------------------------------------------------------------------ private -- Workaround for GNAT 3.15p (OA 7.2.2 OK), when applying pragma Import to all -- functions named GetString: -- - > convention for "GetString" does not permit returning unconstrained array type function glGetString (name : StringEnm) return ubytePtr; function GetString (name : StringEnm) return ubytePtr renames glGetString; -- GdM : renames for getting rid of pointers and " .. .4f"- style suffixes -- The following wrappers are automatically generated by -- the GL_Overloader tool. To generate other wrappers easily, -- look at GL_Overloader.adb . -- Wrapper for color3d procedure color3d (red, green, blue : GL.Double); procedure Color (red, green, blue : GL.Double) renames color3d; -- Wrapper for color3f procedure color3f (red, green, blue : GL.C_Float); procedure Color_f (red, green, blue : GL.C_Float) renames color3f; -- Wrapper for color3i procedure color3i (red, green, blue : GL.Int); procedure Color (red, green, blue : GL.Int) renames color3i; -- Wrapper for color3s procedure color3s (red, green, blue : GL.Short); procedure Color_s (red, green, blue : GL.Short) renames color3s; -- Wrapper for color4d procedure color4d (red, green, blue, alpha : GL.Double); procedure Color (red, green, blue, alpha : GL.Double) renames color4d; -- Wrapper for color4f procedure color4f (red, green, blue, alpha : GL.C_Float); procedure Color_f (red, green, blue, alpha : GL.C_Float) renames color4f; -- Wrapper for color4i procedure color4i (red, green, blue, alpha : GL.Int); procedure Color (red, green, blue, alpha : GL.Int) renames color4i; -- Wrapper for color4s procedure color4s (red, green, blue, alpha : GL.Short); procedure Color_s (red, green, blue, alpha : GL.Short) renames color4s; -- Wrappers for Get procedure GetDoublev (pname : ParameterNameEnm; params : GL.doublePtr); procedure Get (pname : ParameterNameEnm; params : GL.doublePtr) renames GetDoublev; -- Wrappers for Light procedure Lightf (light_id : LightIDEnm; pname : LightParameterEnm; param : GL.C_Float); procedure Light (light_id : LightIDEnm; pname : LightParameterEnm; param : GL.C_Float) renames Lightf; procedure Lightfv (light_id : LightIDEnm; pname : LightParameterVEnm; params : floatPtr); -- Wrappers for Material procedure Materialf (face : FaceEnm; pname : MaterialParameterEnm; param : GL.C_Float); procedure Material (face : FaceEnm; pname : MaterialParameterEnm; param : GL.C_Float) renames Materialf; procedure Materialfv (face : FaceEnm; pname : MaterialParameterVEnm; params : floatPtr); -- Wrapper for Normal3d procedure Normal3d (x, y, z : GL.Double); procedure Normal (x, y, z : GL.Double) renames Normal3d; -- Wrapper for Normal3f procedure Normal3f (x, y, z : GL.C_Float); procedure Normal_f (x, y, z : GL.C_Float) renames Normal3f; -- Wrapper for Normal3i procedure Normal3i (x, y, z : GL.Int); procedure Normal (x, y, z : GL.Int) renames Normal3i; -- Wrapper for Normal3b procedure Normal3b (x, y, z : GL.Byte); procedure Normal_b (x, y, z : GL.Byte) renames Normal3b; -- Wrapper for Normal3s procedure Normal3s (x, y, z : GL.Short); procedure Normal_s (x, y, z : GL.Short) renames Normal3s; procedure PixelStorei (pname : PixelStorageEnm; param : GL.Int); procedure PixelStore (pname : PixelStorageEnm; param : GL.Int) renames PixelStorei; procedure RasterPos2i (x : GL.Int; y : GL.Int); procedure RasterPos (x, y : GL.Int) renames RasterPos2i; procedure Rotated (angle : GL.Double; x : GL.Double; y : GL.Double; z : GL.Double); procedure Rotate (angle : GL.Double; x : GL.Double; y : GL.Double; z : GL.Double) renames Rotated; procedure Rotatef (angle : GL.C_Float; x : GL.C_Float; y : GL.C_Float; z : GL.C_Float); procedure Rotate_f (angle : GL.C_Float; x : GL.C_Float; y : GL.C_Float; z : GL.C_Float) renames Rotatef; -- Wrapper for scaled procedure scaled (x, y, z : GL.Double); procedure Scale (x, y, z : GL.Double) renames scaled; -- Wrapper for scalef procedure scalef (x, y, z : GL.C_Float); procedure Scale_f (x, y, z : GL.C_Float) renames scalef; procedure TexCoord2d (s : GL.Double; t : GL.Double); procedure TexCoord (s : GL.Double; t : GL.Double) renames TexCoord2d; procedure TexCoord2f (s : GL.C_Float; t : GL.C_Float); procedure TexCoordf (s : GL.C_Float; t : GL.C_Float) renames TexCoord2f; procedure TexEnvi (target : TexEnvEnm; pname : TexEnvParameterEnm; param : GL.Int); procedure TexEnv (target : TexEnvEnm; pname : TexEnvParameterEnm; param : GL.Int) renames TexEnvi; procedure TexParameteri (target : TargetTexEnm; pname : TexParamEnm; param : GL.Int); procedure TexParameter (target : TargetTexEnm; pname : TexParamEnm; param : GL.Int) renames TexParameteri; -- Wrapper for translated procedure translated (x, y, z : GL.Double); procedure Translate (x, y, z : GL.Double) renames translated; -- Wrapper for translatef procedure translatef (x, y, z : GL.C_Float); procedure Translate_f (x, y, z : GL.C_Float) renames translatef; -- Wrapper for vertex2d procedure vertex2d (x, y : GL.Double); procedure Vertex (x, y : GL.Double) renames vertex2d; -- Wrapper for vertex2f procedure vertex2f (x, y : GL.C_Float); procedure Vertex_f (x, y : GL.C_Float) renames vertex2f; -- Wrapper for vertex2i procedure vertex2i (x, y : GL.Int); procedure Vertex (x, y : GL.Int) renames vertex2i; -- Wrapper for vertex2s procedure vertex2s (x, y : GL.Short); procedure Vertex_s (x, y : GL.Short) renames vertex2s; -- Wrapper for vertex3d procedure vertex3d (x, y, z : GL.Double); procedure Vertex (x, y, z : GL.Double) renames vertex3d; -- Wrapper for vertex3f procedure vertex3f (x, y, z : GL.C_Float); procedure Vertex_f (x, y, z : GL.C_Float) renames vertex3f; -- Wrapper for vertex3i procedure vertex3i (x, y, z : GL.Int); procedure Vertex (x, y, z : GL.Int) renames vertex3i; -- Wrapper for vertex3s procedure vertex3s (x, y, z : GL.Short); procedure Vertex_s (x, y, z : GL.Short) renames vertex3s; -- Wrapper for vertex4d procedure vertex4d (x, y, z, w : GL.Double); procedure Vertex (x, y, z, w : GL.Double) renames vertex4d; -- Wrapper for vertex4f procedure vertex4f (x, y, z, w : GL.C_Float); procedure Vertex_f (x, y, z, w : GL.C_Float) renames vertex4f; -- Wrapper for vertex4i procedure vertex4i (x, y, z, w : GL.Int); procedure Vertex (x, y, z, w : GL.Int) renames vertex4i; -- Wrapper for vertex4s procedure vertex4s (x, y, z, w : GL.Short); procedure Vertex_s (x, y, z, w : GL.Short) renames vertex4s; -- Some renames due to possible ambiguity with enumerated -- values (Accum, Clear, Viewport) that can be interpreted -- as a parameterless function, confusing then pragma Import -- on the Janus compiler and not GNAT and ObjectAda. -- GM/TM 9 - Sep - 2006 procedure glAccum (op : AccumEnm; value : GL.C_Float); procedure Accum (op : AccumEnm; value : GL.C_Float) renames glAccum; -- procedure glClear (mask : Bitfield); procedure Clear (mask : Bitfield) renames glClear; -- procedure glViewport (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei); procedure Viewport (x : GL.Int; y : GL.Int; width : GL.Sizei; height : GL.Sizei) renames glViewport; ----------------- -- Interfacing -- ----------------- pragma Import (Stdcall, ClearIndex, "glClearIndex"); pragma Import (Stdcall, ClearColor, "glClearColor"); pragma Import (Stdcall, glClear, "glClear"); pragma Import (Stdcall, IndexMask, "glIndexMask"); pragma Import (Stdcall, ColorMask, "glColorMask"); pragma Import (Stdcall, Alpha_Func, "glAlphaFunc"); pragma Import (Stdcall, BlendFunc, "glBlendFunc"); pragma Import (Stdcall, LogicOp, "glLogicOp"); pragma Import (Stdcall, CullFace, "glCullFace"); pragma Import (Stdcall, FrontFace, "glFrontFace"); pragma Import (Stdcall, PointSize, "glPointSize"); pragma Import (Stdcall, LineWidth, "glLineWidth"); pragma Import (Stdcall, LineStipple, "glLineStipple"); pragma Import (Stdcall, PolygonMode, "glPolygonMode"); pragma Import (Stdcall, PolygonOffset, "glPolygonOffset"); pragma Import (Stdcall, PolygonStipple, "glPolygonStipple"); pragma Import (Stdcall, GetPolygonStipple, "glGetPolygonStipple"); pragma Import (Stdcall, EdgeFlag, "glEdgeFlag"); pragma Import (Stdcall, EdgeFlagv, "glEdgeFlagv"); pragma Import (Stdcall, Scissor, "glScissor"); pragma Import (Stdcall, ClipPlane, "glClipPlane"); pragma Import (Stdcall, GetClipPlane, "glGetClipPlane"); pragma Import (Stdcall, DrawBuffer, "glDrawBuffer"); pragma Import (Stdcall, ReadBuffer, "glReadBuffer"); pragma Import (Stdcall, Enable, "glEnable"); pragma Import (Stdcall, Disable, "glDisable"); pragma Import (Stdcall, IsEnabled, "glIsEnabled"); pragma Import (Stdcall, Enable_Client_State, "glEnableClientState"); pragma Import (Stdcall, Disable_Client_State, "glDisableClientState"); pragma Import (Stdcall, GetBooleanv, "glGetBooleanv"); pragma Import (Stdcall, GetDoublev, "glGetDoublev"); pragma Import (Stdcall, GetFloatv, "glGetFloatv"); pragma Import (Stdcall, GetIntegerv, "glGetIntegerv"); pragma Import (Stdcall, PushAttrib, "glPushAttrib"); pragma Import (Stdcall, PopAttrib, "glPopAttrib"); pragma Import (Stdcall, PushClientAttrib, "glPushClientAttrib"); pragma Import (Stdcall, PopClientAttrib, "glPopClientAttrib"); pragma Import (Stdcall, RenderMode, "glRenderMode"); pragma Import (Stdcall, Get_Error, "glGetError"); pragma Import (Stdcall, glGetString, "glGetString"); pragma Import (Stdcall, Finish, "glFinish"); pragma Import (Stdcall, Flush, "glFlush"); pragma Import (Stdcall, Hint, "glHint"); pragma Import (Stdcall, ClearDepth, "glClearDepth"); pragma Import (Stdcall, DepthFunc, "glDepthFunc"); pragma Import (Stdcall, Depth_Mask, "glDepthMask"); pragma Import (Stdcall, DepthRange, "glDepthRange"); pragma Import (Stdcall, ClearAccum, "glClearAccum"); pragma Import (Stdcall, glAccum, "glAccum"); pragma Import (Stdcall, MatrixMode, "glMatrixMode"); pragma Import (Stdcall, Ortho, "glOrtho"); pragma Import (Stdcall, Frustum, "glFrustum"); pragma Import (Stdcall, glViewport, "glViewport"); pragma Import (Stdcall, PushMatrix, "glPushMatrix"); pragma Import (Stdcall, PopMatrix, "glPopMatrix"); pragma Import (Stdcall, LoadIdentity, "glLoadIdentity"); pragma Import (Stdcall, LoadMatrixd, "glLoadMatrixd"); pragma Import (Stdcall, LoadMatrixf, "glLoadMatrixf"); pragma Import (Stdcall, MultMatrixd, "glMultMatrixd"); pragma Import (Stdcall, MultMatrixf, "glMultMatrixf"); pragma Import (Stdcall, Rotated, "glRotated"); pragma Import (Stdcall, Rotatef, "glRotatef"); pragma Import (Stdcall, scaled, "glScaled"); pragma Import (Stdcall, scalef, "glScalef"); pragma Import (Stdcall, translated, "glTranslated"); pragma Import (Stdcall, translatef, "glTranslatef"); pragma Import (Stdcall, IsList, "glIsList"); pragma Import (Stdcall, DeleteLists, "glDeleteLists"); pragma Import (Stdcall, GenLists, "glGenLists"); pragma Import (Stdcall, NewList, "glNewList"); pragma Import (Stdcall, EndList, "glEndList"); pragma Import (Stdcall, CallList, "glCallList"); pragma Import (Stdcall, CallLists, "glCallLists"); pragma Import (Stdcall, ListBase, "glListBase"); pragma Import (Stdcall, GL_Begin, "glBegin"); pragma Import (Stdcall, GL_End, "glEnd"); pragma Import (Stdcall, vertex2d, "glVertex2d"); pragma Import (Stdcall, vertex2f, "glVertex2f"); pragma Import (Stdcall, vertex2i, "glVertex2i"); pragma Import (Stdcall, vertex2s, "glVertex2s"); pragma Import (Stdcall, vertex3d, "glVertex3d"); pragma Import (Stdcall, vertex3f, "glVertex3f"); pragma Import (Stdcall, vertex3i, "glVertex3i"); pragma Import (Stdcall, vertex3s, "glVertex3s"); pragma Import (Stdcall, vertex4d, "glVertex4d"); pragma Import (Stdcall, vertex4f, "glVertex4f"); pragma Import (Stdcall, vertex4i, "glVertex4i"); pragma Import (Stdcall, vertex4s, "glVertex4s"); pragma Import (Stdcall, Vertex2dv, "glVertex2dv"); pragma Import (Stdcall, Vertex2fv, "glVertex2fv"); pragma Import (Stdcall, Vertex2iv, "glVertex2iv"); pragma Import (Stdcall, Vertex2sv, "glVertex2sv"); pragma Import (Stdcall, Vertex3dv, "glVertex3dv"); pragma Import (Stdcall, Vertex3fv, "glVertex3fv"); pragma Import (Stdcall, Vertex3iv, "glVertex3iv"); pragma Import (Stdcall, Vertex3sv, "glVertex3sv"); pragma Import (Stdcall, Vertex4dv, "glVertex4dv"); pragma Import (Stdcall, Vertex4fv, "glVertex4fv"); pragma Import (Stdcall, Vertex4iv, "glVertex4iv"); pragma Import (Stdcall, Vertex4sv, "glVertex4sv"); pragma Import (Stdcall, Normal3b, "glNormal3b"); pragma Import (Stdcall, Normal3d, "glNormal3d"); pragma Import (Stdcall, Normal3f, "glNormal3f"); pragma Import (Stdcall, Normal3i, "glNormal3i"); pragma Import (Stdcall, Normal3s, "glNormal3s"); pragma Import (Stdcall, Normal3bv, "glNormal3bv"); pragma Import (Stdcall, Normal3dv, "glNormal3dv"); pragma Import (Stdcall, Normal3fv, "glNormal3fv"); pragma Import (Stdcall, Normal3iv, "glNormal3iv"); pragma Import (Stdcall, Normal3sv, "glNormal3sv"); pragma Import (Stdcall, Indexd, "glIndexd"); pragma Import (Stdcall, Indexf, "glIndexf"); pragma Import (Stdcall, Indexi, "glIndexi"); pragma Import (Stdcall, Indexs, "glIndexs"); pragma Import (Stdcall, Indexub, "glIndexub"); pragma Import (Stdcall, Indexdv, "glIndexdv"); pragma Import (Stdcall, Indexfv, "glIndexfv"); pragma Import (Stdcall, Indexiv, "glIndexiv"); pragma Import (Stdcall, Indexsv, "glIndexsv"); pragma Import (Stdcall, Indexubv, "glIndexubv"); pragma Import (Stdcall, Color3b, "glColor3b"); pragma Import (Stdcall, color3d, "glColor3d"); pragma Import (Stdcall, color3f, "glColor3f"); pragma Import (Stdcall, color3i, "glColor3i"); pragma Import (Stdcall, color3s, "glColor3s"); pragma Import (Stdcall, Color3ub, "glColor3ub"); pragma Import (Stdcall, Color3ui, "glColor3ui"); pragma Import (Stdcall, Color3us, "glColor3us"); pragma Import (Stdcall, Color4b, "glColor4b"); pragma Import (Stdcall, color4d, "glColor4d"); pragma Import (Stdcall, color4f, "glColor4f"); pragma Import (Stdcall, color4i, "glColor4i"); pragma Import (Stdcall, color4s, "glColor4s"); pragma Import (Stdcall, Color4ub, "glColor4ub"); pragma Import (Stdcall, Color4ui, "glColor4ui"); pragma Import (Stdcall, Color4us, "glColor4us"); pragma Import (Stdcall, Color3bv, "glColor3bv"); pragma Import (Stdcall, Color3dv, "glColor3dv"); pragma Import (Stdcall, Color3fv, "glColor3fv"); pragma Import (Stdcall, Color3iv, "glColor3iv"); pragma Import (Stdcall, Color3sv, "glColor3sv"); pragma Import (Stdcall, Color3ubv, "glColor3ubv"); pragma Import (Stdcall, Color3uiv, "glColor3uiv"); pragma Import (Stdcall, Color3usv, "glColor3usv"); pragma Import (Stdcall, Color4bv, "glColor4bv"); pragma Import (Stdcall, Color4dv, "glColor4dv"); pragma Import (Stdcall, Color4fv, "glColor4fv"); pragma Import (Stdcall, Color4iv, "glColor4iv"); pragma Import (Stdcall, Color4sv, "glColor4sv"); pragma Import (Stdcall, Color4ubv, "glColor4ubv"); pragma Import (Stdcall, Color4uiv, "glColor4uiv"); pragma Import (Stdcall, Color4usv, "glColor4usv"); pragma Import (Stdcall, TexCoord1d, "glTexCoord1d"); pragma Import (Stdcall, TexCoord1f, "glTexCoord1f"); pragma Import (Stdcall, TexCoord1i, "glTexCoord1i"); pragma Import (Stdcall, TexCoord1s, "glTexCoord1s"); pragma Import (Stdcall, TexCoord2d, "glTexCoord2d"); pragma Import (Stdcall, TexCoord2f, "glTexCoord2f"); pragma Import (Stdcall, TexCoord2i, "glTexCoord2i"); pragma Import (Stdcall, TexCoord2s, "glTexCoord2s"); pragma Import (Stdcall, TexCoord3d, "glTexCoord3d"); pragma Import (Stdcall, TexCoord3f, "glTexCoord3f"); pragma Import (Stdcall, TexCoord3i, "glTexCoord3i"); pragma Import (Stdcall, TexCoord3s, "glTexCoord3s"); pragma Import (Stdcall, TexCoord4d, "glTexCoord4d"); pragma Import (Stdcall, TexCoord4f, "glTexCoord4f"); pragma Import (Stdcall, TexCoord4i, "glTexCoord4i"); pragma Import (Stdcall, TexCoord4s, "glTexCoord4s"); pragma Import (Stdcall, TexCoord1dv, "glTexCoord1dv"); pragma Import (Stdcall, TexCoord1fv, "glTexCoord1fv"); pragma Import (Stdcall, TexCoord1iv, "glTexCoord1iv"); pragma Import (Stdcall, TexCoord1sv, "glTexCoord1sv"); pragma Import (Stdcall, TexCoord2dv, "glTexCoord2dv"); pragma Import (Stdcall, TexCoord2fv, "glTexCoord2fv"); pragma Import (Stdcall, TexCoord2iv, "glTexCoord2iv"); pragma Import (Stdcall, TexCoord2sv, "glTexCoord2sv"); pragma Import (Stdcall, TexCoord3dv, "glTexCoord3dv"); pragma Import (Stdcall, TexCoord3fv, "glTexCoord3fv"); pragma Import (Stdcall, TexCoord3iv, "glTexCoord3iv"); pragma Import (Stdcall, TexCoord3sv, "glTexCoord3sv"); pragma Import (Stdcall, TexCoord4dv, "glTexCoord4dv"); pragma Import (Stdcall, TexCoord4fv, "glTexCoord4fv"); pragma Import (Stdcall, TexCoord4iv, "glTexCoord4iv"); pragma Import (Stdcall, TexCoord4sv, "glTexCoord4sv"); pragma Import (Stdcall, RasterPos2d, "glRasterPos2d"); pragma Import (Stdcall, RasterPos2f, "glRasterPos2f"); pragma Import (Stdcall, RasterPos2i, "glRasterPos2i"); pragma Import (Stdcall, RasterPos2s, "glRasterPos2s"); pragma Import (Stdcall, RasterPos3d, "glRasterPos3d"); pragma Import (Stdcall, RasterPos3f, "glRasterPos3f"); pragma Import (Stdcall, RasterPos3i, "glRasterPos3i"); pragma Import (Stdcall, RasterPos3s, "glRasterPos3s"); pragma Import (Stdcall, RasterPos4d, "glRasterPos4d"); pragma Import (Stdcall, RasterPos4f, "glRasterPos4f"); pragma Import (Stdcall, RasterPos4i, "glRasterPos4i"); pragma Import (Stdcall, RasterPos4s, "glRasterPos4s"); pragma Import (Stdcall, RasterPos2dv, "glRasterPos2dv"); pragma Import (Stdcall, RasterPos2fv, "glRasterPos2fv"); pragma Import (Stdcall, RasterPos2iv, "glRasterPos2iv"); pragma Import (Stdcall, RasterPos2sv, "glRasterPos2sv"); pragma Import (Stdcall, RasterPos3dv, "glRasterPos3dv"); pragma Import (Stdcall, RasterPos3fv, "glRasterPos3fv"); pragma Import (Stdcall, RasterPos3iv, "glRasterPos3iv"); pragma Import (Stdcall, RasterPos3sv, "glRasterPos3sv"); pragma Import (Stdcall, RasterPos4dv, "glRasterPos4dv"); pragma Import (Stdcall, RasterPos4fv, "glRasterPos4fv"); pragma Import (Stdcall, RasterPos4iv, "glRasterPos4iv"); pragma Import (Stdcall, RasterPos4sv, "glRasterPos4sv"); pragma Import (Stdcall, Rectd, "glRectd"); pragma Import (Stdcall, Rectf, "glRectf"); pragma Import (Stdcall, Recti, "glRecti"); pragma Import (Stdcall, Rects, "glRects"); pragma Import (Stdcall, Rectdv, "glRectdv"); pragma Import (Stdcall, Rectfv, "glRectfv"); pragma Import (Stdcall, Rectiv, "glRectiv"); pragma Import (Stdcall, Rectsv, "glRectsv"); pragma Import (Stdcall, VertexPointer, "glVertexPointer"); pragma Import (Stdcall, Normal_Pointer, "glNormalPointer"); pragma Import (Stdcall, ColorPointer, "glColorPointer"); pragma Import (Stdcall, IndexPointer, "glIndexPointer"); pragma Import (Stdcall, Tex_Coord_Pointer, "glTexCoordPointer"); pragma Import (Stdcall, EdgeFlagPointer, "glEdgeFlagPointer"); pragma Import (Stdcall, GetPointerv, "glGetPointerv"); pragma Import (Stdcall, ArrayElement, "glArrayElement"); pragma Import (Stdcall, DrawArrays, "glDrawArrays"); pragma Import (Stdcall, DrawElements, "glDrawElements"); pragma Import (Stdcall, interleavedArrays, "GL.interleavedArrays"); pragma Import (Stdcall, ShadeModel, "glShadeModel"); pragma Import (Stdcall, Lightf, "glLightf"); pragma Import (Stdcall, Lighti, "glLighti"); pragma Import (Stdcall, Lightfv, "glLightfv"); pragma Import (Stdcall, Lightiv, "glLightiv"); pragma Import (Stdcall, GetLightfv, "glGetLightfv"); pragma Import (Stdcall, GetLightiv, "glGetLightiv"); pragma Import (Stdcall, LightModelf, "glLightModelf"); pragma Import (Stdcall, LightModeli, "glLightModeli"); pragma Import (Stdcall, LightModelfv, "glLightModelfv"); pragma Import (Stdcall, LightModeliv, "glLightModeliv"); pragma Import (Stdcall, Materialf, "glMaterialf"); pragma Import (Stdcall, Materiali, "glMateriali"); pragma Import (Stdcall, Materialfv, "glMaterialfv"); pragma Import (Stdcall, Materialiv, "glMaterialiv"); pragma Import (Stdcall, GetMaterialfv, "glGetMaterialfv"); pragma Import (Stdcall, GetMaterialiv, "glGetMaterialiv"); pragma Import (Stdcall, ColorMaterial, "glColorMaterial"); pragma Import (Stdcall, PixelZoom, "glPixelZoom"); pragma Import (Stdcall, PixelStoref, "glPixelStoref"); pragma Import (Stdcall, PixelStorei, "glPixelStorei"); pragma Import (Stdcall, PixelTransferf, "glPixelTransferf"); pragma Import (Stdcall, PixelTransferi, "glPixelTransferi"); pragma Import (Stdcall, PixelMapfv, "glPixelMapfv"); pragma Import (Stdcall, PixelMapuiv, "glPixelMapuiv"); pragma Import (Stdcall, PixelMapusv, "glPixelMapusv"); pragma Import (Stdcall, GetPixelMapfv, "glGetPixelMapfv"); pragma Import (Stdcall, GetPixelMapuiv, "glGetPixelMapuiv"); pragma Import (Stdcall, GetPixelMapusv, "glGetPixelMapusv"); pragma Import (Stdcall, Bitmap, "glBitmap"); pragma Import (Stdcall, ReadPixels, "glReadPixels"); pragma Import (Stdcall, DrawPixels, "glDrawPixels"); pragma Import (Stdcall, CopyPixels, "glCopyPixels"); pragma Import (Stdcall, StencilFunc, "glStencilFunc"); pragma Import (Stdcall, StencilMask, "glStencilMask"); pragma Import (Stdcall, StencilOp, "glStencilOp"); pragma Import (Stdcall, ClearStencil, "glClearStencil"); pragma Import (Stdcall, TexGend, "glTexGend"); pragma Import (Stdcall, TexGenf, "glTexGenf"); pragma Import (Stdcall, TexGeni, "glTexGeni"); pragma Import (Stdcall, TexGendv, "glTexGendv"); pragma Import (Stdcall, TexGenfv, "glTexGenfv"); pragma Import (Stdcall, TexGeniv, "glTexGeniv"); pragma Import (Stdcall, GetTexGendv, "glGetTexGendv"); pragma Import (Stdcall, GetTexGenfv, "glGetTexGenfv"); pragma Import (Stdcall, GetTexGeniv, "glGetTexGeniv"); pragma Import (Stdcall, TexEnvf, "glTexEnvf"); pragma Import (Stdcall, TexEnvi, "glTexEnvi"); pragma Import (Stdcall, TexEnvfv, "glTexEnvfv"); pragma Import (Stdcall, TexEnviv, "glTexEnviv"); pragma Import (Stdcall, GetTexEnvfv, "glGetTexEnvfv"); pragma Import (Stdcall, GetTexEnviv, "glGetTexEnviv"); pragma Import (Stdcall, TexParameterf, "glTexParameterf"); pragma Import (Stdcall, TexParameteri, "glTexParameteri"); pragma Import (Stdcall, TexParameterfv, "glTexParameterfv"); pragma Import (Stdcall, TexParameteriv, "glTexParameteriv"); pragma Import (Stdcall, GetTexParameterfv, "glGetTexParameterfv"); pragma Import (Stdcall, GetTexParameteriv, "glGetTexParameteriv"); pragma Import (Stdcall, GetTexLevelParameterfv, "glGetTexLevelParameterfv"); pragma Import (Stdcall, GetTexLevelParameteriv, "glGetTexLevelParameteriv"); pragma Import (Stdcall, TexImage1D, "glTexImage1D"); pragma Import (Stdcall, TexImage2D, "glTexImage2D"); pragma Import (Stdcall, GetTexImage, "glGetTexImage"); pragma Import (Stdcall, Gen_Textures, "glGenTextures"); pragma Import (Stdcall, Delete_Textures, "glDeleteTextures"); pragma Import (Stdcall, BindTexture, "glBindTexture"); pragma Import (Stdcall, PrioritizeTextures, "glPrioritizeTextures"); pragma Import (Stdcall, AreTexturesResident, "glAreTexturesResident"); pragma Import (Stdcall, IsTexture, "glIsTexture"); pragma Import (Stdcall, TexSubImage1D, "glTexSubImage1D"); pragma Import (Stdcall, TexSubImage2D, "glTexSubImage2D"); pragma Import (Stdcall, CopyTexImage1D, "glCopyTexImage1D"); pragma Import (Stdcall, CopyTexImage2D, "glCopyTexImage2D"); pragma Import (Stdcall, CopyTexSubImage1D, "glCopyTexSubImage1D"); pragma Import (Stdcall, CopyTexSubImage2D, "glCopyTexSubImage2D"); pragma Import (Stdcall, Map1d, "glMap1d"); pragma Import (Stdcall, Map1f, "glMap1f"); pragma Import (Stdcall, Map2d, "glMap2d"); pragma Import (Stdcall, Map2f, "glMap2f"); pragma Import (Stdcall, GetMapdv, "glGetMapdv"); pragma Import (Stdcall, GetMapfv, "glGetMapfv"); pragma Import (Stdcall, GetMapiv, "glGetMapiv"); pragma Import (Stdcall, EvalCoord1d, "glEvalCoord1d"); pragma Import (Stdcall, EvalCoord1f, "glEvalCoord1f"); pragma Import (Stdcall, EvalCoord1dv, "glEvalCoord1dv"); pragma Import (Stdcall, EvalCoord1fv, "glEvalCoord1fv"); pragma Import (Stdcall, EvalCoord2d, "glEvalCoord2d"); pragma Import (Stdcall, EvalCoord2f, "glEvalCoord2f"); pragma Import (Stdcall, EvalCoord2dv, "glEvalCoord2dv"); pragma Import (Stdcall, EvalCoord2fv, "glEvalCoord2fv"); pragma Import (Stdcall, MapGrid1d, "glMapGrid1d"); pragma Import (Stdcall, MapGrid1f, "glMapGrid1f"); pragma Import (Stdcall, MapGrid2d, "glMapGrid2d"); pragma Import (Stdcall, MapGrid2f, "glMapGrid2f"); pragma Import (Stdcall, EvalPoint1, "glEvalPoint1"); pragma Import (Stdcall, EvalPoint2, "glEvalPoint2"); pragma Import (Stdcall, EvalMesh1, "glEvalMesh1"); pragma Import (Stdcall, EvalMesh2, "glEvalMesh2"); pragma Import (Stdcall, Fogf, "glFogf"); pragma Import (Stdcall, Fogi, "glFogi"); pragma Import (Stdcall, Fogfv, "glFogfv"); pragma Import (Stdcall, Fogiv, "glFogiv"); pragma Import (Stdcall, FeedbackBuffer, "glFeedbackBuffer"); pragma Import (Stdcall, PassThrough, "glPassThrough"); pragma Import (Stdcall, SelectBuffer, "glSelectBuffer"); pragma Import (Stdcall, InitNames, "glInitNames"); pragma Import (Stdcall, LoadName, "glLoadName"); pragma Import (Stdcall, PushName, "glPushName"); pragma Import (Stdcall, PopName, "glPopName"); pragma Import (Stdcall, BlendEquationEXT, "glBlendEquationEXT"); pragma Import (Stdcall, BlendColorEXT, "glBlendColorEXT"); pragma Import (Stdcall, TexImage3DEXT, "glTexImage3DEXT"); pragma Import (Stdcall, TexSubImage3DEXT, "glTexSubImage3DEXT"); pragma Import (Stdcall, CopyTexSubImage3DEXT, "glCopyTexSubImage3DEXT"); pragma Import (Stdcall, ColorTableEXT, "glColorTableEXT"); pragma Import (Stdcall, ColorSubTableEXT, "glColorSubTableEXT"); pragma Import (Stdcall, GetColorTableEXT, "glGetColorTableEXT"); pragma Import (Stdcall, GetColorTableParameterfvEXT, "glGetColorTableParameterfvEXT"); pragma Import (Stdcall, GetColorTableParameterivEXT, "glGetColorTableParameterivEXT"); pragma Import (Stdcall, PointParameterfEXT, "glPointParameterfEXT"); pragma Import (Stdcall, PointParameterfvEXT, "glPointParameterfvEXT"); pragma Import (Stdcall, WindowPos2iMESA, "glWindowPos2iMESA"); pragma Import (Stdcall, WindowPos2sMESA, "glWindowPos2sMESA"); pragma Import (Stdcall, WindowPos2fMESA, "glWindowPos2fMESA"); pragma Import (Stdcall, WindowPos2dMESA, "glWindowPos2dMESA"); pragma Import (Stdcall, WindowPos2ivMESA, "glWindowPos2ivMESA"); pragma Import (Stdcall, WindowPos2svMESA, "glWindowPos2svMESA"); pragma Import (Stdcall, WindowPos2fvMESA, "glWindowPos2fvMESA"); pragma Import (Stdcall, WindowPos2dvMESA, "glWindowPos2dvMESA"); pragma Import (Stdcall, WindowPos3iMESA, "glWindowPos3iMESA"); pragma Import (Stdcall, WindowPos3sMESA, "glWindowPos3sMESA"); pragma Import (Stdcall, WindowPos3fMESA, "glWindowPos3fMESA"); pragma Import (Stdcall, WindowPos3dMESA, "glWindowPos3dMESA"); pragma Import (Stdcall, WindowPos3ivMESA, "glWindowPos3ivMESA"); pragma Import (Stdcall, WindowPos3svMESA, "glWindowPos3svMESA"); pragma Import (Stdcall, WindowPos3fvMESA, "glWindowPos3fvMESA"); pragma Import (Stdcall, WindowPos3dvMESA, "glWindowPos3dvMESA"); pragma Import (Stdcall, WindowPos4iMESA, "glWindowPos4iMESA"); pragma Import (Stdcall, WindowPos4sMESA, "glWindowPos4sMESA"); pragma Import (Stdcall, WindowPos4fMESA, "glWindowPos4fMESA"); pragma Import (Stdcall, WindowPos4dMESA, "glWindowPos4dMESA"); pragma Import (Stdcall, WindowPos4ivMESA, "glWindowPos4ivMESA"); pragma Import (Stdcall, WindowPos4svMESA, "glWindowPos4svMESA"); pragma Import (Stdcall, WindowPos4fvMESA, "glWindowPos4fvMESA"); pragma Import (Stdcall, WindowPos4dvMESA, "glWindowPos4dvMESA"); pragma Import (Stdcall, ResizeBuffersMESA, "glResizeBuffersMESA"); -- vertex buffer object imports (GL 1.5) -- pragma Convention (Stdcall, Gen_Buffers); pragma Convention (Stdcall, Delete_Buffers); pragma Convention (Stdcall, BindBuffer); pragma Convention (Stdcall, Buffer_Data); pragma Convention (Stdcall, BufferSubData); pragma Convention (Stdcall, MapBuffer); pragma Convention (Stdcall, UnmapBuffer); pragma Convention (Stdcall, GetBufferParameter); end GL;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S . T H I N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides a target dependent thin interface to the sockets -- layer for use by the GNAT.Sockets package (g-socket.ads). This package -- should not be directly with'ed by an applications program. -- This is the default version with GNAT.OS_Lib; use GNAT.OS_Lib; with GNAT.Task_Lock; with Interfaces.C; use Interfaces.C; package body GNAT.Sockets.Thin is Non_Blocking_Sockets : aliased Fd_Set; -- When this package is initialized with Process_Blocking_IO set -- to True, sockets are set in non-blocking mode to avoid blocking -- the whole process when a thread wants to perform a blocking IO -- operation. But the user can also set a socket in non-blocking -- mode by purpose. In order to make a difference between these -- two situations, we track the origin of non-blocking mode in -- Non_Blocking_Sockets. If S is in Non_Blocking_Sockets, it has -- been set in non-blocking mode by the user. Quantum : constant Duration := 0.2; -- When SOSC.Thread_Blocking_IO is False, we set sockets in -- non-blocking mode and we spend a period of time Quantum between -- two attempts on a blocking operation. -- Comments required for following functions ??? function Syscall_Accept (S : C.int; Addr : System.Address; Addrlen : not null access C.int) return C.int; pragma Import (C, Syscall_Accept, "accept"); function Syscall_Connect (S : C.int; Name : System.Address; Namelen : C.int) return C.int; pragma Import (C, Syscall_Connect, "connect"); function Syscall_Recv (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int) return System.CRTL.ssize_t; pragma Import (C, Syscall_Recv, "recv"); function Syscall_Recvfrom (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int; From : System.Address; Fromlen : not null access C.int) return System.CRTL.ssize_t; pragma Import (C, Syscall_Recvfrom, "recvfrom"); function Syscall_Recvmsg (S : C.int; Msg : System.Address; Flags : C.int) return System.CRTL.ssize_t; pragma Import (C, Syscall_Recvmsg, "recvmsg"); function Syscall_Sendmsg (S : C.int; Msg : System.Address; Flags : C.int) return System.CRTL.ssize_t; pragma Import (C, Syscall_Sendmsg, "sendmsg"); function Syscall_Sendto (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int; To : System.Address; Tolen : C.int) return System.CRTL.ssize_t; pragma Import (C, Syscall_Sendto, "sendto"); function Syscall_Socket (Domain : C.int; Typ : C.int; Protocol : C.int) return C.int; pragma Import (C, Syscall_Socket, "socket"); procedure Disable_SIGPIPE (S : C.int); pragma Import (C, Disable_SIGPIPE, "__gnat_disable_sigpipe"); procedure Disable_All_SIGPIPEs; pragma Import (C, Disable_All_SIGPIPEs, "__gnat_disable_all_sigpipes"); -- Sets the process to ignore all SIGPIPE signals on platforms that -- don't support Disable_SIGPIPE for particular streams. function Non_Blocking_Socket (S : C.int) return Boolean; procedure Set_Non_Blocking_Socket (S : C.int; V : Boolean); -------------- -- C_Accept -- -------------- function C_Accept (S : C.int; Addr : System.Address; Addrlen : not null access C.int) return C.int is R : C.int; Val : aliased C.int := 1; Discard : C.int; pragma Warnings (Off, Discard); begin loop R := Syscall_Accept (S, Addr, Addrlen); exit when SOSC.Thread_Blocking_IO or else R /= Failure or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; if not SOSC.Thread_Blocking_IO and then R /= Failure then -- A socket inherits the properties ot its server especially -- the FIONBIO flag. Do not use Socket_Ioctl as this subprogram -- tracks sockets set in non-blocking mode by user. Set_Non_Blocking_Socket (R, Non_Blocking_Socket (S)); Discard := C_Ioctl (R, SOSC.FIONBIO, Val'Access); end if; Disable_SIGPIPE (R); return R; end C_Accept; --------------- -- C_Connect -- --------------- function C_Connect (S : C.int; Name : System.Address; Namelen : C.int) return C.int is Res : C.int; begin Res := Syscall_Connect (S, Name, Namelen); if SOSC.Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= SOSC.EINPROGRESS then return Res; end if; declare WSet : aliased Fd_Set; Now : aliased Timeval; begin Reset_Socket_Set (WSet'Access); loop Insert_Socket_In_Set (WSet'Access, S); Now := Immediat; Res := C_Select (S + 1, No_Fd_Set_Access, WSet'Access, No_Fd_Set_Access, Now'Unchecked_Access); exit when Res > 0; if Res = Failure then return Res; end if; delay Quantum; end loop; end; Res := Syscall_Connect (S, Name, Namelen); if Res = Failure and then Errno = SOSC.EISCONN then return Thin_Common.Success; else return Res; end if; end C_Connect; ------------------ -- Socket_Ioctl -- ------------------ function Socket_Ioctl (S : C.int; Req : SOSC.IOCTL_Req_T; Arg : access C.int) return C.int is begin if not SOSC.Thread_Blocking_IO and then Req = SOSC.FIONBIO then if Arg.all /= 0 then Set_Non_Blocking_Socket (S, True); end if; end if; return C_Ioctl (S, Req, Arg); end Socket_Ioctl; ------------ -- C_Recv -- ------------ function C_Recv (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int) return C.int is Res : C.int; begin loop Res := C.int (Syscall_Recv (S, Msg, Len, Flags)); exit when SOSC.Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Recv; ---------------- -- C_Recvfrom -- ---------------- function C_Recvfrom (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int; From : System.Address; Fromlen : not null access C.int) return C.int is Res : C.int; begin loop Res := C.int (Syscall_Recvfrom (S, Msg, Len, Flags, From, Fromlen)); exit when SOSC.Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Recvfrom; --------------- -- C_Recvmsg -- --------------- function C_Recvmsg (S : C.int; Msg : System.Address; Flags : C.int) return System.CRTL.ssize_t is Res : System.CRTL.ssize_t; begin loop Res := Syscall_Recvmsg (S, Msg, Flags); exit when SOSC.Thread_Blocking_IO or else Res /= System.CRTL.ssize_t (Failure) or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Recvmsg; --------------- -- C_Sendmsg -- --------------- function C_Sendmsg (S : C.int; Msg : System.Address; Flags : C.int) return System.CRTL.ssize_t is Res : System.CRTL.ssize_t; begin loop Res := Syscall_Sendmsg (S, Msg, Flags); exit when SOSC.Thread_Blocking_IO or else Res /= System.CRTL.ssize_t (Failure) or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Sendmsg; -------------- -- C_Sendto -- -------------- function C_Sendto (S : C.int; Msg : System.Address; Len : C.size_t; Flags : C.int; To : System.Address; Tolen : C.int) return C.int is Res : C.int; begin loop Res := C.int (Syscall_Sendto (S, Msg, Len, Flags, To, Tolen)); exit when SOSC.Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= SOSC.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Sendto; -------------- -- C_Socket -- -------------- function C_Socket (Domain : C.int; Typ : C.int; Protocol : C.int) return C.int is R : C.int; Val : aliased C.int := 1; Discard : C.int; begin R := Syscall_Socket (Domain, Typ, Protocol); if not SOSC.Thread_Blocking_IO and then R /= Failure then -- Do not use Socket_Ioctl as this subprogram tracks sockets set -- in non-blocking mode by user. Discard := C_Ioctl (R, SOSC.FIONBIO, Val'Access); Set_Non_Blocking_Socket (R, False); end if; Disable_SIGPIPE (R); return R; end C_Socket; -------------- -- Finalize -- -------------- procedure Finalize is begin null; end Finalize; ------------------------- -- Host_Error_Messages -- ------------------------- package body Host_Error_Messages is separate; ---------------- -- Initialize -- ---------------- procedure Initialize is begin Disable_All_SIGPIPEs; Reset_Socket_Set (Non_Blocking_Sockets'Access); end Initialize; ------------------------- -- Non_Blocking_Socket -- ------------------------- function Non_Blocking_Socket (S : C.int) return Boolean is R : Boolean; begin Task_Lock.Lock; R := (Is_Socket_In_Set (Non_Blocking_Sockets'Access, S) /= 0); Task_Lock.Unlock; return R; end Non_Blocking_Socket; ----------------------------- -- Set_Non_Blocking_Socket -- ----------------------------- procedure Set_Non_Blocking_Socket (S : C.int; V : Boolean) is begin Task_Lock.Lock; if V then Insert_Socket_In_Set (Non_Blocking_Sockets'Access, S); else Remove_Socket_From_Set (Non_Blocking_Sockets'Access, S); end if; Task_Lock.Unlock; end Set_Non_Blocking_Socket; -------------------- -- Signalling_Fds -- -------------------- package body Signalling_Fds is -- In this default implementation, we use a C version of these -- subprograms provided by socket.c. function C_Create (Fds : not null access Fd_Pair) return C.int; function C_Read (Rsig : C.int) return C.int; function C_Write (Wsig : C.int) return C.int; procedure C_Close (Sig : C.int); pragma Import (C, C_Create, "__gnat_create_signalling_fds"); pragma Import (C, C_Read, "__gnat_read_signalling_fd"); pragma Import (C, C_Write, "__gnat_write_signalling_fd"); pragma Import (C, C_Close, "__gnat_close_signalling_fd"); function Create (Fds : not null access Fd_Pair) return C.int renames C_Create; function Read (Rsig : C.int) return C.int renames C_Read; function Write (Wsig : C.int) return C.int renames C_Write; procedure Close (Sig : C.int) renames C_Close; end Signalling_Fds; -------------------------- -- Socket_Error_Message -- -------------------------- function Socket_Error_Message (Errno : Integer) return String is separate; end GNAT.Sockets.Thin;
-- This package has been generated automatically by GNATtest. -- Do not edit any part of it, see GNATtest documentation for more details. -- begin read only with Gnattest_Generated; package Game.Test_Data.Tests.AttributesData_Container.Test_Data.Tests is type Test is new GNATtest_Generated.GNATtest_Standard.Game.Test_Data.Tests .AttributesData_Container .Test_Data .New_Test with null record; end Game.Test_Data.Tests.AttributesData_Container.Test_Data.Tests; -- end read only
pragma Ada_2012; pragma Style_Checks (Off); pragma Warnings ("U"); with Interfaces.C; use Interfaces.C; with sys_ustdint_h; with arm_math_types_h; package arm_common_tables_h is -- unsupported macro: twiddleCoef twiddleCoef_4096 -- unsupported macro: ARMBITREVINDEXTABLEF64_16_TABLE_LENGTH ((uint16_t)12) -- unsupported macro: ARMBITREVINDEXTABLEF64_32_TABLE_LENGTH ((uint16_t)24) -- unsupported macro: ARMBITREVINDEXTABLEF64_64_TABLE_LENGTH ((uint16_t)56) -- unsupported macro: ARMBITREVINDEXTABLEF64_128_TABLE_LENGTH ((uint16_t)112) -- unsupported macro: ARMBITREVINDEXTABLEF64_256_TABLE_LENGTH ((uint16_t)240) -- unsupported macro: ARMBITREVINDEXTABLEF64_512_TABLE_LENGTH ((uint16_t)480) -- unsupported macro: ARMBITREVINDEXTABLEF64_1024_TABLE_LENGTH ((uint16_t)992) -- unsupported macro: ARMBITREVINDEXTABLEF64_2048_TABLE_LENGTH ((uint16_t)1984) -- unsupported macro: ARMBITREVINDEXTABLEF64_4096_TABLE_LENGTH ((uint16_t)4032) -- unsupported macro: ARMBITREVINDEXTABLE_16_TABLE_LENGTH ((uint16_t)20) -- unsupported macro: ARMBITREVINDEXTABLE_32_TABLE_LENGTH ((uint16_t)48) -- unsupported macro: ARMBITREVINDEXTABLE_64_TABLE_LENGTH ((uint16_t)56) -- unsupported macro: ARMBITREVINDEXTABLE_128_TABLE_LENGTH ((uint16_t)208) -- unsupported macro: ARMBITREVINDEXTABLE_256_TABLE_LENGTH ((uint16_t)440) -- unsupported macro: ARMBITREVINDEXTABLE_512_TABLE_LENGTH ((uint16_t)448) -- unsupported macro: ARMBITREVINDEXTABLE_1024_TABLE_LENGTH ((uint16_t)1800) -- unsupported macro: ARMBITREVINDEXTABLE_2048_TABLE_LENGTH ((uint16_t)3808) -- unsupported macro: ARMBITREVINDEXTABLE_4096_TABLE_LENGTH ((uint16_t)4032) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_16_TABLE_LENGTH ((uint16_t)12) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_32_TABLE_LENGTH ((uint16_t)24) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_64_TABLE_LENGTH ((uint16_t)56) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_128_TABLE_LENGTH ((uint16_t)112) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_256_TABLE_LENGTH ((uint16_t)240) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_512_TABLE_LENGTH ((uint16_t)480) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH ((uint16_t)992) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH ((uint16_t)1984) -- unsupported macro: ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH ((uint16_t)4032) armBitRevTable : aliased array (0 .. 1023) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:43 with Import => True, Convention => C, External_Name => "armBitRevTable"; twiddleCoefF64_16 : aliased array (0 .. 31) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:47 with Import => True, Convention => C, External_Name => "twiddleCoefF64_16"; twiddleCoefF64_32 : aliased array (0 .. 63) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:51 with Import => True, Convention => C, External_Name => "twiddleCoefF64_32"; twiddleCoefF64_64 : aliased array (0 .. 127) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:55 with Import => True, Convention => C, External_Name => "twiddleCoefF64_64"; twiddleCoefF64_128 : aliased array (0 .. 255) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:59 with Import => True, Convention => C, External_Name => "twiddleCoefF64_128"; twiddleCoefF64_256 : aliased array (0 .. 511) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:63 with Import => True, Convention => C, External_Name => "twiddleCoefF64_256"; twiddleCoefF64_512 : aliased array (0 .. 1023) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:67 with Import => True, Convention => C, External_Name => "twiddleCoefF64_512"; twiddleCoefF64_1024 : aliased array (0 .. 2047) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:71 with Import => True, Convention => C, External_Name => "twiddleCoefF64_1024"; twiddleCoefF64_2048 : aliased array (0 .. 4095) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:75 with Import => True, Convention => C, External_Name => "twiddleCoefF64_2048"; twiddleCoefF64_4096 : aliased array (0 .. 8191) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:79 with Import => True, Convention => C, External_Name => "twiddleCoefF64_4096"; twiddleCoef_16 : aliased array (0 .. 31) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:83 with Import => True, Convention => C, External_Name => "twiddleCoef_16"; twiddleCoef_32 : aliased array (0 .. 63) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:87 with Import => True, Convention => C, External_Name => "twiddleCoef_32"; twiddleCoef_64 : aliased array (0 .. 127) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:91 with Import => True, Convention => C, External_Name => "twiddleCoef_64"; twiddleCoef_128 : aliased array (0 .. 255) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:95 with Import => True, Convention => C, External_Name => "twiddleCoef_128"; twiddleCoef_256 : aliased array (0 .. 511) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:99 with Import => True, Convention => C, External_Name => "twiddleCoef_256"; twiddleCoef_512 : aliased array (0 .. 1023) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:103 with Import => True, Convention => C, External_Name => "twiddleCoef_512"; twiddleCoef_1024 : aliased array (0 .. 2047) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:107 with Import => True, Convention => C, External_Name => "twiddleCoef_1024"; twiddleCoef_2048 : aliased array (0 .. 4095) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:111 with Import => True, Convention => C, External_Name => "twiddleCoef_2048"; twiddleCoef_4096 : aliased array (0 .. 8191) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:115 with Import => True, Convention => C, External_Name => "twiddleCoef_4096"; twiddleCoef_16_q31 : aliased array (0 .. 23) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:122 with Import => True, Convention => C, External_Name => "twiddleCoef_16_q31"; twiddleCoef_32_q31 : aliased array (0 .. 47) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:126 with Import => True, Convention => C, External_Name => "twiddleCoef_32_q31"; twiddleCoef_64_q31 : aliased array (0 .. 95) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:130 with Import => True, Convention => C, External_Name => "twiddleCoef_64_q31"; twiddleCoef_128_q31 : aliased array (0 .. 191) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:134 with Import => True, Convention => C, External_Name => "twiddleCoef_128_q31"; twiddleCoef_256_q31 : aliased array (0 .. 383) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:138 with Import => True, Convention => C, External_Name => "twiddleCoef_256_q31"; twiddleCoef_512_q31 : aliased array (0 .. 767) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:142 with Import => True, Convention => C, External_Name => "twiddleCoef_512_q31"; twiddleCoef_1024_q31 : aliased array (0 .. 1535) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:146 with Import => True, Convention => C, External_Name => "twiddleCoef_1024_q31"; twiddleCoef_2048_q31 : aliased array (0 .. 3071) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:150 with Import => True, Convention => C, External_Name => "twiddleCoef_2048_q31"; twiddleCoef_4096_q31 : aliased array (0 .. 6143) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:154 with Import => True, Convention => C, External_Name => "twiddleCoef_4096_q31"; twiddleCoef_16_q15 : aliased array (0 .. 23) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:158 with Import => True, Convention => C, External_Name => "twiddleCoef_16_q15"; twiddleCoef_32_q15 : aliased array (0 .. 47) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:162 with Import => True, Convention => C, External_Name => "twiddleCoef_32_q15"; twiddleCoef_64_q15 : aliased array (0 .. 95) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:166 with Import => True, Convention => C, External_Name => "twiddleCoef_64_q15"; twiddleCoef_128_q15 : aliased array (0 .. 191) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:170 with Import => True, Convention => C, External_Name => "twiddleCoef_128_q15"; twiddleCoef_256_q15 : aliased array (0 .. 383) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:174 with Import => True, Convention => C, External_Name => "twiddleCoef_256_q15"; twiddleCoef_512_q15 : aliased array (0 .. 767) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:178 with Import => True, Convention => C, External_Name => "twiddleCoef_512_q15"; twiddleCoef_1024_q15 : aliased array (0 .. 1535) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:182 with Import => True, Convention => C, External_Name => "twiddleCoef_1024_q15"; twiddleCoef_2048_q15 : aliased array (0 .. 3071) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:186 with Import => True, Convention => C, External_Name => "twiddleCoef_2048_q15"; twiddleCoef_4096_q15 : aliased array (0 .. 6143) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:190 with Import => True, Convention => C, External_Name => "twiddleCoef_4096_q15"; twiddleCoefF64_rfft_32 : aliased array (0 .. 31) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:195 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_32"; twiddleCoefF64_rfft_64 : aliased array (0 .. 63) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:199 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_64"; twiddleCoefF64_rfft_128 : aliased array (0 .. 127) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:203 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_128"; twiddleCoefF64_rfft_256 : aliased array (0 .. 255) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:207 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_256"; twiddleCoefF64_rfft_512 : aliased array (0 .. 511) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:211 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_512"; twiddleCoefF64_rfft_1024 : aliased array (0 .. 1023) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:215 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_1024"; twiddleCoefF64_rfft_2048 : aliased array (0 .. 2047) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:219 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_2048"; twiddleCoefF64_rfft_4096 : aliased array (0 .. 4095) of aliased sys_ustdint_h.uint64_t -- DSP/Include/arm_common_tables.h:223 with Import => True, Convention => C, External_Name => "twiddleCoefF64_rfft_4096"; twiddleCoef_rfft_32 : aliased array (0 .. 31) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:228 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_32"; twiddleCoef_rfft_64 : aliased array (0 .. 63) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:232 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_64"; twiddleCoef_rfft_128 : aliased array (0 .. 127) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:236 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_128"; twiddleCoef_rfft_256 : aliased array (0 .. 255) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:240 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_256"; twiddleCoef_rfft_512 : aliased array (0 .. 511) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:244 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_512"; twiddleCoef_rfft_1024 : aliased array (0 .. 1023) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:248 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_1024"; twiddleCoef_rfft_2048 : aliased array (0 .. 2047) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:252 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_2048"; twiddleCoef_rfft_4096 : aliased array (0 .. 4095) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:256 with Import => True, Convention => C, External_Name => "twiddleCoef_rfft_4096"; armBitRevIndexTableF64_16 : aliased array (0 .. 11) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:264 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_16"; armBitRevIndexTableF64_32 : aliased array (0 .. 23) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:269 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_32"; armBitRevIndexTableF64_64 : aliased array (0 .. 55) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:274 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_64"; armBitRevIndexTableF64_128 : aliased array (0 .. 111) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:279 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_128"; armBitRevIndexTableF64_256 : aliased array (0 .. 239) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:284 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_256"; armBitRevIndexTableF64_512 : aliased array (0 .. 479) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:289 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_512"; armBitRevIndexTableF64_1024 : aliased array (0 .. 991) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:294 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_1024"; armBitRevIndexTableF64_2048 : aliased array (0 .. 1983) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:299 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_2048"; armBitRevIndexTableF64_4096 : aliased array (0 .. 4031) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:304 with Import => True, Convention => C, External_Name => "armBitRevIndexTableF64_4096"; armBitRevIndexTable16 : aliased array (0 .. 19) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:310 with Import => True, Convention => C, External_Name => "armBitRevIndexTable16"; armBitRevIndexTable32 : aliased array (0 .. 47) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:315 with Import => True, Convention => C, External_Name => "armBitRevIndexTable32"; armBitRevIndexTable64 : aliased array (0 .. 55) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:320 with Import => True, Convention => C, External_Name => "armBitRevIndexTable64"; armBitRevIndexTable128 : aliased array (0 .. 207) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:325 with Import => True, Convention => C, External_Name => "armBitRevIndexTable128"; armBitRevIndexTable256 : aliased array (0 .. 439) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:330 with Import => True, Convention => C, External_Name => "armBitRevIndexTable256"; armBitRevIndexTable512 : aliased array (0 .. 447) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:335 with Import => True, Convention => C, External_Name => "armBitRevIndexTable512"; armBitRevIndexTable1024 : aliased array (0 .. 1799) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:340 with Import => True, Convention => C, External_Name => "armBitRevIndexTable1024"; armBitRevIndexTable2048 : aliased array (0 .. 3807) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:345 with Import => True, Convention => C, External_Name => "armBitRevIndexTable2048"; armBitRevIndexTable4096 : aliased array (0 .. 4031) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:350 with Import => True, Convention => C, External_Name => "armBitRevIndexTable4096"; armBitRevIndexTable_fixed_16 : aliased array (0 .. 11) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:358 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_16"; armBitRevIndexTable_fixed_32 : aliased array (0 .. 23) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:363 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_32"; armBitRevIndexTable_fixed_64 : aliased array (0 .. 55) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:368 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_64"; armBitRevIndexTable_fixed_128 : aliased array (0 .. 111) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:373 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_128"; armBitRevIndexTable_fixed_256 : aliased array (0 .. 239) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:378 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_256"; armBitRevIndexTable_fixed_512 : aliased array (0 .. 479) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:383 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_512"; armBitRevIndexTable_fixed_1024 : aliased array (0 .. 991) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:388 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_1024"; armBitRevIndexTable_fixed_2048 : aliased array (0 .. 1983) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:393 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_2048"; armBitRevIndexTable_fixed_4096 : aliased array (0 .. 4031) of aliased sys_ustdint_h.uint16_t -- DSP/Include/arm_common_tables.h:398 with Import => True, Convention => C, External_Name => "armBitRevIndexTable_fixed_4096"; realCoefA : aliased array (0 .. 8191) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:402 with Import => True, Convention => C, External_Name => "realCoefA"; realCoefB : aliased array (0 .. 8191) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:403 with Import => True, Convention => C, External_Name => "realCoefB"; realCoefAQ31 : aliased array (0 .. 8191) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:407 with Import => True, Convention => C, External_Name => "realCoefAQ31"; realCoefBQ31 : aliased array (0 .. 8191) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:408 with Import => True, Convention => C, External_Name => "realCoefBQ31"; realCoefAQ15 : aliased array (0 .. 8191) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:412 with Import => True, Convention => C, External_Name => "realCoefAQ15"; realCoefBQ15 : aliased array (0 .. 8191) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:413 with Import => True, Convention => C, External_Name => "realCoefBQ15"; Weights_128 : aliased array (0 .. 255) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:417 with Import => True, Convention => C, External_Name => "Weights_128"; cos_factors_128 : aliased array (0 .. 127) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:418 with Import => True, Convention => C, External_Name => "cos_factors_128"; Weights_512 : aliased array (0 .. 1023) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:422 with Import => True, Convention => C, External_Name => "Weights_512"; cos_factors_512 : aliased array (0 .. 511) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:423 with Import => True, Convention => C, External_Name => "cos_factors_512"; Weights_2048 : aliased array (0 .. 4095) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:427 with Import => True, Convention => C, External_Name => "Weights_2048"; cos_factors_2048 : aliased array (0 .. 2047) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:428 with Import => True, Convention => C, External_Name => "cos_factors_2048"; Weights_8192 : aliased array (0 .. 16383) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:432 with Import => True, Convention => C, External_Name => "Weights_8192"; cos_factors_8192 : aliased array (0 .. 8191) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:433 with Import => True, Convention => C, External_Name => "cos_factors_8192"; WeightsQ15_128 : aliased array (0 .. 255) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:437 with Import => True, Convention => C, External_Name => "WeightsQ15_128"; cos_factorsQ15_128 : aliased array (0 .. 127) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:438 with Import => True, Convention => C, External_Name => "cos_factorsQ15_128"; WeightsQ15_512 : aliased array (0 .. 1023) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:442 with Import => True, Convention => C, External_Name => "WeightsQ15_512"; cos_factorsQ15_512 : aliased array (0 .. 511) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:443 with Import => True, Convention => C, External_Name => "cos_factorsQ15_512"; WeightsQ15_2048 : aliased array (0 .. 4095) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:447 with Import => True, Convention => C, External_Name => "WeightsQ15_2048"; cos_factorsQ15_2048 : aliased array (0 .. 2047) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:448 with Import => True, Convention => C, External_Name => "cos_factorsQ15_2048"; WeightsQ15_8192 : aliased array (0 .. 16383) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:452 with Import => True, Convention => C, External_Name => "WeightsQ15_8192"; cos_factorsQ15_8192 : aliased array (0 .. 8191) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:453 with Import => True, Convention => C, External_Name => "cos_factorsQ15_8192"; WeightsQ31_128 : aliased array (0 .. 255) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:457 with Import => True, Convention => C, External_Name => "WeightsQ31_128"; cos_factorsQ31_128 : aliased array (0 .. 127) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:458 with Import => True, Convention => C, External_Name => "cos_factorsQ31_128"; WeightsQ31_512 : aliased array (0 .. 1023) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:462 with Import => True, Convention => C, External_Name => "WeightsQ31_512"; cos_factorsQ31_512 : aliased array (0 .. 511) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:463 with Import => True, Convention => C, External_Name => "cos_factorsQ31_512"; WeightsQ31_2048 : aliased array (0 .. 4095) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:467 with Import => True, Convention => C, External_Name => "WeightsQ31_2048"; cos_factorsQ31_2048 : aliased array (0 .. 2047) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:468 with Import => True, Convention => C, External_Name => "cos_factorsQ31_2048"; WeightsQ31_8192 : aliased array (0 .. 16383) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:472 with Import => True, Convention => C, External_Name => "WeightsQ31_8192"; cos_factorsQ31_8192 : aliased array (0 .. 8191) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:473 with Import => True, Convention => C, External_Name => "cos_factorsQ31_8192"; armRecipTableQ15 : aliased array (0 .. 63) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:481 with Import => True, Convention => C, External_Name => "armRecipTableQ15"; armRecipTableQ31 : aliased array (0 .. 63) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:485 with Import => True, Convention => C, External_Name => "armRecipTableQ31"; sinTable_f32 : aliased array (0 .. 512) of aliased arm_math_types_h.float32_t -- DSP/Include/arm_common_tables.h:490 with Import => True, Convention => C, External_Name => "sinTable_f32"; sinTable_q31 : aliased array (0 .. 512) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:494 with Import => True, Convention => C, External_Name => "sinTable_q31"; sinTable_q15 : aliased array (0 .. 512) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:498 with Import => True, Convention => C, External_Name => "sinTable_q15"; sqrt_initial_lut_q31 : aliased array (0 .. 31) of aliased arm_math_types_h.q31_t -- DSP/Include/arm_common_tables.h:510 with Import => True, Convention => C, External_Name => "sqrt_initial_lut_q31"; sqrt_initial_lut_q15 : aliased array (0 .. 15) of aliased arm_math_types_h.q15_t -- DSP/Include/arm_common_tables.h:514 with Import => True, Convention => C, External_Name => "sqrt_initial_lut_q15"; end arm_common_tables_h;
package body DDS.Request_Reply.treqtrepsimplereplier is -- /* $Id$ -- -- (c) Copyright, Real-Time Innovations, 2012-2016. -- All rights reserved. -- No duplications, whole or partial, manual or electronic, may be made -- without express written permission. Any such copies, or -- revisions thereof, must display this notice unaltered. -- This code contains trade secrets of Real-Time Innovations, Inc. -- -- modification history -- --------------------- -- 5.20,20aug14,acr Moved out function that previously was inside macro and -- duplicated a symbol when declaring more than -- one SimpleReplier for different types (REQREPLY-18) -- 1.0a,2mar12,jch Created. -- ============================================================================ */ -- -- #include "log/log_makeheader.h" -- -- /*#include <stdlib.h>*/ -- -- #ifndef log_common_h -- #include "log/log_common.h" -- #endif -- -- #ifndef connext_c_replier_h -- #include "connext_c/connext_c_replier.h" -- #endif -- -- #include "connext_c/connext_c_simple_replier.h" -- -- #ifndef connext_c_replier_impl_h -- #include "connext_c/connext_c_replier_impl.h" -- #endif -- -- #include "dds_c/dds_c_log_impl.h" -- -- #include "connext_c/connext_c_untyped_impl.h" -- -- /* TODO: add RTI_Connext_SimpleReplier type here -- * Type will contain TReqTRepReplier in it */ -- /* TODO: consider abstracting out common TypeSupport defines to common.gen file & include it */ -- -- #define DDS_CURRENT_SUBMODULE DDS_SUBMODULE_MASK_DATA -- -- #if defined(TReq) && defined(TRep) -- -- #define TReqTRep_SimpleName_c(TReq, TRep) concatenate(TReq, TRep) -- #define TReqTRep_SimpleName TReqTRep_SimpleName_c(TReq, TRep) -- -- #ifdef TSimpleReplier -- #define TReqTRepSimpleReplier_name_c(SimpleReplier_name) SimpleReplier_name -- #define TReqTRepSimpleReplier_name TReqTRepSimpleReplier_name_c(TSimpleReplier) -- #define TReqTRepSimpleReplier TReqTRepSimpleReplier_name_c(TSimpleReplier) -- #else -- #define TReqTRepSimpleReplier_name_c(TReqTRep_SimpleName) concatenate(TReqTRep_SimpleName, SimpleReplier) -- #define TReqTRepSimpleReplier_name TReqTRepSimpleReplier_name_c(TReqTRep_SimpleName) -- #define TReqTRepSimpleReplier TReqTRepSimpleReplier_name_c(TReqTRep_name) -- #endif -- -- #define TReqTypeSupport_c(TReq) concatenate(TReq, TypeSupport) -- #define TReqTypeSupport TReqTypeSupport_c(TReq) -- -- #define TRepTypeSupport_c(TRep) concatenate(TRep, TypeSupport) -- #define TRepTypeSupport TRepTypeSupport_c(TRep) -- -- #define TRepTypeSupport_copy_data_c(TRepTypeSupport) concatenate(TRepTypeSupport, _copy_data) -- #define TRepTypeSupport_copy_data TRepTypeSupport_copy_data_c(TRepTypeSupport) -- -- #define TReqTypeSupport_register_type_c(TReqTypeSupport) concatenate(TReqTypeSupport, _register_type) -- #define TReqTypeSupport_register_type TReqTypeSupport_register_type_c(TReqTypeSupport) -- -- #define TReqTypeSupport_get_type_name_c(TReqTypeSupport) concatenate(TReqTypeSupport, _get_type_name) -- #define TReqTypeSupport_get_type_name TReqTypeSupport_get_type_name_c(TReqTypeSupport) -- -- #define TRepTypeSupport_register_type_c(TRepTypeSupport) concatenate(TRepTypeSupport, _register_type) -- #define TRepTypeSupport_register_type TRepTypeSupport_register_type_c(TRepTypeSupport) -- -- #define TRepTypeSupport_get_type_name_c(TRepTypeSupport) concatenate(TRepTypeSupport, _get_type_name) -- #define TRepTypeSupport_get_type_name TRepTypeSupport_get_type_name_c(TRepTypeSupport) -- -- #define TReqTRepSimpleReplier_on_data_available_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _on_data_available) -- #define TReqTRepSimpleReplier_on_data_available TReqTRepSimpleReplier_on_data_available_c(TReqTRepSimpleReplier_name) -- -- #define TReqDataReader_c(TReq) concatenate(TReq, DataReader) -- #define TReqDataReader TReqDataReader_c(TReq) -- -- #define TRepDataWriter_c(TRep) concatenate(TRep, DataWriter) -- #define TRepDataWriter TRepDataWriter_c(TRep) -- -- #define TReqSeq_c(TReq) concatenate(TReq, Seq) -- #define TReqSeq TReqSeq_c(TReq) -- -- #define TReqDataReader_narrow_c(TReqDataReader) concatenate(TReqDataReader, _narrow) -- #define TReqDataReader_narrow TReqDataReader_narrow_c(TReqDataReader) -- -- #define TRepDataWriter_narrow_c(TRepDataWriter) concatenate(TRepDataWriter, _narrow) -- #define TRepDataWriter_narrow TRepDataWriter_narrow_c(TRepDataWriter) -- -- #define TReqDataReader_take_c(TReqDataReader) concatenate(TReqDataReader, _take) -- #define TReqDataReader_take TReqDataReader_take_c(TReqDataReader) -- -- #define TReqSeq_get_length_c(TReqSeq) concatenate(TReqSeq, _get_length) -- #define TReqSeq_get_length TReqSeq_get_length_c(TReqSeq) -- -- #define TReqSeq_get_reference_c(TReqSeq) concatenate(TReqSeq, _get_reference) -- #define TReqSeq_get_reference TReqSeq_get_reference_c(TReqSeq) -- -- #define TRepDataWriter_write_w_params_c(TRepDataWriter) concatenate(TRepDataWriter, _write_w_params) -- #define TRepDataWriter_write_w_params TRepDataWriter_write_w_params_c(TRepDataWriter) -- -- #define TReqDataReader_return_loan_c(TReqDataReader) concatenate(TReqDataReader, _return_loan) -- #define TReqDataReader_return_loan TReqDataReader_return_loan_c(TReqDataReader) -- -- #define TReqTRepSimpleReplier_create_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _create) -- #define TReqTRepSimpleReplier_create TReqTRepSimpleReplier_create_c(TReqTRepSimpleReplier_name) -- -- #define TReqTRepSimpleReplier_create_w_params_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _create_w_params) -- #define TReqTRepSimpleReplier_create_w_params TReqTRepSimpleReplier_create_w_params_c(TReqTRepSimpleReplier_name) -- -- #define TReqTRepSimpleReplier_delete_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _delete) -- #define TReqTRepSimpleReplier_delete TReqTRepSimpleReplier_delete_c(TReqTRepSimpleReplier_name) -- -- #define TReqTRepSimpleReplier_get_request_datareader_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _get_request_datareader) -- #define TReqTRepSimpleReplier_get_request_datareader TReqTRepSimpleReplier_get_request_datareader_c(TReqTRepSimpleReplier_name) -- -- #define TReqTRepSimpleReplier_get_reply_datawriter_c(TReqTRepSimpleReplier_name) concatenate(TReqTRepSimpleReplier_name, _get_reply_datawriter) -- #define TReqTRepSimpleReplier_get_reply_datawriter TReqTRepSimpleReplier_get_reply_datawriter_c(TReqTRepSimpleReplier_name) -- -- void TReqTRepSimpleReplier_on_data_available( -- void* listener_data, DDS_DataReader* reader) -- { -- struct TReqSeq typed_seq = DDS_SEQUENCE_INITIALIZER; -- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER; -- DDS_ReturnCode_t retcode = DDS_RETCODE_OK; -- int i = 0; -- TReqTRepSimpleReplier* self = (TReqTRepSimpleReplier*) listener_data; -- -- retcode = TReqTRepReplier_take_requests( -- (TReqTRepReplier *) self, -- &typed_seq, &info_seq, -- DDS_LENGTH_UNLIMITED); -- -- if (retcode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_GET_FAILURE_s, -- "requests from Replier"); -- return; -- } -- -- for (i = 0; i < TReqSeq_get_length(&typed_seq); ++i) { -- struct DDS_SampleIdentity_t id = DDS_UNKNOWN_SAMPLE_IDENTITY; -- -- TReq* sample = TReqSeq_get_reference(&typed_seq, i); -- struct DDS_SampleInfo* info = -- DDS_SampleInfoSeq_get_reference(&info_seq, i); -- -- TRep* reply = (TRep*)self->parent.simpleListener.on_request_available( -- &self->parent.simpleListener, (void *) sample, info); -- -- if (reply == NULL) { -- continue; -- } -- -- DDS_GUID_copy(&id.writer_guid, -- &info->original_publication_virtual_guid); -- id.sequence_number = info->original_publication_virtual_sequence_number; -- -- retcode = TReqTRepReplier_send_reply( -- (TReqTRepReplier *) self, reply, &id); -- if (retcode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "write reply"); -- } -- -- self->parent.simpleListener.return_loan( -- &self->parent.simpleListener, (void*)reply); -- } -- -- retcode = TReqTRepReplier_return_loan( -- (TReqTRepReplier *) self, &typed_seq, &info_seq); -- -- if (retcode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "return loan to Replier"); -- } -- } -- -- /* TODO: move out of macro */ -- DDS_ReturnCode_t TReqTRepSimpleReplier_delete(TReqTRepSimpleReplier * self) -- { -- DDS_ReturnCode_t retcode = DDS_RETCODE_OK; -- -- /* TODO: error on precondition */ -- if(self != NULL) { -- if(self->parent._impl != NULL) { -- RTI_Connext_EntityUntypedImpl_delete(self->parent._impl); -- } -- RTIOsapiHeap_free(self); -- } -- -- return retcode; -- } -- -- TReqTRepSimpleReplier* TReqTRepSimpleReplier_create( -- DDS_DomainParticipant * participant, -- char * service_name, -- RTI_Connext_SimpleReplierListener * listener) -- { -- TReqTRepSimpleReplier* replier = NULL; -- -- RTI_Connext_SimpleReplierParams params = -- RTI_Connext_SimpleReplierParams_INITIALIZER; -- -- params.participant = participant; -- params.service_name = (char *) service_name; -- params.simple_listener = listener; -- -- replier = TReqTRepSimpleReplier_create_w_params(&params); -- if(replier == NULL) { -- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s, -- "SimpleReplier with params"); -- return NULL; -- } -- -- return replier; -- } -- -- TReqTRepSimpleReplier* TReqTRepSimpleReplier_create_w_params( -- RTI_Connext_SimpleReplierParams* params) -- { -- TReqTRepSimpleReplier * replier = NULL; -- DDS_ReturnCode_t retCode = DDS_RETCODE_OK; -- struct DDS_DataReaderListener reader_listener = -- DDS_DataReaderListener_INITIALIZER; -- RTI_Connext_EntityParams entity_params; -- -- if(params == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "params"); -- return NULL; -- } -- -- if (params->simple_listener == NULL) { -- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s, -- "listener is required"); -- return NULL; -- } -- -- RTIOsapiHeap_allocateStructure(&replier, TReqTRepSimpleReplier); -- if(replier == NULL) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "error creating a TReqTRepRequester"); -- replier = NULL; -- goto finish; -- } -- -- replier->parent._impl = NULL; -- replier->parent.simpleListener = *params->simple_listener; -- -- replier->parent._impl = RTI_Connext_ReplierUntypedImpl_create(); -- if(replier->parent._impl == NULL) { -- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s, -- "ReplierUntypedImpl"); -- goto finish; -- } -- -- reader_listener.on_data_available = TReqTRepSimpleReplier_on_data_available; -- reader_listener.as_listener.listener_data = replier; -- -- RTI_Connext_SimpleReplierParams_to_entityparams(params, &entity_params); -- retCode = RTI_Connext_ReplierUntypedImpl_initialize( -- replier->parent._impl, -- &entity_params, -- &TReqTypeSupport_register_type, -- TReqTypeSupport_get_type_name(), -- &TRepTypeSupport_register_type, -- TRepTypeSupport_get_type_name(), -- sizeof(TReq), -- &reader_listener); -- -- if(retCode != DDS_RETCODE_OK) { -- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s, -- "initialize ReplierUntypedImpl"); -- goto finish; -- } -- -- return replier; -- -- finish: -- if(replier != NULL) { -- TReqTRepSimpleReplier_delete(replier); -- } -- return NULL; -- } -- -- TReqDataReader* TReqTRepSimpleReplier_get_request_datareader( -- TReqTRepSimpleReplier* self) -- { -- return TReqTRepReplier_get_request_datareader((TReqTRepReplier* )self); -- } -- -- TRepDataWriter* TReqTRepSimpleReplier_get_reply_datawriter( -- TReqTRepSimpleReplier* self) -- { -- return TReqTRepReplier_get_reply_datawriter((TReqTRepReplier* )self); -- } -- -- #endif -- /* ----------------------------------------------------------------- */ -- /* End of $Id$ */ end DDS.Request_Reply.treqtrepsimplereplier;
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with Unix; with Replicant; with Parameters; with PortScan.Log; with PortScan.Tests; with PortScan.Packager; with File_Operations; with Ada.Directories; with Ada.Characters.Latin_1; with Ada.Exceptions; package body PortScan.Buildcycle is package EX renames Ada.Exceptions; package LAT renames Ada.Characters.Latin_1; package DIR renames Ada.Directories; package FOP renames File_Operations; package LOG renames PortScan.Log; package PKG renames PortScan.Packager; package TST renames PortScan.Tests; package PM renames Parameters; package REP renames Replicant; -------------------------------------------------------------------------------------------- -- build_package -------------------------------------------------------------------------------------------- function build_package (id : builders; sequence_id : port_id; specification : PSP.Portspecs; interactive : Boolean := False; interphase : String := "") return Boolean is R : Boolean; break_phase : constant phases := valid_test_phase (interphase); run_selftest : constant Boolean := Unix.env_variable_defined (selftest); pkgversion : constant String := HT.USS (all_ports (sequence_id).pkgversion); normsslv : constant String := PM.ssl_selection (PM.configuration); sslv : constant String := specification.get_ssl_variant (normsslv); environ : constant String := environment_override (True, sslv); env_nochain : constant String := environment_override (False, sslv); port_prefix : constant String := get_port_prefix (id, environ); variant : constant String := HT.USS (all_ports (sequence_id).port_variant); begin trackers (id).seq_id := sequence_id; trackers (id).loglines := 0; trackers (id).check_strip := not specification.debugging_is_on; trackers (id).rpath_fatal := specification.rpath_check_errors_are_fatal; trackers (id).disable_dog := specification.watchdog_disabled; if not LOG.initialize_log (log_handle => trackers (id).log_handle, head_time => trackers (id).head_time, seq_id => trackers (id).seq_id, slave_root => get_root (id), UNAME => HT.USS (uname_mrv), BENV => get_environment (id, environ), COPTS => specification.options_summary (variant), PTVAR => get_port_variables (id, environ), block_dog => trackers (id).disable_dog) then LOG.finalize_log (trackers (id).log_handle, trackers (id).head_time, trackers (id).tail_time); return False; end if; begin for phase in phases'Range loop phase_trackers (id) := phase; case phase is when blr_depends => R := exec_phase_depends (specification => specification, phase_name => phase2str (phase), id => id, environ => environ); when fetch => REP.hook_toolchain (id); R := exec_phase_generic (id, phase, environ); when extract | patch => R := exec_phase_generic (id, phase, environ); when configure => if testing then mark_file_system (id, "preconfig", environ); end if; R := exec_phase_generic (id, phase, environ); when build => R := exec_phase_build (id, environ); when stage => if testing then mark_file_system (id, "prestage", env_nochain); end if; R := exec_phase_generic (id, phase, env_nochain); when test => if testing and run_selftest then R := exec_phase_generic (id, phase, environ); end if; REP.unhook_toolchain (id); if R and then testing then R := deinstall_all_packages (id, env_nochain); if R then R := install_run_depends (specification, id, env_nochain); end if; end if; when pkg_package => R := PKG.exec_phase_package (specification => specification, log_handle => trackers (id).log_handle, log_name => LOG.log_name (trackers (id).seq_id), phase_name => phase2str (phase), seq_id => trackers (id).seq_id, port_prefix => port_prefix, rootdir => get_root (id)); when install => if testing then R := exec_phase_install (id, pkgversion, env_nochain); end if; when check_plist => if testing then R := TST.exec_check_plist (specification => specification, log_handle => trackers (id).log_handle, phase_name => phase2str (phase), seq_id => trackers (id).seq_id, port_prefix => port_prefix, rootdir => get_root (id)); end if; when deinstall => if testing then R := exec_phase_deinstall (id, pkgversion, env_nochain); end if; end case; exit when R = False; exit when interactive and then phase = break_phase; end loop; exception when crash : others => R := False; TIO.Put_Line (trackers (id).log_handle, "!!!! CRASH !!!! " & EX.Exception_Information (crash)); dump_stack (trackers (id).log_handle); end; LOG.finalize_log (trackers (id).log_handle, trackers (id).head_time, trackers (id).tail_time); if interactive then interact_with_builder (id, sslv); end if; return R; end build_package; -------------------------------------------------------------------------------------------- -- last_build_phase -------------------------------------------------------------------------------------------- function last_build_phase (id : builders) return String is begin return phase2str (phase => phase_trackers (id)); end last_build_phase; -------------------------------------------------------------------------------------------- -- max_time_without_output -------------------------------------------------------------------------------------------- function max_time_without_output (phase : phases) return execution_limit is base : Integer; begin case phase is when blr_depends => base := 15; -- octave forge extraction is driver when fetch => return 480; -- 8 hours when extract => base := 20; when patch => base := 3; when configure => base := 15; when build => base := 40; -- for gcc linking, tex, *llvm linking* when stage => base := 15; -- compiling impossible; toolchain removed when test => base := 25; when check_plist => base := 10; -- For packages with thousands of files when pkg_package => base := 80; when install => base := 10; when deinstall => base := 10; end case; declare multiplier_x10 : constant Positive := timeout_multiplier_x10; begin return execution_limit (base * multiplier_x10 / 10); end; end max_time_without_output; -------------------------------------------------------------------------------------------- -- phase2str -------------------------------------------------------------------------------------------- function phase2str (phase : phases) return String is -- Locked into 12-character length limit. Any longer requires modification to -- display package and build_status function. begin case phase is when blr_depends => return "dependencies"; when fetch => return "fetch"; when extract => return "extract"; when patch => return "patch"; when configure => return "configure"; when build => return "build"; when stage => return "stage"; when test => return "test"; when pkg_package => return "package"; when install => return "install"; when deinstall => return "deinstall"; when check_plist => return "check-plist"; end case; end phase2str; -------------------------------------------------------------------------------------------- -- valid_test_phase #1 -------------------------------------------------------------------------------------------- function valid_test_phase (afterphase : String) return phases is begin if afterphase = "extract" then return extract; elsif afterphase = "patch" then return patch; elsif afterphase = "configure" then return configure; elsif afterphase = "build" then return build; elsif afterphase = "stage" then return stage; elsif afterphase = "package" then return pkg_package; elsif afterphase = "install" then return install; elsif afterphase = "deinstall" then return deinstall; else return phases'First; end if; end valid_test_phase; -------------------------------------------------------------------------------------------- -- valid_test_phase #2 -------------------------------------------------------------------------------------------- function valid_test_phase (afterphase : String) return Boolean is begin return afterphase = "extract" or else afterphase = "patch" or else afterphase = "configure" or else afterphase = "build" or else afterphase = "stage" or else afterphase = "install" or else afterphase = "deinstall"; end valid_test_phase; -------------------------------------------------------------------------------------------- -- exec_phase_generic -------------------------------------------------------------------------------------------- function exec_phase_generic (id : builders; phase : phases; environ : String) return Boolean is time_limit : execution_limit := max_time_without_output (phase); begin return exec_phase (id => id, phase => phase, time_limit => time_limit, environ => environ); end exec_phase_generic; -------------------------------------------------------------------------------------------- -- exec_phase_build -------------------------------------------------------------------------------------------- function exec_phase_build (id : builders; environ : String) return Boolean is time_limit : execution_limit := max_time_without_output (build); passed : Boolean; begin passed := exec_phase (id => id, phase => build, time_limit => time_limit, skip_header => False, skip_footer => True, environ => environ); if testing and then passed then passed := detect_leftovers_and_MIA (id => id, action => "preconfig", description => "between port configure and build", environ => environ); end if; LOG.log_phase_end (trackers (id).log_handle); return passed; end exec_phase_build; -------------------------------------------------------------------------------------------- -- pkg_install_subroutine -------------------------------------------------------------------------------------------- function pkg_install_subroutine (id : builders; root, env_vars, line : String) return Boolean is timed_out : Boolean; time_limit : execution_limit := max_time_without_output (install); PKG_ADD : constant String := "/usr/bin/ravensw add "; portkey : constant String := convert_depend_origin_to_portkey (line); ptid : constant port_id := ports_keys (HT.SUS (portkey)); pkgname : constant String := HT.replace_all (line, LAT.Colon, LAT.Hyphen); pkgversion : constant String := HT.USS (all_ports (ptid).pkgversion); pkgfile : constant String := pkgname & LAT.Hyphen & pkgversion & arc_ext; fullpath : constant String := HT.USS (PM.configuration.dir_repository) & "/" & pkgfile; command : constant String := PM.chroot_cmd & root & env_vars & PKG_ADD & "/packages/All/" & pkgfile; still_good : Boolean := True; begin if DIR.Exists (fullpath) then TIO.Put_Line (trackers (id).log_handle, "===> Installing " & pkgname & " package"); TIO.Close (trackers (id).log_handle); still_good := generic_execute (id, command, timed_out, time_limit); TIO.Open (File => trackers (id).log_handle, Mode => TIO.Append_File, Name => LOG.log_name (trackers (id).seq_id)); if timed_out then TIO.Put_Line (trackers (id).log_handle, watchdog_message (time_limit)); end if; else still_good := False; TIO.Put_Line (trackers (id).log_handle, "Dependency package not found: " & pkgfile); end if; return still_good; end pkg_install_subroutine; -------------------------------------------------------------------------------------------- -- exec_phase_depends -------------------------------------------------------------------------------------------- function exec_phase_depends (specification : PSP.Portspecs; phase_name : String; id : builders; environ : String) return Boolean is root : constant String := get_root (id); still_good : Boolean := True; markers : HT.Line_Markers; block : constant String := specification.combined_dependency_origins (include_run => not testing, limit_to_run => False); begin LOG.log_phase_begin (trackers (id).log_handle, phase_name); HT.initialize_markers (block, markers); loop exit when not still_good; exit when not HT.next_line_present (block, markers); declare line : constant String := HT.extract_line (block, markers); begin still_good := pkg_install_subroutine (id, root, environ, line); end; end loop; LOG.log_phase_end (trackers (id).log_handle); return still_good; end exec_phase_depends; -------------------------------------------------------------------------------------------- -- install_run_depends -------------------------------------------------------------------------------------------- function install_run_depends (specification : PSP.Portspecs; id : builders; environ : String) return Boolean is phase_name : constant String := "test / install run dependencies"; root : constant String := get_root (id); still_good : Boolean := True; markers : HT.Line_Markers; block : constant String := specification.combined_dependency_origins (include_run => True, limit_to_run => True); begin LOG.log_phase_begin (trackers (id).log_handle, phase_name); HT.initialize_markers (block, markers); loop exit when not still_good; exit when not HT.next_line_present (block, markers); declare line : constant String := HT.extract_line (block, markers); begin still_good := pkg_install_subroutine (id, root, environ, line); end; end loop; LOG.log_phase_end (trackers (id).log_handle); return still_good; end install_run_depends; -------------------------------------------------------------------------------------------- -- deinstall_all_packages -------------------------------------------------------------------------------------------- function deinstall_all_packages (id : builders; environ : String) return Boolean is time_limit : execution_limit := max_time_without_output (test); root : constant String := get_root (id); phase_name : constant String := "test / deinstall all packages"; PKG_RM_ALL : constant String := "/usr/bin/ravensw delete -a -y "; command : constant String := PM.chroot_cmd & root & environ & PKG_RM_ALL; still_good : Boolean := True; timed_out : Boolean; begin LOG.log_phase_begin (trackers (id).log_handle, phase_name); TIO.Put_Line (trackers (id).log_handle, "===> Autoremoving orphaned packages"); TIO.Close (trackers (id).log_handle); still_good := generic_execute (id, command, timed_out, time_limit); TIO.Open (File => trackers (id).log_handle, Mode => TIO.Append_File, Name => LOG.log_name (trackers (id).seq_id)); LOG.log_phase_end (trackers (id).log_handle); return still_good; end deinstall_all_packages; -------------------------------------------------------------------------------------------- -- exec_phase_install -------------------------------------------------------------------------------------------- function exec_phase_install (id : builders; pkgversion : String; environ : String) return Boolean is procedure install_it (position : subpackage_crate.Cursor); time_limit : execution_limit := max_time_without_output (install); root : constant String := get_root (id); namebase : constant String := HT.USS (all_ports (trackers (id).seq_id).port_namebase); PKG_ADD : constant String := "/usr/bin/ravensw add "; still_good : Boolean := True; timed_out : Boolean; procedure install_it (position : subpackage_crate.Cursor) is rec : subpackage_record renames subpackage_crate.Element (position); subpackage : constant String := HT.USS (rec.subpackage); pkgname : String := calculate_package_name (trackers (id).seq_id, subpackage); PKG_FILE : constant String := "/packages/All/" & pkgname & arc_ext; command : constant String := PM.chroot_cmd & root & environ & PKG_ADD & PKG_FILE; begin if still_good then TIO.Put_Line (trackers (id).log_handle, "===> Installing " & pkgname & " package"); TIO.Close (trackers (id).log_handle); still_good := generic_execute (id, command, timed_out, time_limit); TIO.Open (File => trackers (id).log_handle, Mode => TIO.Append_File, Name => LOG.log_name (trackers (id).seq_id)); if timed_out then TIO.Put_Line (trackers (id).log_handle, watchdog_message (time_limit)); end if; end if; end install_it; begin LOG.log_phase_begin (trackers (id).log_handle, phase2str (install)); all_ports (trackers (id).seq_id).subpackages.Iterate (install_it'Access); LOG.log_phase_end (trackers (id).log_handle); return still_good; end exec_phase_install; -------------------------------------------------------------------------------------------- -- exec_phase -------------------------------------------------------------------------------------------- function exec_phase (id : builders; phase : phases; time_limit : execution_limit; environ : String; phaseenv : String := ""; depends_phase : Boolean := False; skip_header : Boolean := False; skip_footer : Boolean := False) return Boolean is root : constant String := get_root (id); pid : port_id := trackers (id).seq_id; result : Boolean; timed_out : Boolean; begin -- Nasty, we have to switch open and close the log file for each -- phase because we have to switch between File_Type and File -- Descriptors. I can't find a safe way to get the File Descriptor -- out of the File type. if not skip_header then LOG.log_phase_begin (trackers (id).log_handle, phase2str (phase)); end if; TIO.Close (trackers (id).log_handle); declare command : constant String := PM.chroot_cmd & root & environ & phaseenv & chroot_make_program & " -C /port " & phase2str (phase); begin result := generic_execute (id, command, timed_out, time_limit); end; -- Reopen the log. I guess we can leave off the exception check -- since it's been passing before TIO.Open (File => trackers (id).log_handle, Mode => TIO.Append_File, Name => LOG.log_name (trackers (id).seq_id)); if timed_out then TIO.Put_Line (trackers (id).log_handle, watchdog_message (time_limit)); end if; if not skip_footer then LOG.log_phase_end (trackers (id).log_handle); end if; return result; end exec_phase; -------------------------------------------------------------------------------------------- -- get_port_variables -------------------------------------------------------------------------------------------- function get_port_variables (id : builders; environ : String) return String is root : constant String := get_root (id); command : constant String := PM.chroot_cmd & root & environ & chroot_make_program & " -C /port -VCONFIGURE_ENV -VCONFIGURE_ARGS" & " -VMAKE_ENV -VMAKE_ARGS -VPLIST_SUB -VSUB_LIST"; begin return generic_system_command (command); exception when others => return discerr; end get_port_variables; -------------------------------------------------------------------------------------------- -- generic_system_command -------------------------------------------------------------------------------------------- function generic_system_command (command : String) return String is content : HT.Text; status : Integer; begin content := Unix.piped_command (command, status); if status /= 0 then declare message : String := command & " (return code =" & status'Img & ")"; projlen : Natural := message'Length + 5; begin REP.append_abnormal_log ("COMMAND: " & command); REP.append_abnormal_log (" OUTPUT: " & HT.USS (content)); if projlen > 200 then raise cycle_cmd_error with "cmd: ..." & message (message'Last - 191 .. message'Last); else raise cycle_cmd_error with "cmd: " & message; end if; end; end if; return HT.USS (content); end generic_system_command; -------------------------------------------------------------------------------------------- -- set_uname_mrv -------------------------------------------------------------------------------------------- procedure set_uname_mrv is command : constant String := HT.USS (PM.configuration.dir_sysroot) & "/usr/bin/uname -mrv"; begin uname_mrv := HT.SUS (generic_system_command (command)); end set_uname_mrv; -------------------------------------------------------------------------------------------- -- get_root -------------------------------------------------------------------------------------------- function get_root (id : builders) return String is suffix : String := "/SL" & HT.zeropad (Integer (id), 2); begin return HT.USS (PM.configuration.dir_buildbase) & suffix; end get_root; -------------------------------------------------------------------------------------------- -- get_environment -------------------------------------------------------------------------------------------- function get_environment (id : builders; environ : String) return String is root : constant String := get_root (id); command : constant String := PM.chroot_cmd & root & environ; begin return generic_system_command (command); exception when others => return discerr; end get_environment; -------------------------------------------------------------------------------------------- -- environment_override -------------------------------------------------------------------------------------------- function environment_override (toolchain : Boolean; ssl_variant : String; enable_tty : Boolean := False) return String is function set_terminal (enable_tty : Boolean) return String; function toolchain_path return String; function dyld_fallback return String; localbase : constant String := HT.USS (PM.configuration.dir_localbase); function set_terminal (enable_tty : Boolean) return String is begin if enable_tty then return "TERM=xterm "; end if; return "TERM=dumb "; end set_terminal; function toolchain_path return String is defcomp : String := localbase & "/toolchain/" & default_compiler & "/bin:"; begin if toolchain then if default_compiler /= previous_default then return defcomp & localbase & "/toolchain/" & previous_default & "/bin:"; else return defcomp; end if; else return ""; end if; end toolchain_path; function dyld_fallback return String is begin case platform_type is when macos => return "DYLD_FALLBACK_LIBRARY_PATH=" & localbase & "/toolchain-fallback/" & default_compiler & "/lib "; when others => return ""; end case; end dyld_fallback; PATH : constant String := "PATH=/bin:/usr/bin:" & toolchain_path & localbase & "/toolchain/bin:" & localbase & "/sbin:" & localbase & "/bin "; TERM : constant String := set_terminal (enable_tty); USER : constant String := "USER=root "; HOME : constant String := "HOME=/root "; LANG : constant String := "LANG=C "; SHLL : constant String := "SHELL=/bin/sh "; RAVN : constant String := "RAVENADM=building "; SSLV : constant String := "SSL_VARIANT=" & ssl_variant & " "; PKG8 : constant String := "RAVENSW_DBDIR=/var/db/pkg8 " & "RAVENSW_CACHEDIR=/var/cache/pkg8 "; CENV : constant String := HT.USS (customenv); DYLD : constant String := dyld_fallback; begin return " /usr/bin/env -i " & CENV & LANG & TERM & SHLL & USER & HOME & RAVN & SSLV & PKG8 & DYLD & PATH; end environment_override; -------------------------------------------------------------------------------------------- -- obtain_custom_environment -------------------------------------------------------------------------------------------- procedure obtain_custom_environment is target_name : constant String := PM.raven_confdir & "/" & HT.USS (PM.configuration.profile) & "-environment"; begin customenv := HT.blank; if not DIR.Exists (target_name) then return; end if; declare contents : String := FOP.get_file_contents (target_name); markers : HT.Line_Markers; begin HT.initialize_markers (contents, markers); loop exit when not HT.next_line_present (contents, markers); declare line : constant String := HT.extract_line (contents, markers); begin if HT.contains (line, "=") then HT.SU.Append (customenv, HT.trim (line) & " "); end if; end; end loop; end; end obtain_custom_environment; -------------------------------------------------------------------------------------------- -- initialize -------------------------------------------------------------------------------------------- procedure initialize (test_mode : Boolean) is begin set_uname_mrv; testing := test_mode; declare logdir : constant String := HT.USS (PM.configuration.dir_logs); begin if not DIR.Exists (logdir) then DIR.Create_Path (New_Directory => logdir); end if; exception when error : others => raise scan_log_error with "failed to create " & logdir; end; obtain_custom_environment; end initialize; -------------------------------------------------------------------------------------------- -- initialize -------------------------------------------------------------------------------------------- function exec_phase_deinstall (id : builders; pkgversion : String; environ : String) return Boolean is procedure deinstall_it (position : subpackage_crate.Cursor); time_limit : execution_limit := max_time_without_output (deinstall); root : constant String := get_root (id); namebase : constant String := HT.USS (all_ports (trackers (id).seq_id).port_namebase); PKG_DELETE : constant String := "/usr/bin/ravensw delete -f -y "; still_good : Boolean := True; dyn_good : Boolean; timed_out : Boolean; procedure deinstall_it (position : subpackage_crate.Cursor) is rec : subpackage_record renames subpackage_crate.Element (position); subpackage : constant String := HT.USS (rec.subpackage); pkgname : String := calculate_package_name (trackers (id).seq_id, subpackage); command : constant String := PM.chroot_cmd & root & environ & PKG_DELETE & pkgname; begin if still_good then TIO.Put_Line (trackers (id).log_handle, "===> Deinstalling " & pkgname & " package"); TIO.Close (trackers (id).log_handle); still_good := generic_execute (id, command, timed_out, time_limit); TIO.Open (File => trackers (id).log_handle, Mode => TIO.Append_File, Name => LOG.log_name (trackers (id).seq_id)); if timed_out then TIO.Put_Line (trackers (id).log_handle, watchdog_message (time_limit)); end if; end if; end deinstall_it; begin LOG.log_phase_begin (trackers (id).log_handle, phase2str (deinstall)); dyn_good := log_linked_libraries (id, pkgversion, environ); all_ports (trackers (id).seq_id).subpackages.Iterate (deinstall_it'Access); if still_good then still_good := detect_leftovers_and_MIA (id => id, action => "prestage", description => "between staging and package deinstallation", environ => environ); end if; LOG.log_phase_end (trackers (id).log_handle); return still_good and then dyn_good; end exec_phase_deinstall; -------------------------------------------------------------------------------------------- -- stack_linked_libraries -------------------------------------------------------------------------------------------- procedure stack_linked_libraries (id : builders; base : String; filename : String; environ : String) is command : String := PM.chroot_cmd & base & environ & "/usr/bin/objdump-sysroot -p " & filename; begin declare comres : String := generic_system_command (command); markers : HT.Line_Markers; pathstr : HT.Text := HT.blank; initial : String := " NEEDED"; runpath : String := " RUNPATH"; rpath : String := " RPATH"; begin HT.initialize_markers (comres, markers); if HT.next_line_with_content_present (comres, runpath, markers) then declare line : constant String := HT.extract_line (comres, markers); begin pathstr := HT.SUS (FOP.convert_ORIGIN_in_runpath (filename => filename, runpath => HT.trim (HT.part_2 (line, runpath)))); end; else HT.initialize_markers (comres, markers); if HT.next_line_with_content_present (comres, rpath, markers) then declare line : constant String := HT.extract_line (comres, markers); begin pathstr := HT.SUS (FOP.convert_ORIGIN_in_runpath (filename => filename, runpath => HT.trim (HT.part_2 (line, rpath)))); end; end if; end if; HT.initialize_markers (comres, markers); loop exit when not HT.next_line_with_content_present (comres, initial, markers); declare line : constant String := HT.extract_line (comres, markers); shlib : constant String := " " & HT.trim (HT.part_2 (line, initial)); shpayload : HT.Text := HT.SUS (HT.USS (pathstr) & shlib); line_text : HT.Text := HT.SUS (line); begin if not trackers (id).dynlink.Contains (line_text) then trackers (id).dynlink.Append (line_text); end if; if not trackers (id).runpaths.Contains (shpayload) then trackers (id).runpaths.Append (shpayload); end if; end; end loop; end; exception -- the command result was not zero, so it was an expected format -- or static file. Just skip it. (Should never happen) when bad_result : others => null; end stack_linked_libraries; -------------------------------------------------------------------------------------------- -- log_linked_libraries -------------------------------------------------------------------------------------------- function log_linked_libraries (id : builders; pkgversion : String; environ : String) return Boolean is procedure log_dump (position : string_crate.Cursor); procedure check_package (position : subpackage_crate.Cursor); root : constant String := get_root (id); namebase : constant String := HT.USS (all_ports (trackers (id).seq_id).port_namebase); result : Boolean := True; procedure log_dump (position : string_crate.Cursor) is info : String := " " & HT.USS (string_crate.Element (position)); begin TIO.Put_Line (trackers (id).log_handle, info); end log_dump; procedure check_package (position : subpackage_crate.Cursor) is rec : subpackage_record renames subpackage_crate.Element (position); subpackage : constant String := HT.USS (rec.subpackage); pkgname : String := calculate_package_name (trackers (id).seq_id, subpackage); command : constant String := PM.chroot_cmd & root & environ & "/usr/bin/ravensw query %Fp " & pkgname; comres : String := generic_system_command (command); markers : HT.Line_Markers; begin trackers (id).dynlink.Clear; trackers (id).runpaths.Clear; trackers (id).checkpaths.Clear; trackers (id).goodpaths.Clear; HT.initialize_markers (comres, markers); loop exit when not HT.next_line_present (comres, markers); declare filename : constant String := HT.extract_line (comres, markers); unstripped : Boolean; begin if dynamically_linked (base => root, filename => filename, strip_check => trackers (id).check_strip, unstripped => unstripped) then stack_linked_libraries (id, root, filename, environ); if not passed_runpath_check (id) then result := False; end if; end if; if unstripped then TIO.Put_Line (trackers (id).log_handle, "### WARNING ### " & filename & " is not stripped. " & "See Ravenporter's guide."); end if; end; end loop; if not trackers (id).dynlink.Is_Empty then TIO.Put_Line (trackers (id).log_handle, "===> " & pkgname & " subpackage:"); trackers (id).dynlink.Iterate (log_dump'Access); end if; exception when others => null; end check_package; begin TIO.Put_Line (trackers (id).log_handle, "=> Checking shared library dependencies"); all_ports (trackers (id).seq_id).subpackages.Iterate (check_package'Access); return result; end log_linked_libraries; -------------------------------------------------------------------------------------------- -- dynamically_linked -------------------------------------------------------------------------------------------- function dynamically_linked (base : String; filename : String; strip_check : Boolean; unstripped : out Boolean) return Boolean is command : String := PM.chroot_cmd & base & " /usr/bin/file -b -L -e ascii -e encoding -e tar -e compress " & "-h -m /usr/share/file/magic.mgc " & HT.shell_quoted (filename); dynlinked : Boolean; statlinked : Boolean; begin unstripped := False; declare comres : constant String := generic_system_command (command); begin dynlinked := HT.contains (comres, "dynamically linked"); if dynlinked then statlinked := False; else statlinked := HT.contains (comres, "statically linked"); end if; if strip_check then if dynlinked or else statlinked then if HT.contains (comres, ", not stripped") then unstripped := True; end if; end if; end if; return dynlinked; end; exception when others => return False; end dynamically_linked; -------------------------------------------------------------------------------------------- -- passed_runpath_check -------------------------------------------------------------------------------------------- function passed_runpath_check (id : builders) return Boolean is procedure scan (position : string_crate.Cursor); function errmsg_prefix return String; result : Boolean := True; root : constant String := get_root (id); fail_result : Boolean := not trackers (id).rpath_fatal; function errmsg_prefix return String is begin if trackers (id).rpath_fatal then return "### FATAL ERROR ### "; else return "### WARNING ### "; end if; end errmsg_prefix; procedure scan (position : string_crate.Cursor) is procedure squawk; function get_system_lib_level_1 return String; function get_system_lib_level_2 return String; line : String := HT.USS (string_crate.Element (position)); paths : constant String := HT.part_1 (line, " "); library : constant String := HT.part_2 (line, " "); numfields : constant Natural := HT.count_char (paths, LAT.Colon) + 1; attempted : Boolean := False; function get_system_lib_level_1 return String is begin if platform_type = linux then return "/lib/x86_64-linux-gnu"; else return "/lib"; end if; end get_system_lib_level_1; function get_system_lib_level_2 return String is begin if platform_type = linux then return "/usr/lib/x86_64-linux-gnu"; else return "/usr/lib"; end if; end get_system_lib_level_2; systemdir_1 : constant String := get_system_lib_level_1; systemdir_2 : constant String := get_system_lib_level_2; systemlib_1 : constant String := systemdir_1 & "/" & library; systemlib_2 : constant String := systemdir_2 & "/" & library; syslib_1txt : HT.Text := HT.SUS (systemlib_1); syslib_2txt : HT.Text := HT.SUS (systemlib_2); procedure squawk is begin TIO.Put_Line (trackers (id).log_handle, errmsg_prefix & library & " is not in located in " & systemdir_1 & ", " & systemdir_2 & " or within the RPATH/RUNPATH (" & paths & ")"); end squawk; begin -- Check system library paths first if trackers (id).goodpaths.Contains (syslib_1txt) or else trackers (id).goodpaths.Contains (syslib_2txt) then return; end if; if not trackers (id).checkpaths.Contains (syslib_1txt) then if DIR.Exists (root & systemlib_1) then trackers (id).goodpaths.Append (syslib_1txt); return; end if; trackers (id).checkpaths.Append (syslib_1txt); attempted := True; end if; if not trackers (id).checkpaths.Contains (syslib_2txt) then if DIR.Exists (root & systemlib_2) then trackers (id).goodpaths.Append (syslib_2txt); return; end if; trackers (id).checkpaths.Append (syslib_2txt); attempted := True; end if; if HT.IsBlank (paths) then squawk; result := fail_result; return; end if; for n in 1 .. numfields loop declare testpath : String := HT.specific_field (paths, n, ":"); test_library : String := testpath & "/" & library; test_lib_txt : HT.Text := HT.SUS (test_library); begin if trackers (id).goodpaths.Contains (test_lib_txt) then return; end if; if not trackers (id).checkpaths.Contains (test_lib_txt) then if DIR.Exists (root & test_library) then trackers (id).goodpaths.Append (test_lib_txt); return; end if; trackers (id).checkpaths.Append (test_lib_txt); attempted := True; end if; end; end loop; if attempted then squawk; result := fail_result; end if; end scan; begin trackers (id).runpaths.Iterate (scan'Access); return result; end passed_runpath_check; -------------------------------------------------------------------------------------------- -- timeout_multiplier_x10 -------------------------------------------------------------------------------------------- function timeout_multiplier_x10 return Positive is average5 : constant Float := load_core (instant_load => False); avefloat : constant Float := average5 / Float (PM.configuration.number_cores); begin if avefloat <= 1.0 then return 10; else return Integer (avefloat * 10.0); end if; exception when others => return 10; end timeout_multiplier_x10; -------------------------------------------------------------------------------------------- -- load_core -------------------------------------------------------------------------------------------- function load_core (instant_load : Boolean) return Float is function probe_load return String; ----------------- 123456789-123456789-123456789- -- DFLY/FreeBSD: vm.loadavg: { 0.00 0.00 0.00 } -- NetBSD: vm.loadavg: 0.00 0.00 0.00 -- Darwin: vm.loadavg: { 1.21 1.07 1.15 } -- Linux: 0.00 0.01 0.05 3/382 15409 -- Solaris: [~42 chars]load average: 0.01, 0.01, 0.01 zero : constant Float := 0.0; lo : Integer; function probe_load return String is bsd : constant String := "/usr/bin/env LANG=C /sbin/sysctl vm.loadavg"; mac : constant String := "/usr/bin/env LANG=C /usr/sbin/sysctl vm.loadavg"; lin : constant String := "/bin/cat /proc/loadavg"; sol : constant String := "/usr/bin/uptime"; begin case platform_type is when dragonfly | freebsd => lo := 14; return generic_system_command (bsd); when macos => lo := 14; return generic_system_command (mac); when netbsd | openbsd => lo := 12; return generic_system_command (bsd); when linux => lo := 0; return generic_system_command (lin); when sunos => return generic_system_command (sol); end case; exception when others => case platform_type is when dragonfly | freebsd | macos => return "vm.loadavg: { 0.00 0.00 0.00 }"; when netbsd | openbsd => return "vm.loadavg: 0.00 0.00 0.00"; when linux => return "0.00 0.00 0.00"; when sunos => return "load average: 0.00, 0.00, 0.00"; end case; end probe_load; comres : constant String := probe_load; begin case platform_type is when dragonfly | freebsd | netbsd | openbsd | linux | macos => declare stripped : constant String := comres (comres'First + lo .. comres'Last); begin if instant_load then return Float'Value (HT.specific_field (stripped, 1, " ")); else return Float'Value (HT.specific_field (stripped, 2, " ")); end if; end; when sunos => declare stripped : constant String := HT.part_2 (comres, "load average: "); begin if instant_load then return Float'Value (HT.specific_field (stripped, 1, ", ")); else return Float'Value (HT.specific_field (stripped, 2, ", ")); end if; end; end case; exception when others => return zero; end load_core; -------------------------------------------------------------------------------------------- -- builder_status -------------------------------------------------------------------------------------------- function builder_status (id : builders; shutdown : Boolean := False; idle : Boolean := False) return Display.builder_rec is phasestr : constant String := phase2str (phase_trackers (id)); result : Display.builder_rec; orilimit : constant Positive := Display.fld_origin'Length; orishort : constant Natural := orilimit - 1; begin -- 123456789 123456789 123456789 123456789 1234 -- SL elapsed phase lines origin -- 01 00:00:00 extract-depends 9999999 www/joe result.id := id; result.slavid := HT.zeropad (Natural (id), 2); result.LLines := (others => ' '); result.phase := (others => ' '); result.origin := (others => ' '); result.shutdown := False; result.idle := False; if shutdown then -- Overrides "idle" if both Shutdown and Idle are True result.Elapsed := "Shutdown"; result.shutdown := True; return result; end if; if idle then result.Elapsed := "Idle "; result.idle := True; return result; end if; declare catport : constant String := get_port_variant (all_ports (trackers (id).seq_id)); numlines : constant String := format_loglines (trackers (id).loglines); linehead : constant Natural := 8 - numlines'Length; begin result.Elapsed := LOG.elapsed_HH_MM_SS (start => trackers (id).head_time, stop => CAL.Clock); result.LLines (linehead .. 7) := numlines; result.phase (1 .. phasestr'Length) := phasestr; if catport'Length > orilimit then result.origin (1 .. orishort) := catport (catport'First .. catport'First + orishort); result.origin (orilimit) := LAT.Asterisk; else result.origin (1 .. catport'Length) := catport; end if; end; return result; end builder_status; -------------------------------------------------------------------------------------------- -- format_loglines -------------------------------------------------------------------------------------------- function format_loglines (numlines : Natural) return String is begin if numlines < 10000000 then -- 10 million return HT.int2str (numlines); end if; declare kilo : constant Natural := numlines / 1000; kilotxt : constant String := HT.int2str (kilo); begin if numlines < 100000000 then -- 100 million return kilotxt (1 .. 2) & "." & kilotxt (3 .. 5) & 'M'; elsif numlines < 1000000000 then -- 1 billion return kilotxt (1 .. 3) & "." & kilotxt (3 .. 4) & 'M'; else return kilotxt (1 .. 4) & "." & kilotxt (3 .. 3) & 'M'; end if; end; end format_loglines; -------------------------------------------------------------------------------------------- -- mark_file_system -------------------------------------------------------------------------------------------- procedure mark_file_system (id : builders; action : String; environ : String) is function attributes (action : String) return String; root : constant String := get_root (id); mtfile : constant String := "/etc/mtree." & action & ".exclude"; resfile : TIO.File_Type; function attributes (action : String) return String is core : constant String := "uid,gid,mode,sha1digest"; begin if action = "preconfig" then return core & ",time"; else return core; end if; end attributes; command : constant String := PM.chroot_cmd & root & environ & " /usr/bin/mtree -X " & mtfile & " -cn -k " & attributes (action) & " -p /"; filename : constant String := root & "/tmp/mtree." & action; begin TIO.Create (File => resfile, Mode => TIO.Out_File, Name => filename); TIO.Put (resfile, generic_system_command (command)); TIO.Close (resfile); exception when others => if TIO.Is_Open (resfile) then TIO.Close (resfile); end if; end mark_file_system; -------------------------------------------------------------------------------------------- -- interact_with_builder -------------------------------------------------------------------------------------------- procedure interact_with_builder (id : builders; ssl_variant : String) is function shell return String; root : constant String := get_root (id); result : Boolean; function shell return String is begin case platform_type is when linux | sunos => return "/bin/bash"; when others => return "/bin/sh"; end case; end shell; command : String := PM.chroot_cmd & root & environment_override (True, ssl_variant, True) & shell; begin TIO.Put_Line ("Entering interactive test mode at the builder root directory."); TIO.Put_Line ("Type 'exit' when done exploring."); result := Unix.external_command (command); end interact_with_builder; -------------------------------------------------------------------------------------------- -- detect_leftovers_and_MIA -------------------------------------------------------------------------------------------- function detect_leftovers_and_MIA (id : builders; action : String; description : String; environ : String) return Boolean is package crate is new CON.Vectors (Index_Type => Positive, Element_Type => HT.Text, "=" => HT.SU."="); package local_sorter is new crate.Generic_Sorting ("<" => HT.SU."<"); function ignore_modifications return Boolean; procedure print (cursor : crate.Cursor); procedure close_active_modifications; root : constant String := get_root (id); mtfile : constant String := "/etc/mtree." & action & ".exclude"; filename : constant String := root & "/tmp/mtree." & action; command : constant String := PM.chroot_cmd & root & environ & "/usr/bin/mtree -X " & mtfile & " -f " & filename & " -p /"; lbasewrk : constant String := HT.USS (PM.configuration.dir_localbase); lbase : constant String := lbasewrk (lbasewrk'First + 1 .. lbasewrk'Last); lblen : constant Natural := lbase'Length; status : Integer; skiprest : Boolean; passed : Boolean := True; activemod : Boolean := False; modport : HT.Text := HT.blank; reasons : HT.Text := HT.blank; leftover : crate.Vector; missing : crate.Vector; changed : crate.Vector; markers : HT.Line_Markers; -- we can't use generic_system_command because exit code /= 0 normally comres : String := HT.USS (Unix.piped_command (command, status)); function ignore_modifications return Boolean is -- Some modifications need to be ignored -- A) */ls-R -- #ls-R files from texmf are often regenerated -- B) share/xml/catalog.ports -- # xmlcatmgr is constantly updating catalog.ports, ignore -- C) share/octave/octave_packages -- # Octave packages database, blank lines can be inserted -- # between pre-install and post-deinstall -- D) info/dir | */info/dir -- E) lib/gio/modules/giomodule.cache -- # gio modules cache could be modified for any gio modules -- F) etc/gconf/gconf.xml.defaults/%gconf-tree*.xml -- # gconftool-2 --makefile-uninstall-rule is unpredictable -- G) %%PEARDIR%%/.depdb | %%PEARDIR%%/.filemap -- # The is pear database cache -- H) "." with timestamp modification -- # this happens when ./tmp or ./var is used, which is legal filename : constant String := HT.USS (modport); fnlen : constant Natural := filename'Last; begin if filename = lbase & "/share/xml/catalog.ports" or else filename = lbase & "/share/octave/octave_packages" or else filename = lbase & "/share/info/dir" or else filename = lbase & "/lib/gio/modules/giomodule.cache" or else filename = lbase & "/share/pear/.depdb" or else filename = lbase & "/share/pear/.filemap" then return True; end if; if filename = "." and then HT.equivalent (reasons, "modification") then return True; end if; if fnlen > lblen + 7 and then filename (1 .. lblen + 1) = lbase & "/" then if filename (fnlen - 4 .. fnlen) = "/ls-R" or else filename (fnlen - 14 .. fnlen) = "/share/info/dir" then return True; end if; end if; if fnlen > 47 + lblen and then filename (1 .. 30 + lblen) = lbase & "/etc/gconf/gconf.xml.defaults/" and then filename (fnlen - 3 .. fnlen) = ".xml" then if HT.contains (filename, "/%gconf-tree") then return True; end if; end if; return False; end ignore_modifications; procedure close_active_modifications is begin if activemod and then not ignore_modifications then HT.SU.Append (modport, " [ "); HT.SU.Append (modport, reasons); HT.SU.Append (modport, " ]"); if not changed.Contains (modport) then changed.Append (modport); end if; end if; activemod := False; reasons := HT.blank; modport := HT.blank; end close_active_modifications; procedure print (cursor : crate.Cursor) is dossier : constant String := HT.USS (crate.Element (cursor)); begin TIO.Put_Line (trackers (id).log_handle, LAT.HT & dossier); end print; begin HT.initialize_markers (comres, markers); loop skiprest := False; exit when not HT.next_line_present (comres, markers); declare line : constant String := HT.extract_line (comres, markers); linelen : constant Natural := line'Length; begin if not skiprest and then linelen > 6 then declare caboose : constant String := line (line'Last - 5 .. line'Last); filename : HT.Text := HT.SUS (line (line'First .. line'Last - 6)); begin if caboose = " extra" then close_active_modifications; if not leftover.Contains (filename) then leftover.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest and then linelen > 7 then declare canopy : constant String := line (line'First .. line'First + 6); filename : HT.Text := HT.SUS (line (line'First + 7 .. line'Last)); begin if canopy = "extra: " then close_active_modifications; if not leftover.Contains (filename) then leftover.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest and then linelen > 10 then declare caboose : constant String := line (line'Last - 7 .. line'Last); filename : HT.Text := HT.SUS (line (line'First + 2 .. line'Last - 8)); begin if caboose = " missing" then close_active_modifications; if not missing.Contains (filename) then missing.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest then declare blank8 : constant String := " "; begin if linelen > 5 and then line (line'First) = LAT.HT then -- reason, but only valid if modification is active if activemod then if not HT.IsBlank (reasons) then HT.SU.Append (reasons, " | "); end if; HT.SU.Append (reasons, HT.part_1 (line (line'First + 1 .. line'Last), " ")); end if; skiprest := True; end if; if not skiprest and then line (line'Last) = LAT.Colon then close_active_modifications; activemod := True; modport := HT.SUS (line (line'First .. line'Last - 1)); skiprest := True; end if; if not skiprest and then line (line'Last - 7 .. line'Last) = " changed" then close_active_modifications; activemod := True; modport := HT.SUS (line (line'First .. line'Last - 8)); skiprest := True; end if; end; end if; end; end loop; close_active_modifications; local_sorter.Sort (Container => changed); local_sorter.Sort (Container => missing); local_sorter.Sort (Container => leftover); TIO.Put_Line (trackers (id).log_handle, LAT.LF & "=> Checking for system changes " & description); if not leftover.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Left over files/directories:"); leftover.Iterate (Process => print'Access); end if; if not missing.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Missing files/directories:"); missing.Iterate (Process => print'Access); end if; if not changed.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Modified files/directories:"); changed.Iterate (Process => print'Access); end if; if passed then TIO.Put_Line (trackers (id).log_handle, "Everything is fine."); end if; return passed; end detect_leftovers_and_MIA; -------------------------------------------------------------------------------------------- -- generic_execute -------------------------------------------------------------------------------------------- function generic_execute (id : builders; command : String; dogbite : out Boolean; time_limit : execution_limit) return Boolean is subtype time_cycle is execution_limit range 1 .. time_limit; subtype one_minute is Positive range 1 .. 230; -- lose 10 in rounding type dim_watchdog is array (time_cycle) of Natural; use type Unix.process_exit; watchdog : dim_watchdog; squirrel : time_cycle := time_cycle'First; cycle_done : Boolean := False; pid : Unix.pid_t; status : Unix.process_exit; lock_lines : Natural; quartersec : one_minute := one_minute'First; hangmonitor : constant Boolean := True and then not trackers (id).disable_dog; truecommand : constant String := ravenexec & " " & LOG.log_name (trackers (id).seq_id) & " " & command; begin dogbite := False; watchdog (squirrel) := trackers (id).loglines; pid := Unix.launch_process (truecommand); if Unix.fork_failed (pid) then return False; end if; loop delay 0.25; if quartersec = one_minute'Last then quartersec := one_minute'First; -- increment squirrel if squirrel = time_cycle'Last then squirrel := time_cycle'First; cycle_done := True; else squirrel := squirrel + 1; end if; if hangmonitor then lock_lines := trackers (id).loglines; if cycle_done then if watchdog (squirrel) = lock_lines then -- Log hasn't advanced in a full cycle so bail out dogbite := True; Unix.kill_process_tree (process_group => pid); delay 5.0; -- Give some time for error to write to log return False; end if; end if; watchdog (squirrel) := lock_lines; end if; else quartersec := quartersec + 1; end if; status := Unix.process_status (pid); if status = Unix.exited_normally then return True; end if; if status = Unix.exited_with_error then return False; end if; end loop; end generic_execute; -------------------------------------------------------------------------------------------- -- watchdog_message -------------------------------------------------------------------------------------------- function watchdog_message (minutes : execution_limit) return String is begin return "### Watchdog killed runaway process! (no activity for" & minutes'Img & " minutes) ###"; end watchdog_message; -------------------------------------------------------------------------------------------- -- assemble_history_record -------------------------------------------------------------------------------------------- function assemble_history_record (slave : builders; pid : port_id; action : Display.history_action) return Display.history_rec is HR : Display.history_rec; HOLast : constant Natural := Display.history_origin'Last; catport : String := get_port_variant (pid); hyphens : constant Display.history_elapsed := "--:--:--"; begin HR.id := slave; HR.slavid := HT.zeropad (Integer (slave), 2); HR.established := True; HR.action := action; HR.origin := (others => ' '); HR.run_elapsed := LOG.elapsed_now; if action = Display.action_shutdown then HR.pkg_elapsed := hyphens; else if action = Display.action_skipped or else action = Display.action_ignored then HR.pkg_elapsed := hyphens; else HR.pkg_elapsed := LOG.elapsed_HH_MM_SS (start => trackers (slave).head_time, stop => trackers (slave).tail_time); end if; if catport'Last > HOLast then HR.origin (1 .. HOLast - 1) := catport (1 .. HOLast - 1); HR.origin (HOLast) := LAT.Asterisk; else HR.origin (1 .. catport'Last) := catport; end if; end if; return HR; end assemble_history_record; -------------------------------------------------------------------------------------------- -- set_log_lines -------------------------------------------------------------------------------------------- procedure set_log_lines (id : builders) is log_path : constant String := LOG.log_name (trackers (id).seq_id); command : constant String := HT.USS (PM.configuration.dir_sysroot) & "/usr/bin/wc -l " & log_path; begin declare numtext : constant String := HT.part_1 (S => HT.trim (generic_system_command (command)), separator => " "); begin trackers (id).loglines := Natural'Value (numtext); end; exception when others => null; -- just skip this cycle end set_log_lines; -------------------------------------------------------------------------------------------- -- elapsed_build -------------------------------------------------------------------------------------------- function elapsed_build (id : builders) return String is begin return LOG.elapsed_HH_MM_SS (start => trackers (id).head_time, stop => trackers (id).tail_time); end elapsed_build; -------------------------------------------------------------------------------------------- -- run_makesum -------------------------------------------------------------------------------------------- procedure run_makesum (id : builders; ssl_variant : String) is root : constant String := get_root (id); distinfo : constant String := root & "/port/distinfo"; locfile : constant String := "distinfo"; environ : constant String := environment_override (False, ssl_variant); command : constant String := PM.chroot_cmd & root & environ & chroot_make_program & " -C /port makesum"; content : HT.Text; status : Integer; use type DIR.File_Size, DIR.File_Kind; begin content := Unix.piped_command (command, status); if status = 0 then if DIR.Exists (distinfo) then if not HT.IsBlank (content) then TIO.Put_Line (HT.USS (content)); end if; if DIR.Size (distinfo) = DIR.File_Size (0) then -- The generated distinfo file is empty -- Not only do we not copy it over, let's erase the port's distinfo -- file if it exists if DIR.Exists (locfile) and then DIR.Kind (locfile) = DIR.Ordinary_File then DIR.Delete_File (locfile); end if; else TIO.Put_Line ("Copying " & distinfo & " to current directory"); DIR.Copy_File (distinfo, locfile); end if; else TIO.Put_Line ("####### failure, distinfo not found #######"); end if; else TIO.Put_Line ("####### MAKESUM COMMAND FAILED #######"); TIO.Put_Line ("hint 1: Check SITES array contents are valid and accessible"); TIO.Put_Line ("hint 2: Check that all distfile names are correct."); end if; end run_makesum; -------------------------------------------------------------------------------------------- -- run_patch_regen -------------------------------------------------------------------------------------------- procedure run_patch_regen (id : builders; sourceloc : String; ssl_variant : String) is function get_wrksrc return String; function get_strip_component return String; procedure copy_files (subdir : String; pattern : String); root : constant String := get_root (id); environ : constant String := environment_override (False, ssl_variant); premake : constant String := PM.chroot_cmd & root & environ & chroot_make_program & " -C /port "; cextract : constant String := premake & "extract"; cpatch : constant String := premake & "do-patch"; function get_wrksrc return String is command : constant String := premake & " -V WRKSRC"; result : constant String := generic_system_command (command); begin return HT.first_line (result); end get_wrksrc; function get_strip_component return String is command : constant String := premake & " -V PATCH_STRIP:S/-p//"; result : constant String := generic_system_command (command); begin declare raw : constant String := HT.first_line (result); snumber : Integer; begin snumber := Integer'Value (raw); return HT.int2str (snumber); exception when others => TIO.Put_Line ("Failed to convert '" & raw & "' to an integer; going with '0'"); return "0"; end; end get_strip_component; procedure copy_files (subdir : String; pattern : String) is shinydir : constant String := root & "/tmp/shiny"; begin if sourceloc = "" then FOP.replace_directory_contents (shinydir, subdir, pattern); else FOP.replace_directory_contents (shinydir, sourceloc & "/" & subdir, pattern); end if; end copy_files; cregen : constant String := PM.chroot_cmd & root & " /bin/sh /xports/Mk/Scripts/repatch.sh " & get_wrksrc & " " & get_strip_component; begin if DIR.Exists (root & "/port/patches") or else DIR.Exists (root & "/port/opsys") then if Unix.external_command (cextract) then if Unix.external_command (cpatch) then if Unix.external_command (cregen) then -- copy contents of /tmp/shiny to sourceloc/patches and sourceloc/files copy_files ("patches", "patch-*"); copy_files ("dragonfly", "patch-*"); copy_files ("freebsd", "patch-*"); copy_files ("linux", "patch-*"); copy_files ("files", "extra-patch-*"); else TIO.Put_Line ("patch regen: failed to regenerate patches"); end if; else TIO.Put_Line ("patch regen: failed to apply patches"); end if; else TIO.Put_Line ("patch regen: failed to extract distfile"); end if; else TIO.Put_Line ("This port has no patches to regenerated."); end if; end run_patch_regen; -------------------------------------------------------------------------------------------- -- get_port_prefix -------------------------------------------------------------------------------------------- function get_port_prefix (id : builders; environ : String) return String is root : constant String := get_root (id); command : constant String := PM.chroot_cmd & root & environ & chroot_make_program & " -C /port -V PREFIX"; result : constant String := generic_system_command (command); begin return HT.first_line (result); end get_port_prefix; end PortScan.Buildcycle;
with Ada.Exceptions; with Ada.Text_IO; with Ada.Strings.Wide_Fixed; with Ada.Wide_Text_IO; with Ada.Wide_Text_IO.Wide_Unbounded_IO; with Symbex.Lex; with Symbex.Parse; with Symbex.Walk; procedure Dump is package Exceptions renames Ada.Exceptions; package IO renames Ada.Text_IO; package Lex renames Symbex.Lex; package Parse renames Symbex.Parse; package Walk renames Symbex.Walk; package WIO renames Ada.Wide_Text_IO; package WUIO renames Ada.Wide_Text_IO.Wide_Unbounded_IO; package Fixed renames Ada.Strings.Wide_Fixed; use type Lex.Lexer_Status_t; use type Lex.Lexer_t; use type Lex.Token_Kind_t; use type Parse.Tree_Status_t; use type Parse.List_Depth_t; use type Parse.List_Length_t; use type Walk.Walk_Status_t; Done : Boolean; Lexer_State : Lex.Lexer_t; Lexer_Status : Lex.Lexer_Status_t; Token : Lex.Token_t; Tree : Parse.Tree_t; Tree_Status : Parse.Tree_Status_t; Failure : exception; -- -- Read one character from standard input. -- procedure Read_Character (Item : out Wide_Character; Status : out Lex.Stream_Status_t) is begin WIO.Get_Immediate (File => WIO.Current_Input, Item => Item); Status := Lex.Stream_OK; exception when WIO.End_Error => Status := Lex.Stream_EOF; when others => Status := Lex.Stream_Error; end Read_Character; procedure Get_Lexer_Token is new Lex.Get_Token (Read_Item => Read_Character); -- -- Walk tree. -- Indent : Natural := 0; procedure Handle_List_Open (List_ID : in Parse.List_ID_t; Depth : in Parse.List_Depth_t; Status : out Walk.Walk_Status_t) is pragma Assert (List_ID'Valid); pragma Assert (Depth'Valid); begin if Depth > 1 then WIO.New_Line; WIO.Put (Fixed."*" (Indent, " ") & "("); Indent := Indent + 2; end if; Status := Walk.Walk_Continue; end Handle_List_Open; procedure Handle_Symbol (Name : in Parse.Node_Symbol_Name_t; List_ID : in Parse.List_ID_t; List_Position : in Parse.List_Position_t; List_Length : in Parse.List_Length_t; Status : out Walk.Walk_Status_t) is pragma Assert (List_ID'Valid); pragma Assert (List_Position'Valid); pragma Assert (List_Length'Valid); begin WUIO.Put (Name); if Parse.List_Length_t (List_Position) /= List_Length then WIO.Put (" "); end if; Status := Walk.Walk_Continue; end Handle_Symbol; procedure Handle_String (Data : in Parse.Node_String_Data_t; List_ID : in Parse.List_ID_t; List_Position : in Parse.List_Position_t; List_Length : in Parse.List_Length_t; Status : out Walk.Walk_Status_t) is pragma Assert (List_ID'Valid); pragma Assert (List_Position'Valid); pragma Assert (List_Length'Valid); begin WIO.Put (""""); WUIO.Put (Data); WIO.Put (""""); if Parse.List_Length_t (List_Position) /= List_Length then WIO.Put (" "); end if; Status := Walk.Walk_Continue; end Handle_String; procedure Handle_List_Close (List_ID : in Parse.List_ID_t; Depth : in Parse.List_Depth_t; Status : out Walk.Walk_Status_t) is pragma Assert (List_ID'Valid); pragma Assert (Depth'Valid); begin if Depth > 1 then WIO.Put (")"); WIO.New_Line; Indent := Indent - 2; end if; Status := Walk.Walk_Continue; end Handle_List_Close; procedure Dump_Tree is new Symbex.Walk.Walk_Tree (Handle_List_Open => Handle_List_Open, Handle_Symbol => Handle_Symbol, Handle_String => Handle_String, Handle_List_Close => Handle_List_Close); Walk_Status : Walk.Walk_Status_t; begin Done := False; Lexer_Status := Lex.Lexer_OK; Lex.Initialize_Lexer (Lexer => Lexer_State, Status => Lexer_Status); pragma Assert (Lexer_Status = Lex.Lexer_OK); Parse.Initialize_Tree (Tree => Tree, Status => Tree_Status); pragma Assert (Tree_Status = Parse.Tree_OK); -- Parse loop. loop exit when Done; Get_Lexer_Token (Lexer => Lexer_State, Token => Token, Status => Lexer_Status); if Lexer_Status in Lex.Lexer_Error_Status_t then raise Failure with Lex.Lexer_Error_Status_t'Image (Lexer_Status); else if Lexer_Status = Lex.Lexer_OK then if Token.Kind = Lex.Token_EOF then Done := True; end if; -- Consume token. Parse.Process_Token (Tree => Tree, Token => Token, Status => Tree_Status); if Tree_Status in Parse.Tree_Error_Status_t then raise Failure with Parse.Tree_Error_Status_t'Image (Tree_Status); end if; end if; end if; end loop; -- Dump tree. Dump_Tree (Tree => Tree, Status => Walk_Status); pragma Assert (Walk_Status = Walk.Walk_Continue); exception when E : Failure => IO.Put_Line ("error: " & Exceptions.Exception_Message (E)); end Dump;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 5 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. 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. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order by RM -- section rather than alphabetical. with Sinfo.CN; use Sinfo.CN; separate (Par) package body Ch5 is -- Local functions, used only in this chapter function P_Case_Statement return Node_Id; function P_Case_Statement_Alternative return Node_Id; function P_Exit_Statement return Node_Id; function P_Goto_Statement return Node_Id; function P_If_Statement return Node_Id; function P_Label return Node_Id; function P_Null_Statement return Node_Id; function P_Assignment_Statement (LHS : Node_Id) return Node_Id; -- Parse assignment statement. On entry, the caller has scanned the left -- hand side (passed in as Lhs), and the colon-equal (or some symbol -- taken to be an error equivalent such as equal). function P_Begin_Statement (Block_Name : Node_Id := Empty) return Node_Id; -- Parse begin-end statement. If Block_Name is non-Empty on entry, it is -- the N_Identifier node for the label on the block. If Block_Name is -- Empty on entry (the default), then the block statement is unlabeled. function P_Declare_Statement (Block_Name : Node_Id := Empty) return Node_Id; -- Parse declare block. If Block_Name is non-Empty on entry, it is -- the N_Identifier node for the label on the block. If Block_Name is -- Empty on entry (the default), then the block statement is unlabeled. function P_For_Statement (Loop_Name : Node_Id := Empty) return Node_Id; -- Parse for statement. If Loop_Name is non-Empty on entry, it is -- the N_Identifier node for the label on the loop. If Loop_Name is -- Empty on entry (the default), then the for statement is unlabeled. function P_Iterator_Specification (Def_Id : Node_Id) return Node_Id; -- Parse an iterator specification. The defining identifier has already -- been scanned, as it is the common prefix between loop and iterator -- specification. function P_Loop_Statement (Loop_Name : Node_Id := Empty) return Node_Id; -- Parse loop statement. If Loop_Name is non-Empty on entry, it is -- the N_Identifier node for the label on the loop. If Loop_Name is -- Empty on entry (the default), then the loop statement is unlabeled. function P_While_Statement (Loop_Name : Node_Id := Empty) return Node_Id; -- Parse while statement. If Loop_Name is non-Empty on entry, it is -- the N_Identifier node for the label on the loop. If Loop_Name is -- Empty on entry (the default), then the while statement is unlabeled. function Set_Loop_Block_Name (L : Character) return Name_Id; -- Given a letter 'L' for a loop or 'B' for a block, returns a name -- of the form L_nn or B_nn where nn is a serial number obtained by -- incrementing the variable Loop_Block_Count. procedure Then_Scan; -- Scan past THEN token, testing for illegal junk after it --------------------------------- -- 5.1 Sequence of Statements -- --------------------------------- -- SEQUENCE_OF_STATEMENTS ::= STATEMENT {STATEMENT} {LABEL} -- Note: the final label is an Ada 2012 addition. -- STATEMENT ::= -- {LABEL} SIMPLE_STATEMENT | {LABEL} COMPOUND_STATEMENT -- SIMPLE_STATEMENT ::= NULL_STATEMENT -- | ASSIGNMENT_STATEMENT | EXIT_STATEMENT -- | GOTO_STATEMENT | PROCEDURE_CALL_STATEMENT -- | RETURN_STATEMENT | ENTRY_CALL_STATEMENT -- | REQUEUE_STATEMENT | DELAY_STATEMENT -- | ABORT_STATEMENT | RAISE_STATEMENT -- | CODE_STATEMENT -- COMPOUND_STATEMENT ::= -- IF_STATEMENT | CASE_STATEMENT -- | LOOP_STATEMENT | BLOCK_STATEMENT -- | ACCEPT_STATEMENT | SELECT_STATEMENT -- This procedure scans a sequence of statements. The caller sets SS_Flags -- to indicate acceptable termination conditions for the sequence: -- SS_Flags.Eftm Terminate on ELSIF -- SS_Flags.Eltm Terminate on ELSE -- SS_Flags.Extm Terminate on EXCEPTION -- SS_Flags.Ortm Terminate on OR -- SS_Flags.Tatm Terminate on THEN ABORT (Token = ABORT on return) -- SS_Flags.Whtm Terminate on WHEN -- SS_Flags.Unco Unconditional terminate after scanning one statement -- In addition, the scan is always terminated by encountering END or the -- end of file (EOF) condition. If one of the six above terminators is -- encountered with the corresponding SS_Flags flag not set, then the -- action taken is as follows: -- If the keyword occurs to the left of the expected column of the end -- for the current sequence (as recorded in the current end context), -- then it is assumed to belong to an outer context, and is considered -- to terminate the sequence of statements. -- If the keyword occurs to the right of, or in the expected column of -- the end for the current sequence, then an error message is output, -- the keyword together with its associated context is skipped, and -- the statement scan continues until another terminator is found. -- Note that the first action means that control can return to the caller -- with Token set to a terminator other than one of those specified by the -- SS parameter. The caller should treat such a case as equivalent to END. -- In addition, the flag SS_Flags.Sreq is set to True to indicate that at -- least one real statement (other than a pragma) is required in the -- statement sequence. During the processing of the sequence, this -- flag is manipulated to indicate the current status of the requirement -- for a statement. For example, it is turned off by the occurrence of a -- statement, and back on by a label (which requires a following statement) -- Error recovery: cannot raise Error_Resync. If an error occurs during -- parsing a statement, then the scan pointer is advanced past the next -- semicolon and the parse continues. function P_Sequence_Of_Statements (SS_Flags : SS_Rec) return List_Id is Statement_Required : Boolean; -- This flag indicates if a subsequent statement (other than a pragma) -- is required. It is initialized from the Sreq flag, and modified as -- statements are scanned (a statement turns it off, and a label turns -- it back on again since a statement must follow a label). -- Note : this final requirement is lifted in Ada 2012. Statement_Seen : Boolean; -- In Ada 2012, a label can end a sequence of statements, but the -- sequence cannot contain only labels. This flag is set whenever a -- label is encountered, to enforce this rule at the end of a sequence. Declaration_Found : Boolean := False; -- This flag is set True if a declaration is encountered, so that the -- error message about declarations in the statement part is only -- given once for a given sequence of statements. Scan_State_Label : Saved_Scan_State; Scan_State : Saved_Scan_State; Statement_List : List_Id; Block_Label : Name_Id; Id_Node : Node_Id; Name_Node : Node_Id; procedure Junk_Declaration; -- Procedure called to handle error of declaration encountered in -- statement sequence. procedure Test_Statement_Required; -- Flag error if Statement_Required flag set ---------------------- -- Junk_Declaration -- ---------------------- procedure Junk_Declaration is begin if (not Declaration_Found) or All_Errors_Mode then Error_Msg_SC -- CODEFIX ("declarations must come before BEGIN"); Declaration_Found := True; end if; Skip_Declaration (Statement_List); end Junk_Declaration; ----------------------------- -- Test_Statement_Required -- ----------------------------- procedure Test_Statement_Required is function All_Pragmas return Boolean; -- Return True if statement list is all pragmas ----------------- -- All_Pragmas -- ----------------- function All_Pragmas return Boolean is S : Node_Id; begin S := First (Statement_List); while Present (S) loop if Nkind (S) /= N_Pragma then return False; else Next (S); end if; end loop; return True; end All_Pragmas; -- Start of processing for Test_Statement_Required begin if Statement_Required then -- Check no statement required after label in Ada 2012, and that -- it is OK to have nothing but pragmas in a statement sequence. if Ada_Version >= Ada_2012 and then not Is_Empty_List (Statement_List) and then ((Nkind (Last (Statement_List)) = N_Label and then Statement_Seen) or else All_Pragmas) then -- This Ada 2012 construct not allowed in a compiler unit Check_Compiler_Unit ("null statement list", Token_Ptr); declare Null_Stm : constant Node_Id := Make_Null_Statement (Token_Ptr); begin Set_Comes_From_Source (Null_Stm, False); Append_To (Statement_List, Null_Stm); end; -- If not Ada 2012, or not special case above, give error message else Error_Msg_BC -- CODEFIX ("statement expected"); end if; end if; end Test_Statement_Required; -- Start of processing for P_Sequence_Of_Statements begin Statement_List := New_List; Statement_Required := SS_Flags.Sreq; Statement_Seen := False; loop Ignore (Tok_Semicolon); begin if Style_Check then Style.Check_Indentation; end if; -- Deal with reserved identifier (in assignment or call) if Is_Reserved_Identifier then Save_Scan_State (Scan_State); -- at possible bad identifier Scan; -- and scan past it -- We have an reserved word which is spelled in identifier -- style, so the question is whether it really is intended -- to be an identifier. if -- If followed by a semicolon, then it is an identifier, -- with the exception of the cases tested for below. (Token = Tok_Semicolon and then Prev_Token /= Tok_Return and then Prev_Token /= Tok_Null and then Prev_Token /= Tok_Raise and then Prev_Token /= Tok_End and then Prev_Token /= Tok_Exit) -- If followed by colon, colon-equal, or dot, then we -- definitely have an identifier (could not be reserved) or else Token = Tok_Colon or else Token = Tok_Colon_Equal or else Token = Tok_Dot -- Left paren means we have an identifier except for those -- reserved words that can legitimately be followed by a -- left paren. or else (Token = Tok_Left_Paren and then Prev_Token /= Tok_Case and then Prev_Token /= Tok_Delay and then Prev_Token /= Tok_If and then Prev_Token /= Tok_Elsif and then Prev_Token /= Tok_Return and then Prev_Token /= Tok_When and then Prev_Token /= Tok_While and then Prev_Token /= Tok_Separate) then -- Here we have an apparent reserved identifier and the -- token past it is appropriate to this usage (and would -- be a definite error if this is not an identifier). What -- we do is to use P_Identifier to fix up the identifier, -- and then fall into the normal processing. Restore_Scan_State (Scan_State); -- back to the ID Scan_Reserved_Identifier (Force_Msg => False); -- Not a reserved identifier after all (or at least we can't -- be sure that it is), so reset the scan and continue. else Restore_Scan_State (Scan_State); -- back to the reserved word end if; end if; -- Now look to see what kind of statement we have case Token is -- Case of end or EOF when Tok_End | Tok_EOF => -- These tokens always terminate the statement sequence Test_Statement_Required; exit; -- Case of ELSIF when Tok_Elsif => -- Terminate if Eftm set or if the ELSIF is to the left -- of the expected column of the end for this sequence if SS_Flags.Eftm or else Start_Column < Scope.Table (Scope.Last).Ecol then Test_Statement_Required; exit; -- Otherwise complain and skip past ELSIF Condition then else Error_Msg_SC ("ELSIF not allowed here"); Scan; -- past ELSIF Discard_Junk_Node (P_Expression_No_Right_Paren); Then_Scan; Statement_Required := False; end if; -- Case of ELSE when Tok_Else => -- Terminate if Eltm set or if the else is to the left -- of the expected column of the end for this sequence if SS_Flags.Eltm or else Start_Column < Scope.Table (Scope.Last).Ecol then Test_Statement_Required; exit; -- Otherwise complain and skip past else else Error_Msg_SC ("ELSE not allowed here"); Scan; -- past ELSE Statement_Required := False; end if; -- Case of exception when Tok_Exception => Test_Statement_Required; -- If Extm not set and the exception is not to the left of -- the expected column of the end for this sequence, then we -- assume it belongs to the current sequence, even though it -- is not permitted. if not SS_Flags.Extm and then Start_Column >= Scope.Table (Scope.Last).Ecol then Error_Msg_SC ("exception handler not permitted here"); Scan; -- past EXCEPTION Discard_Junk_List (Parse_Exception_Handlers); end if; -- Always return, in the case where we scanned out handlers -- that we did not expect, Parse_Exception_Handlers returned -- with Token being either end or EOF, so we are OK. exit; -- Case of OR when Tok_Or => -- Terminate if Ortm set or if the or is to the left of the -- expected column of the end for this sequence. if SS_Flags.Ortm or else Start_Column < Scope.Table (Scope.Last).Ecol then Test_Statement_Required; exit; -- Otherwise complain and skip past or else Error_Msg_SC ("OR not allowed here"); Scan; -- past or Statement_Required := False; end if; -- Case of THEN (deal also with THEN ABORT) when Tok_Then => Save_Scan_State (Scan_State); -- at THEN Scan; -- past THEN -- Terminate if THEN ABORT allowed (ATC case) exit when SS_Flags.Tatm and then Token = Tok_Abort; -- Otherwise we treat THEN as some kind of mess where we did -- not see the associated IF, but we pick up assuming it had -- been there. Restore_Scan_State (Scan_State); -- to THEN Append_To (Statement_List, P_If_Statement); Statement_Required := False; -- Case of WHEN (error because we are not in a case) when Tok_Others | Tok_When => -- Terminate if Whtm set or if the WHEN is to the left of -- the expected column of the end for this sequence. if SS_Flags.Whtm or else Start_Column < Scope.Table (Scope.Last).Ecol then Test_Statement_Required; exit; -- Otherwise complain and skip when Choice {| Choice} => else Error_Msg_SC ("WHEN not allowed here"); Scan; -- past when Discard_Junk_List (P_Discrete_Choice_List); TF_Arrow; Statement_Required := False; end if; -- Cases of statements starting with an identifier when Tok_Identifier => Check_Bad_Layout; -- Save scan pointers and line number in case block label Id_Node := Token_Node; Block_Label := Token_Name; Save_Scan_State (Scan_State_Label); -- at possible label Scan; -- past Id -- Check for common case of assignment, since it occurs -- frequently, and we want to process it efficiently. if Token = Tok_Colon_Equal then Scan; -- past the colon-equal Append_To (Statement_List, P_Assignment_Statement (Id_Node)); Statement_Required := False; -- Check common case of procedure call, another case that -- we want to speed up as much as possible. elsif Token = Tok_Semicolon then Change_Name_To_Procedure_Call_Statement (Id_Node); Append_To (Statement_List, Id_Node); Scan; -- past semicolon Statement_Required := False; -- Here is the special test for a suspicious label, more -- accurately a suspicious name, which we think perhaps -- should have been a label. If next token is one of -- LOOP, FOR, WHILE, DECLARE, BEGIN, then make an entry -- in the suspicious label table. if Token = Tok_Loop or else Token = Tok_For or else Token = Tok_While or else Token = Tok_Declare or else Token = Tok_Begin then Suspicious_Labels.Append ((Proc_Call => Id_Node, Semicolon_Loc => Prev_Token_Ptr, Start_Token => Token_Ptr)); end if; -- Check for case of "go to" in place of "goto" elsif Token = Tok_Identifier and then Block_Label = Name_Go and then Token_Name = Name_To then Error_Msg_SP -- CODEFIX ("goto is one word"); Append_To (Statement_List, P_Goto_Statement); Statement_Required := False; -- Check common case of = used instead of :=, just so we -- give a better error message for this special misuse. elsif Token = Tok_Equal then T_Colon_Equal; -- give := expected message Append_To (Statement_List, P_Assignment_Statement (Id_Node)); Statement_Required := False; -- Check case of loop label or block label elsif Token = Tok_Colon or else (Token in Token_Class_Labeled_Stmt and then not Token_Is_At_Start_Of_Line) then T_Colon; -- past colon (if there, or msg for missing one) -- Test for more than one label loop exit when Token /= Tok_Identifier; Save_Scan_State (Scan_State); -- at second Id Scan; -- past Id if Token = Tok_Colon then Error_Msg_SP ("only one label allowed on block or loop"); Scan; -- past colon on extra label -- Use the second label as the "real" label Scan_State_Label := Scan_State; -- We will set Error_name as the Block_Label since -- we really don't know which of the labels might -- be used at the end of the loop or block. Block_Label := Error_Name; -- If Id with no colon, then backup to point to the -- Id and we will issue the message below when we try -- to scan out the statement as some other form. else Restore_Scan_State (Scan_State); -- to second Id exit; end if; end loop; -- Loop_Statement (labeled Loop_Statement) if Token = Tok_Loop then Append_To (Statement_List, P_Loop_Statement (Id_Node)); -- While statement (labeled loop statement with WHILE) elsif Token = Tok_While then Append_To (Statement_List, P_While_Statement (Id_Node)); -- Declare statement (labeled block statement with -- DECLARE part) elsif Token = Tok_Declare then Append_To (Statement_List, P_Declare_Statement (Id_Node)); -- Begin statement (labeled block statement with no -- DECLARE part) elsif Token = Tok_Begin then Append_To (Statement_List, P_Begin_Statement (Id_Node)); -- For statement (labeled loop statement with FOR) elsif Token = Tok_For then Append_To (Statement_List, P_For_Statement (Id_Node)); -- Improper statement follows label. If we have an -- expression token, then assume the colon was part -- of a misplaced declaration. elsif Token not in Token_Class_Eterm then Restore_Scan_State (Scan_State_Label); Junk_Declaration; -- Otherwise complain we have inappropriate statement else Error_Msg_AP ("loop or block statement must follow label"); end if; Statement_Required := False; -- Here we have an identifier followed by something -- other than a colon, semicolon or assignment symbol. -- The only valid possibility is a name extension symbol elsif Token in Token_Class_Namext then Restore_Scan_State (Scan_State_Label); -- to Id Name_Node := P_Name; -- Skip junk right parens in this context Ignore (Tok_Right_Paren); -- Check context following call if Token = Tok_Colon_Equal then Scan; -- past colon equal Append_To (Statement_List, P_Assignment_Statement (Name_Node)); Statement_Required := False; -- Check common case of = used instead of := elsif Token = Tok_Equal then T_Colon_Equal; -- give := expected message Append_To (Statement_List, P_Assignment_Statement (Name_Node)); Statement_Required := False; -- Check apostrophe cases elsif Token = Tok_Apostrophe then Append_To (Statement_List, P_Code_Statement (Name_Node)); Statement_Required := False; -- The only other valid item after a name is ; which -- means that the item we just scanned was a call. elsif Token = Tok_Semicolon then Change_Name_To_Procedure_Call_Statement (Name_Node); Append_To (Statement_List, Name_Node); Scan; -- past semicolon Statement_Required := False; -- A slash following an identifier or a selected -- component in this situation is most likely a period -- (see location of keys on keyboard). elsif Token = Tok_Slash and then (Nkind (Name_Node) = N_Identifier or else Nkind (Name_Node) = N_Selected_Component) then Error_Msg_SC -- CODEFIX ("""/"" should be ""."""); Statement_Required := False; raise Error_Resync; -- Else we have a missing semicolon else TF_Semicolon; -- Normal processing as though semicolon were present Change_Name_To_Procedure_Call_Statement (Name_Node); Append_To (Statement_List, Name_Node); Statement_Required := False; end if; -- If junk after identifier, check if identifier is an -- instance of an incorrectly spelled keyword. If so, we -- do nothing. The Bad_Spelling_Of will have reset Token -- to the appropriate keyword, so the next time round the -- loop we will process the modified token. Note that we -- check for ELSIF before ELSE here. That's not accidental. -- We don't want to identify a misspelling of ELSE as -- ELSIF, and in particular we do not want to treat ELSEIF -- as ELSE IF. else Restore_Scan_State (Scan_State_Label); -- to identifier if Bad_Spelling_Of (Tok_Abort) or else Bad_Spelling_Of (Tok_Accept) or else Bad_Spelling_Of (Tok_Case) or else Bad_Spelling_Of (Tok_Declare) or else Bad_Spelling_Of (Tok_Delay) or else Bad_Spelling_Of (Tok_Elsif) or else Bad_Spelling_Of (Tok_Else) or else Bad_Spelling_Of (Tok_End) or else Bad_Spelling_Of (Tok_Exception) or else Bad_Spelling_Of (Tok_Exit) or else Bad_Spelling_Of (Tok_For) or else Bad_Spelling_Of (Tok_Goto) or else Bad_Spelling_Of (Tok_If) or else Bad_Spelling_Of (Tok_Loop) or else Bad_Spelling_Of (Tok_Or) or else Bad_Spelling_Of (Tok_Pragma) or else Bad_Spelling_Of (Tok_Raise) or else Bad_Spelling_Of (Tok_Requeue) or else Bad_Spelling_Of (Tok_Return) or else Bad_Spelling_Of (Tok_Select) or else Bad_Spelling_Of (Tok_When) or else Bad_Spelling_Of (Tok_While) then null; -- If not a bad spelling, then we really have junk else Scan; -- past identifier again -- If next token is first token on line, then we -- consider that we were missing a semicolon after -- the identifier, and process it as a procedure -- call with no parameters. if Token_Is_At_Start_Of_Line then Change_Name_To_Procedure_Call_Statement (Id_Node); Append_To (Statement_List, Id_Node); T_Semicolon; -- to give error message Statement_Required := False; -- Otherwise we give a missing := message and -- simply abandon the junk that is there now. else T_Colon_Equal; -- give := expected message raise Error_Resync; end if; end if; end if; -- Statement starting with operator symbol. This could be -- a call, a name starting an assignment, or a qualified -- expression. when Tok_Operator_Symbol => Check_Bad_Layout; Name_Node := P_Name; -- An attempt at a range attribute or a qualified expression -- must be illegal here (a code statement cannot possibly -- allow qualification by a function name). if Token = Tok_Apostrophe then Error_Msg_SC ("apostrophe illegal here"); raise Error_Resync; end if; -- Scan possible assignment if we have a name if Expr_Form = EF_Name and then Token = Tok_Colon_Equal then Scan; -- past colon equal Append_To (Statement_List, P_Assignment_Statement (Name_Node)); else Change_Name_To_Procedure_Call_Statement (Name_Node); Append_To (Statement_List, Name_Node); end if; TF_Semicolon; Statement_Required := False; -- Label starting with << which must precede real statement -- Note: in Ada 2012, the label may end the sequence. when Tok_Less_Less => if Present (Last (Statement_List)) and then Nkind (Last (Statement_List)) /= N_Label then Statement_Seen := True; end if; Append_To (Statement_List, P_Label); Statement_Required := True; -- Pragma appearing as a statement in a statement sequence when Tok_Pragma => Check_Bad_Layout; Append_To (Statement_List, P_Pragma); -- Abort_Statement when Tok_Abort => Check_Bad_Layout; Append_To (Statement_List, P_Abort_Statement); Statement_Required := False; -- Accept_Statement when Tok_Accept => Check_Bad_Layout; Append_To (Statement_List, P_Accept_Statement); Statement_Required := False; -- Begin_Statement (Block_Statement with no declare, no label) when Tok_Begin => Check_Bad_Layout; Append_To (Statement_List, P_Begin_Statement); Statement_Required := False; -- Case_Statement when Tok_Case => Check_Bad_Layout; Append_To (Statement_List, P_Case_Statement); Statement_Required := False; -- Block_Statement with DECLARE and no label when Tok_Declare => Check_Bad_Layout; Append_To (Statement_List, P_Declare_Statement); Statement_Required := False; -- Delay_Statement when Tok_Delay => Check_Bad_Layout; Append_To (Statement_List, P_Delay_Statement); Statement_Required := False; -- Exit_Statement when Tok_Exit => Check_Bad_Layout; Append_To (Statement_List, P_Exit_Statement); Statement_Required := False; -- Loop_Statement with FOR and no label when Tok_For => Check_Bad_Layout; Append_To (Statement_List, P_For_Statement); Statement_Required := False; -- Goto_Statement when Tok_Goto => Check_Bad_Layout; Append_To (Statement_List, P_Goto_Statement); Statement_Required := False; -- If_Statement when Tok_If => Check_Bad_Layout; Append_To (Statement_List, P_If_Statement); Statement_Required := False; -- Loop_Statement when Tok_Loop => Check_Bad_Layout; Append_To (Statement_List, P_Loop_Statement); Statement_Required := False; -- Null_Statement when Tok_Null => Check_Bad_Layout; Append_To (Statement_List, P_Null_Statement); Statement_Required := False; -- Raise_Statement when Tok_Raise => Check_Bad_Layout; Append_To (Statement_List, P_Raise_Statement); Statement_Required := False; -- Requeue_Statement when Tok_Requeue => Check_Bad_Layout; Append_To (Statement_List, P_Requeue_Statement); Statement_Required := False; -- Return_Statement when Tok_Return => Check_Bad_Layout; Append_To (Statement_List, P_Return_Statement); Statement_Required := False; -- Select_Statement when Tok_Select => Check_Bad_Layout; Append_To (Statement_List, P_Select_Statement); Statement_Required := False; -- While_Statement (Block_Statement with while and no loop) when Tok_While => Check_Bad_Layout; Append_To (Statement_List, P_While_Statement); Statement_Required := False; -- Anything else is some kind of junk, signal an error message -- and then raise Error_Resync, to merge with the normal -- handling of a bad statement. when others => if Token in Token_Class_Declk then Junk_Declaration; else Error_Msg_BC -- CODEFIX ("statement expected"); raise Error_Resync; end if; end case; -- On error resynchronization, skip past next semicolon, and, since -- we are still in the statement loop, look for next statement. We -- set Statement_Required False to avoid an unnecessary error message -- complaining that no statement was found (i.e. we consider the -- junk to satisfy the requirement for a statement being present). exception when Error_Resync => Resync_Past_Semicolon_Or_To_Loop_Or_Then; Statement_Required := False; end; exit when SS_Flags.Unco; end loop; return Statement_List; end P_Sequence_Of_Statements; -------------------- -- 5.1 Statement -- -------------------- --------------------------- -- 5.1 Simple Statement -- --------------------------- -- Parsed by P_Sequence_Of_Statements (5.1) ----------------------------- -- 5.1 Compound Statement -- ----------------------------- -- Parsed by P_Sequence_Of_Statements (5.1) ------------------------- -- 5.1 Null Statement -- ------------------------- -- NULL_STATEMENT ::= null; -- The caller has already checked that the current token is null -- Error recovery: cannot raise Error_Resync function P_Null_Statement return Node_Id is Null_Stmt_Node : Node_Id; begin Null_Stmt_Node := New_Node (N_Null_Statement, Token_Ptr); Scan; -- past NULL TF_Semicolon; return Null_Stmt_Node; end P_Null_Statement; ---------------- -- 5.1 Label -- ---------------- -- LABEL ::= <<label_STATEMENT_IDENTIFIER>> -- STATEMENT_IDENTIFIER ::= DIRECT_NAME -- The IDENTIFIER of a STATEMENT_IDENTIFIER shall be an identifier -- (not an OPERATOR_SYMBOL) -- The caller has already checked that the current token is << -- Error recovery: can raise Error_Resync function P_Label return Node_Id is Label_Node : Node_Id; begin Label_Node := New_Node (N_Label, Token_Ptr); Scan; -- past << Set_Identifier (Label_Node, P_Identifier (C_Greater_Greater)); T_Greater_Greater; Append_Elmt (Label_Node, Label_List); return Label_Node; end P_Label; ------------------------------- -- 5.1 Statement Identifier -- ------------------------------- -- Statement label is parsed by P_Label (5.1) -- Loop label is parsed by P_Loop_Statement (5.5), P_For_Statement (5.5) -- or P_While_Statement (5.5) -- Block label is parsed by P_Begin_Statement (5.6) or -- P_Declare_Statement (5.6) ------------------------------- -- 5.2 Assignment Statement -- ------------------------------- -- ASSIGNMENT_STATEMENT ::= -- variable_NAME := EXPRESSION; -- Error recovery: can raise Error_Resync function P_Assignment_Statement (LHS : Node_Id) return Node_Id is Assign_Node : Node_Id; begin Assign_Node := New_Node (N_Assignment_Statement, Prev_Token_Ptr); Set_Name (Assign_Node, LHS); Set_Expression (Assign_Node, P_Expression_No_Right_Paren); TF_Semicolon; return Assign_Node; end P_Assignment_Statement; ----------------------- -- 5.3 If Statement -- ----------------------- -- IF_STATEMENT ::= -- if CONDITION then -- SEQUENCE_OF_STATEMENTS -- {elsif CONDITION then -- SEQUENCE_OF_STATEMENTS} -- [else -- SEQUENCE_OF_STATEMENTS] -- end if; -- The caller has checked that the initial token is IF (or in the error -- case of a mysterious THEN, the initial token may simply be THEN, in -- which case, no condition (or IF) was scanned). -- Error recovery: can raise Error_Resync function P_If_Statement return Node_Id is If_Node : Node_Id; Elsif_Node : Node_Id; Loc : Source_Ptr; procedure Add_Elsif_Part; -- An internal procedure used to scan out a single ELSIF part. On entry -- the ELSIF (or an ELSE which has been determined should be ELSIF) is -- scanned out and is in Prev_Token. procedure Check_If_Column; -- An internal procedure used to check that THEN, ELSE, or ELSIF -- appear in the right place if column checking is enabled (i.e. if -- they are the first token on the line, then they must appear in -- the same column as the opening IF). procedure Check_Then_Column; -- This procedure carries out the style checks for a THEN token -- Note that the caller has set Loc to the Source_Ptr value for -- the previous IF or ELSIF token. function Else_Should_Be_Elsif return Boolean; -- An internal routine used to do a special error recovery check when -- an ELSE is encountered. It determines if the ELSE should be treated -- as an ELSIF. A positive decision (TRUE returned, is made if the ELSE -- is followed by a sequence of tokens, starting on the same line as -- the ELSE, which are not expression terminators, followed by a THEN. -- On entry, the ELSE has been scanned out. procedure Add_Elsif_Part is begin if No (Elsif_Parts (If_Node)) then Set_Elsif_Parts (If_Node, New_List); end if; Elsif_Node := New_Node (N_Elsif_Part, Prev_Token_Ptr); Loc := Prev_Token_Ptr; Set_Condition (Elsif_Node, P_Condition); Check_Then_Column; Then_Scan; Set_Then_Statements (Elsif_Node, P_Sequence_Of_Statements (SS_Eftm_Eltm_Sreq)); Append (Elsif_Node, Elsif_Parts (If_Node)); end Add_Elsif_Part; procedure Check_If_Column is begin if RM_Column_Check and then Token_Is_At_Start_Of_Line and then Start_Column /= Scope.Table (Scope.Last).Ecol then Error_Msg_Col := Scope.Table (Scope.Last).Ecol; Error_Msg_SC ("(style) this token should be@"); end if; end Check_If_Column; procedure Check_Then_Column is begin if Token = Tok_Then then Check_If_Column; if Style_Check then Style.Check_Then (Loc); end if; end if; end Check_Then_Column; function Else_Should_Be_Elsif return Boolean is Scan_State : Saved_Scan_State; begin if Token_Is_At_Start_Of_Line then return False; else Save_Scan_State (Scan_State); loop if Token in Token_Class_Eterm then Restore_Scan_State (Scan_State); return False; else Scan; -- past non-expression terminating token if Token = Tok_Then then Restore_Scan_State (Scan_State); return True; end if; end if; end loop; end if; end Else_Should_Be_Elsif; -- Start of processing for P_If_Statement begin If_Node := New_Node (N_If_Statement, Token_Ptr); Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_If; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Labl := Error; Scope.Table (Scope.Last).Node := If_Node; if Token = Tok_If then Loc := Token_Ptr; Scan; -- past IF Set_Condition (If_Node, P_Condition); -- Deal with misuse of IF expression => used instead -- of WHEN expression => if Token = Tok_Arrow then Error_Msg_SC -- CODEFIX ("THEN expected"); Scan; -- past the arrow Pop_Scope_Stack; -- remove unneeded entry raise Error_Resync; end if; Check_Then_Column; else Error_Msg_SC ("no IF for this THEN"); Set_Condition (If_Node, Error); end if; Then_Scan; Set_Then_Statements (If_Node, P_Sequence_Of_Statements (SS_Eftm_Eltm_Sreq)); -- This loop scans out else and elsif parts loop if Token = Tok_Elsif then Check_If_Column; if Present (Else_Statements (If_Node)) then Error_Msg_SP ("ELSIF cannot appear after ELSE"); end if; Scan; -- past ELSIF Add_Elsif_Part; elsif Token = Tok_Else then Check_If_Column; Scan; -- past ELSE if Else_Should_Be_Elsif then Error_Msg_SP -- CODEFIX ("ELSE should be ELSIF"); Add_Elsif_Part; else -- Here we have an else that really is an else if Present (Else_Statements (If_Node)) then Error_Msg_SP ("only one ELSE part allowed"); Append_List (P_Sequence_Of_Statements (SS_Eftm_Eltm_Sreq), Else_Statements (If_Node)); else Set_Else_Statements (If_Node, P_Sequence_Of_Statements (SS_Eftm_Eltm_Sreq)); end if; end if; -- If anything other than ELSE or ELSIF, exit the loop. The token -- had better be END (and in fact it had better be END IF), but -- we will let End_Statements take care of checking that. else exit; end if; end loop; End_Statements; return If_Node; end P_If_Statement; -------------------- -- 5.3 Condition -- -------------------- -- CONDITION ::= boolean_EXPRESSION function P_Condition return Node_Id is begin return P_Condition (P_Expression_No_Right_Paren); end P_Condition; function P_Condition (Cond : Node_Id) return Node_Id is begin -- It is never possible for := to follow a condition, so if we get -- a := we assume it is a mistyped equality. Note that we do not try -- to reconstruct the tree correctly in this case, but we do at least -- give an accurate error message. if Token = Tok_Colon_Equal then while Token = Tok_Colon_Equal loop Error_Msg_SC -- CODEFIX (""":="" should be ""="""); Scan; -- past junk := Discard_Junk_Node (P_Expression_No_Right_Paren); end loop; return Cond; -- Otherwise check for redundant parentheses -- If the condition is a conditional or a quantified expression, it is -- parenthesized in the context of a condition, because of a separate -- syntax rule. else if Style_Check and then Paren_Count (Cond) > 0 then if not Nkind_In (Cond, N_If_Expression, N_Case_Expression, N_Quantified_Expression) or else Paren_Count (Cond) > 1 then Style.Check_Xtra_Parens (First_Sloc (Cond)); end if; end if; -- And return the result return Cond; end if; end P_Condition; ------------------------- -- 5.4 Case Statement -- ------------------------- -- CASE_STATEMENT ::= -- case EXPRESSION is -- CASE_STATEMENT_ALTERNATIVE -- {CASE_STATEMENT_ALTERNATIVE} -- end case; -- The caller has checked that the first token is CASE -- Can raise Error_Resync function P_Case_Statement return Node_Id is Case_Node : Node_Id; Alternatives_List : List_Id; First_When_Loc : Source_Ptr; begin Case_Node := New_Node (N_Case_Statement, Token_Ptr); Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Case; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Labl := Error; Scope.Table (Scope.Last).Node := Case_Node; Scan; -- past CASE Set_Expression (Case_Node, P_Expression_No_Right_Paren); TF_Is; -- Prepare to parse case statement alternatives Alternatives_List := New_List; P_Pragmas_Opt (Alternatives_List); First_When_Loc := Token_Ptr; -- Loop through case statement alternatives loop -- If we have a WHEN or OTHERS, then that's fine keep going. Note -- that it is a semantic check to ensure the proper use of OTHERS if Token = Tok_When or else Token = Tok_Others then Append (P_Case_Statement_Alternative, Alternatives_List); -- If we have an END, then probably we are at the end of the case -- but we only exit if Check_End thinks the END was reasonable. elsif Token = Tok_End then exit when Check_End; -- Here if token is other than WHEN, OTHERS or END. We definitely -- have an error, but the question is whether or not to get out of -- the case statement. We don't want to get out early, or we will -- get a slew of junk error messages for subsequent when tokens. -- If the token is not at the start of the line, or if it is indented -- with respect to the current case statement, then the best guess is -- that we are still supposed to be inside the case statement. We -- complain about the missing WHEN, and discard the junk statements. elsif not Token_Is_At_Start_Of_Line or else Start_Column > Scope.Table (Scope.Last).Ecol then Error_Msg_BC ("WHEN (case statement alternative) expected"); -- Here is a possibility for infinite looping if we don't make -- progress. So try to process statements, otherwise exit declare Error_Ptr : constant Source_Ptr := Scan_Ptr; begin Discard_Junk_List (P_Sequence_Of_Statements (SS_Whtm)); exit when Scan_Ptr = Error_Ptr and then Check_End; end; -- Here we have a junk token at the start of the line and it is -- not indented. If Check_End thinks there is a missing END, then -- we will get out of the case, otherwise we keep going. else exit when Check_End; end if; end loop; -- Make sure we have at least one alternative if No (First_Non_Pragma (Alternatives_List)) then Error_Msg ("WHEN expected, must have at least one alternative in case", First_When_Loc); return Error; else Set_Alternatives (Case_Node, Alternatives_List); return Case_Node; end if; end P_Case_Statement; ------------------------------------- -- 5.4 Case Statement Alternative -- ------------------------------------- -- CASE_STATEMENT_ALTERNATIVE ::= -- when DISCRETE_CHOICE_LIST => -- SEQUENCE_OF_STATEMENTS -- The caller has checked that the initial token is WHEN or OTHERS -- Error recovery: can raise Error_Resync function P_Case_Statement_Alternative return Node_Id is Case_Alt_Node : Node_Id; begin if Style_Check then Style.Check_Indentation; end if; Case_Alt_Node := New_Node (N_Case_Statement_Alternative, Token_Ptr); T_When; -- past WHEN (or give error in OTHERS case) Set_Discrete_Choices (Case_Alt_Node, P_Discrete_Choice_List); TF_Arrow; Set_Statements (Case_Alt_Node, P_Sequence_Of_Statements (SS_Sreq_Whtm)); return Case_Alt_Node; end P_Case_Statement_Alternative; ------------------------- -- 5.5 Loop Statement -- ------------------------- -- LOOP_STATEMENT ::= -- [LOOP_STATEMENT_IDENTIFIER:] -- [ITERATION_SCHEME] loop -- SEQUENCE_OF_STATEMENTS -- end loop [loop_IDENTIFIER]; -- ITERATION_SCHEME ::= -- while CONDITION -- | for LOOP_PARAMETER_SPECIFICATION -- The parsing of loop statements is handled by one of three functions -- P_Loop_Statement, P_For_Statement or P_While_Statement depending -- on the initial keyword in the construct (excluding the identifier) -- P_Loop_Statement -- This function parses the case where no iteration scheme is present -- The caller has checked that the initial token is LOOP. The parameter -- is the node identifiers for the loop label if any (or is set to Empty -- if there is no loop label). -- Error recovery : cannot raise Error_Resync function P_Loop_Statement (Loop_Name : Node_Id := Empty) return Node_Id is Loop_Node : Node_Id; Created_Name : Node_Id; begin Push_Scope_Stack; Scope.Table (Scope.Last).Labl := Loop_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Etyp := E_Loop; Loop_Node := New_Node (N_Loop_Statement, Token_Ptr); TF_Loop; if No (Loop_Name) then Created_Name := Make_Identifier (Sloc (Loop_Node), Set_Loop_Block_Name ('L')); Set_Comes_From_Source (Created_Name, False); Set_Has_Created_Identifier (Loop_Node, True); Set_Identifier (Loop_Node, Created_Name); Scope.Table (Scope.Last).Labl := Created_Name; else Set_Identifier (Loop_Node, Loop_Name); end if; Append_Elmt (Loop_Node, Label_List); Set_Statements (Loop_Node, P_Sequence_Of_Statements (SS_Sreq)); End_Statements (Loop_Node); return Loop_Node; end P_Loop_Statement; -- P_For_Statement -- This function parses a loop statement with a FOR iteration scheme -- The caller has checked that the initial token is FOR. The parameter -- is the node identifier for the block label if any (or is set to Empty -- if there is no block label). -- Note: the caller fills in the Identifier field if a label was present -- Error recovery: can raise Error_Resync function P_For_Statement (Loop_Name : Node_Id := Empty) return Node_Id is Loop_Node : Node_Id; Iter_Scheme_Node : Node_Id; Loop_For_Flag : Boolean; Created_Name : Node_Id; Spec : Node_Id; begin Push_Scope_Stack; Scope.Table (Scope.Last).Labl := Loop_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Etyp := E_Loop; Loop_For_Flag := (Prev_Token = Tok_Loop); Scan; -- past FOR Iter_Scheme_Node := New_Node (N_Iteration_Scheme, Token_Ptr); Spec := P_Loop_Parameter_Specification; if Nkind (Spec) = N_Loop_Parameter_Specification then Set_Loop_Parameter_Specification (Iter_Scheme_Node, Spec); else Set_Iterator_Specification (Iter_Scheme_Node, Spec); end if; -- The following is a special test so that a miswritten for loop such -- as "loop for I in 1..10;" is handled nicely, without making an extra -- entry in the scope stack. We don't bother to actually fix up the -- tree in this case since it's not worth the effort. Instead we just -- eat up the loop junk, leaving the entry for what now looks like an -- unmodified loop intact. if Loop_For_Flag and then Token = Tok_Semicolon then Error_Msg_SC ("LOOP belongs here, not before FOR"); Pop_Scope_Stack; return Error; -- Normal case else Loop_Node := New_Node (N_Loop_Statement, Token_Ptr); if No (Loop_Name) then Created_Name := Make_Identifier (Sloc (Loop_Node), Set_Loop_Block_Name ('L')); Set_Comes_From_Source (Created_Name, False); Set_Has_Created_Identifier (Loop_Node, True); Set_Identifier (Loop_Node, Created_Name); Scope.Table (Scope.Last).Labl := Created_Name; else Set_Identifier (Loop_Node, Loop_Name); end if; TF_Loop; Set_Statements (Loop_Node, P_Sequence_Of_Statements (SS_Sreq)); End_Statements (Loop_Node); Set_Iteration_Scheme (Loop_Node, Iter_Scheme_Node); Append_Elmt (Loop_Node, Label_List); return Loop_Node; end if; end P_For_Statement; -- P_While_Statement -- This procedure scans a loop statement with a WHILE iteration scheme -- The caller has checked that the initial token is WHILE. The parameter -- is the node identifier for the block label if any (or is set to Empty -- if there is no block label). -- Error recovery: cannot raise Error_Resync function P_While_Statement (Loop_Name : Node_Id := Empty) return Node_Id is Loop_Node : Node_Id; Iter_Scheme_Node : Node_Id; Loop_While_Flag : Boolean; Created_Name : Node_Id; begin Push_Scope_Stack; Scope.Table (Scope.Last).Labl := Loop_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Etyp := E_Loop; Loop_While_Flag := (Prev_Token = Tok_Loop); Iter_Scheme_Node := New_Node (N_Iteration_Scheme, Token_Ptr); Scan; -- past WHILE Set_Condition (Iter_Scheme_Node, P_Condition); -- The following is a special test so that a miswritten for loop such -- as "loop while I > 10;" is handled nicely, without making an extra -- entry in the scope stack. We don't bother to actually fix up the -- tree in this case since it's not worth the effort. Instead we just -- eat up the loop junk, leaving the entry for what now looks like an -- unmodified loop intact. if Loop_While_Flag and then Token = Tok_Semicolon then Error_Msg_SC ("LOOP belongs here, not before WHILE"); Pop_Scope_Stack; return Error; -- Normal case else Loop_Node := New_Node (N_Loop_Statement, Token_Ptr); TF_Loop; if No (Loop_Name) then Created_Name := Make_Identifier (Sloc (Loop_Node), Set_Loop_Block_Name ('L')); Set_Comes_From_Source (Created_Name, False); Set_Has_Created_Identifier (Loop_Node, True); Set_Identifier (Loop_Node, Created_Name); Scope.Table (Scope.Last).Labl := Created_Name; else Set_Identifier (Loop_Node, Loop_Name); end if; Set_Statements (Loop_Node, P_Sequence_Of_Statements (SS_Sreq)); End_Statements (Loop_Node); Set_Iteration_Scheme (Loop_Node, Iter_Scheme_Node); Append_Elmt (Loop_Node, Label_List); return Loop_Node; end if; end P_While_Statement; --------------------------------------- -- 5.5 Loop Parameter Specification -- --------------------------------------- -- LOOP_PARAMETER_SPECIFICATION ::= -- DEFINING_IDENTIFIER in [reverse] DISCRETE_SUBTYPE_DEFINITION -- Error recovery: cannot raise Error_Resync function P_Loop_Parameter_Specification return Node_Id is Loop_Param_Specification_Node : Node_Id; ID_Node : Node_Id; Scan_State : Saved_Scan_State; begin Save_Scan_State (Scan_State); ID_Node := P_Defining_Identifier (C_In); -- If the next token is OF, it indicates an Ada 2012 iterator. If the -- next token is a colon, this is also an Ada 2012 iterator, including -- a subtype indication for the loop parameter. Otherwise we parse the -- construct as a loop parameter specification. Note that the form -- "for A in B" is ambiguous, and must be resolved semantically: if B -- is a discrete subtype this is a loop specification, but if it is an -- expression it is an iterator specification. Ambiguity is resolved -- during analysis of the loop parameter specification. if Token = Tok_Of or else Token = Tok_Colon then Error_Msg_Ada_2012_Feature ("iterator", Token_Ptr); return P_Iterator_Specification (ID_Node); end if; -- The span of the Loop_Parameter_Specification starts at the -- defining identifier. Loop_Param_Specification_Node := New_Node (N_Loop_Parameter_Specification, Sloc (ID_Node)); Set_Defining_Identifier (Loop_Param_Specification_Node, ID_Node); if Token = Tok_Left_Paren then Error_Msg_SC ("subscripted loop parameter not allowed"); Restore_Scan_State (Scan_State); Discard_Junk_Node (P_Name); elsif Token = Tok_Dot then Error_Msg_SC ("selected loop parameter not allowed"); Restore_Scan_State (Scan_State); Discard_Junk_Node (P_Name); end if; T_In; if Token = Tok_Reverse then Scan; -- past REVERSE Set_Reverse_Present (Loop_Param_Specification_Node, True); end if; Set_Discrete_Subtype_Definition (Loop_Param_Specification_Node, P_Discrete_Subtype_Definition); return Loop_Param_Specification_Node; exception when Error_Resync => return Error; end P_Loop_Parameter_Specification; ---------------------------------- -- 5.5.1 Iterator_Specification -- ---------------------------------- function P_Iterator_Specification (Def_Id : Node_Id) return Node_Id is Node1 : Node_Id; begin Node1 := New_Node (N_Iterator_Specification, Sloc (Def_Id)); Set_Defining_Identifier (Node1, Def_Id); if Token = Tok_Colon then Scan; -- past : Set_Subtype_Indication (Node1, P_Subtype_Indication); end if; if Token = Tok_Of then Set_Of_Present (Node1); Scan; -- past OF elsif Token = Tok_In then Scan; -- past IN elsif Prev_Token = Tok_In and then Present (Subtype_Indication (Node1)) then -- Simplest recovery is to transform it into an element iterator. -- Error message on 'in" has already been emitted when parsing the -- optional constraint. Set_Of_Present (Node1); Error_Msg_N ("subtype indication is only legal on an element iterator", Subtype_Indication (Node1)); else return Error; end if; if Token = Tok_Reverse then Scan; -- past REVERSE Set_Reverse_Present (Node1, True); end if; Set_Name (Node1, P_Name); return Node1; end P_Iterator_Specification; -------------------------- -- 5.6 Block Statement -- -------------------------- -- BLOCK_STATEMENT ::= -- [block_STATEMENT_IDENTIFIER:] -- [declare -- DECLARATIVE_PART] -- begin -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [block_IDENTIFIER]; -- The parsing of block statements is handled by one of the two functions -- P_Declare_Statement or P_Begin_Statement depending on whether or not -- a declare section is present -- P_Declare_Statement -- This function parses a block statement with DECLARE present -- The caller has checked that the initial token is DECLARE -- Error recovery: cannot raise Error_Resync function P_Declare_Statement (Block_Name : Node_Id := Empty) return Node_Id is Block_Node : Node_Id; Created_Name : Node_Id; begin Block_Node := New_Node (N_Block_Statement, Token_Ptr); Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Lreq := Present (Block_Name); Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Labl := Block_Name; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scan; -- past DECLARE if No (Block_Name) then Created_Name := Make_Identifier (Sloc (Block_Node), Set_Loop_Block_Name ('B')); Set_Comes_From_Source (Created_Name, False); Set_Has_Created_Identifier (Block_Node, True); Set_Identifier (Block_Node, Created_Name); Scope.Table (Scope.Last).Labl := Created_Name; else Set_Identifier (Block_Node, Block_Name); end if; Append_Elmt (Block_Node, Label_List); Parse_Decls_Begin_End (Block_Node); return Block_Node; end P_Declare_Statement; -- P_Begin_Statement -- This function parses a block statement with no DECLARE present -- The caller has checked that the initial token is BEGIN -- Error recovery: cannot raise Error_Resync function P_Begin_Statement (Block_Name : Node_Id := Empty) return Node_Id is Block_Node : Node_Id; Created_Name : Node_Id; begin Block_Node := New_Node (N_Block_Statement, Token_Ptr); Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Lreq := Present (Block_Name); Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Labl := Block_Name; Scope.Table (Scope.Last).Sloc := Token_Ptr; if No (Block_Name) then Created_Name := Make_Identifier (Sloc (Block_Node), Set_Loop_Block_Name ('B')); Set_Comes_From_Source (Created_Name, False); Set_Has_Created_Identifier (Block_Node, True); Set_Identifier (Block_Node, Created_Name); Scope.Table (Scope.Last).Labl := Created_Name; else Set_Identifier (Block_Node, Block_Name); end if; Append_Elmt (Block_Node, Label_List); Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scan; -- past BEGIN Set_Handled_Statement_Sequence (Block_Node, P_Handled_Sequence_Of_Statements); End_Statements (Handled_Statement_Sequence (Block_Node)); return Block_Node; end P_Begin_Statement; ------------------------- -- 5.7 Exit Statement -- ------------------------- -- EXIT_STATEMENT ::= -- exit [loop_NAME] [when CONDITION]; -- The caller has checked that the initial token is EXIT -- Error recovery: can raise Error_Resync function P_Exit_Statement return Node_Id is Exit_Node : Node_Id; function Missing_Semicolon_On_Exit return Boolean; -- This function deals with the following specialized situation -- -- when 'x' => -- exit [identifier] -- when 'y' => -- -- This looks like a messed up EXIT WHEN, when in fact the problem -- is a missing semicolon. It is called with Token pointing to the -- WHEN token, and returns True if a semicolon is missing before -- the WHEN as in the above example. ------------------------------- -- Missing_Semicolon_On_Exit -- ------------------------------- function Missing_Semicolon_On_Exit return Boolean is State : Saved_Scan_State; begin if not Token_Is_At_Start_Of_Line then return False; elsif Scope.Table (Scope.Last).Etyp /= E_Case then return False; else Save_Scan_State (State); Scan; -- past WHEN Scan; -- past token after WHEN if Token = Tok_Arrow then Restore_Scan_State (State); return True; else Restore_Scan_State (State); return False; end if; end if; end Missing_Semicolon_On_Exit; -- Start of processing for P_Exit_Statement begin Exit_Node := New_Node (N_Exit_Statement, Token_Ptr); Scan; -- past EXIT if Token = Tok_Identifier then Set_Name (Exit_Node, P_Qualified_Simple_Name); elsif Style_Check then -- This EXIT has no name, so check that -- the innermost loop is unnamed too. Check_No_Exit_Name : for J in reverse 1 .. Scope.Last loop if Scope.Table (J).Etyp = E_Loop then if Present (Scope.Table (J).Labl) and then Comes_From_Source (Scope.Table (J).Labl) then -- Innermost loop in fact had a name, style check fails Style.No_Exit_Name (Scope.Table (J).Labl); end if; exit Check_No_Exit_Name; end if; end loop Check_No_Exit_Name; end if; if Token = Tok_When and then not Missing_Semicolon_On_Exit then Scan; -- past WHEN Set_Condition (Exit_Node, P_Condition); -- Allow IF instead of WHEN, giving error message elsif Token = Tok_If then T_When; Scan; -- past IF used in place of WHEN Set_Condition (Exit_Node, P_Expression_No_Right_Paren); end if; TF_Semicolon; return Exit_Node; end P_Exit_Statement; ------------------------- -- 5.8 Goto Statement -- ------------------------- -- GOTO_STATEMENT ::= goto label_NAME; -- The caller has checked that the initial token is GOTO (or TO in the -- error case where GO and TO were incorrectly separated). -- Error recovery: can raise Error_Resync function P_Goto_Statement return Node_Id is Goto_Node : Node_Id; begin Goto_Node := New_Node (N_Goto_Statement, Token_Ptr); Scan; -- past GOTO (or TO) Set_Name (Goto_Node, P_Qualified_Simple_Name_Resync); Append_Elmt (Goto_Node, Goto_List); No_Constraint; TF_Semicolon; return Goto_Node; end P_Goto_Statement; --------------------------- -- Parse_Decls_Begin_End -- --------------------------- -- This function parses the construct: -- DECLARATIVE_PART -- begin -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [NAME]; -- The caller has built the scope stack entry, and created the node to -- whose Declarations and Handled_Statement_Sequence fields are to be -- set. On return these fields are filled in (except in the case of a -- task body, where the handled statement sequence is optional, and may -- thus be Empty), and the scan is positioned past the End sequence. -- If the BEGIN is missing, then the parent node is used to help construct -- an appropriate missing BEGIN message. Possibilities for the parent are: -- N_Block_Statement declare block -- N_Entry_Body entry body -- N_Package_Body package body (begin part optional) -- N_Subprogram_Body procedure or function body -- N_Task_Body task body -- Note: in the case of a block statement, there is definitely a DECLARE -- present (because a Begin statement without a DECLARE is handled by the -- P_Begin_Statement procedure, which does not call Parse_Decls_Begin_End. -- Error recovery: cannot raise Error_Resync procedure Parse_Decls_Begin_End (Parent : Node_Id) is Body_Decl : Node_Id; Decls : List_Id; Parent_Nkind : Node_Kind; Spec_Node : Node_Id; HSS : Node_Id; procedure Missing_Begin (Msg : String); -- Called to post a missing begin message. In the normal case this is -- posted at the start of the current token. A special case arises when -- P_Declarative_Items has previously found a missing begin, in which -- case we replace the original error message. procedure Set_Null_HSS (Parent : Node_Id); -- Construct an empty handled statement sequence and install in Parent -- Leaves HSS set to reference the newly constructed statement sequence. ------------------- -- Missing_Begin -- ------------------- procedure Missing_Begin (Msg : String) is begin if Missing_Begin_Msg = No_Error_Msg then Error_Msg_BC (Msg); else Change_Error_Text (Missing_Begin_Msg, Msg); -- Purge any messages issued after than, since a missing begin -- can cause a lot of havoc, and it is better not to dump these -- cascaded messages on the user. Purge_Messages (Get_Location (Missing_Begin_Msg), Prev_Token_Ptr); end if; end Missing_Begin; ------------------ -- Set_Null_HSS -- ------------------ procedure Set_Null_HSS (Parent : Node_Id) is Null_Stm : Node_Id; begin Null_Stm := Make_Null_Statement (Token_Ptr); Set_Comes_From_Source (Null_Stm, False); HSS := Make_Handled_Sequence_Of_Statements (Token_Ptr, Statements => New_List (Null_Stm)); Set_Comes_From_Source (HSS, False); Set_Handled_Statement_Sequence (Parent, HSS); end Set_Null_HSS; -- Start of processing for Parse_Decls_Begin_End begin Decls := P_Declarative_Part; if Ada_Version = Ada_83 then Check_Later_Vs_Basic_Declarations (Decls, During_Parsing => True); end if; -- Here is where we deal with the case of IS used instead of semicolon. -- Specifically, if the last declaration in the declarative part is a -- subprogram body still marked as having a bad IS, then this is where -- we decide that the IS should really have been a semicolon and that -- the body should have been a declaration. Note that if the bad IS -- had turned out to be OK (i.e. a decent begin/end was found for it), -- then the Bad_Is_Detected flag would have been reset by now. Body_Decl := Last (Decls); if Present (Body_Decl) and then Nkind (Body_Decl) = N_Subprogram_Body and then Bad_Is_Detected (Body_Decl) then -- OK, we have the case of a bad IS, so we need to fix up the tree. -- What we have now is a subprogram body with attached declarations -- and a possible statement sequence. -- First step is to take the declarations that were part of the bogus -- subprogram body and append them to the outer declaration chain. -- In other words we append them past the body (which we will later -- convert into a declaration). Append_List (Declarations (Body_Decl), Decls); -- Now take the handled statement sequence of the bogus body and -- set it as the statement sequence for the outer construct. Note -- that it may be empty (we specially allowed a missing BEGIN for -- a subprogram body marked as having a bad IS -- see below). Set_Handled_Statement_Sequence (Parent, Handled_Statement_Sequence (Body_Decl)); -- Next step is to convert the old body node to a declaration node Spec_Node := Specification (Body_Decl); Change_Node (Body_Decl, N_Subprogram_Declaration); Set_Specification (Body_Decl, Spec_Node); -- Final step is to put the declarations for the parent where -- they belong, and then fall through the IF to scan out the -- END statements. Set_Declarations (Parent, Decls); -- This is the normal case (i.e. any case except the bad IS case) -- If we have a BEGIN, then scan out the sequence of statements, and -- also reset the expected column for the END to match the BEGIN. else Set_Declarations (Parent, Decls); if Token = Tok_Begin then if Style_Check then Style.Check_Indentation; end if; Error_Msg_Col := Scope.Table (Scope.Last).Ecol; if RM_Column_Check and then Token_Is_At_Start_Of_Line and then Start_Column /= Error_Msg_Col then Error_Msg_SC ("(style) BEGIN in wrong column, should be@"); else Scope.Table (Scope.Last).Ecol := Start_Column; end if; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scan; -- past BEGIN Set_Handled_Statement_Sequence (Parent, P_Handled_Sequence_Of_Statements); -- No BEGIN present else Parent_Nkind := Nkind (Parent); -- A special check for the missing IS case. If we have a -- subprogram body that was marked as having a suspicious -- IS, and the current token is END, then we simply confirm -- the suspicion, and do not require a BEGIN to be present if Parent_Nkind = N_Subprogram_Body and then Token = Tok_End and then Scope.Table (Scope.Last).Etyp = E_Suspicious_Is then Scope.Table (Scope.Last).Etyp := E_Bad_Is; -- Otherwise BEGIN is not required for a package body, so we -- don't mind if it is missing, but we do construct a dummy -- one (so that we have somewhere to set End_Label). -- However if we have something other than a BEGIN which -- looks like it might be statements, then we signal a missing -- BEGIN for these cases as well. We define "something which -- looks like it might be statements" as a token other than -- END, EOF, or a token which starts declarations. elsif Parent_Nkind = N_Package_Body and then (Token = Tok_End or else Token = Tok_EOF or else Token in Token_Class_Declk) then Set_Null_HSS (Parent); -- These are cases in which a BEGIN is required and not present else Set_Null_HSS (Parent); -- Prepare to issue error message Error_Msg_Sloc := Scope.Table (Scope.Last).Sloc; Error_Msg_Node_1 := Scope.Table (Scope.Last).Labl; -- Now issue appropriate message if Parent_Nkind = N_Block_Statement then Missing_Begin ("missing BEGIN for DECLARE#!"); elsif Parent_Nkind = N_Entry_Body then Missing_Begin ("missing BEGIN for ENTRY#!"); elsif Parent_Nkind = N_Subprogram_Body then if Nkind (Specification (Parent)) = N_Function_Specification then Missing_Begin ("missing BEGIN for function&#!"); else Missing_Begin ("missing BEGIN for procedure&#!"); end if; -- The case for package body arises only when -- we have possible statement junk present. elsif Parent_Nkind = N_Package_Body then Missing_Begin ("missing BEGIN for package body&#!"); else pragma Assert (Parent_Nkind = N_Task_Body); Missing_Begin ("missing BEGIN for task body&#!"); end if; -- Here we pick up the statements after the BEGIN that -- should have been present but was not. We don't insist -- on statements being present if P_Declarative_Part had -- already found a missing BEGIN, since it might have -- swallowed a lone statement into the declarative part. if Missing_Begin_Msg /= No_Error_Msg and then Token = Tok_End then null; else Set_Handled_Statement_Sequence (Parent, P_Handled_Sequence_Of_Statements); end if; end if; end if; end if; -- Here with declarations and handled statement sequence scanned if Present (Handled_Statement_Sequence (Parent)) then End_Statements (Handled_Statement_Sequence (Parent)); else End_Statements; end if; -- We know that End_Statements removed an entry from the scope stack -- (because it is required to do so under all circumstances). We can -- therefore reference the entry it removed one past the stack top. -- What we are interested in is whether it was a case of a bad IS. if Scope.Table (Scope.Last + 1).Etyp = E_Bad_Is then Error_Msg -- CODEFIX ("|IS should be "";""", Scope.Table (Scope.Last + 1).S_Is); Set_Bad_Is_Detected (Parent, True); end if; end Parse_Decls_Begin_End; ------------------------- -- Set_Loop_Block_Name -- ------------------------- function Set_Loop_Block_Name (L : Character) return Name_Id is begin Name_Buffer (1) := L; Name_Buffer (2) := '_'; Name_Len := 2; Loop_Block_Count := Loop_Block_Count + 1; Add_Nat_To_Name_Buffer (Loop_Block_Count); return Name_Find; end Set_Loop_Block_Name; --------------- -- Then_Scan -- --------------- procedure Then_Scan is begin TF_Then; while Token = Tok_Then loop Error_Msg_SC -- CODEFIX ("redundant THEN"); TF_Then; end loop; if Token = Tok_And or else Token = Tok_Or then Error_Msg_SC ("unexpected logical operator"); Scan; -- past logical operator if (Prev_Token = Tok_And and then Token = Tok_Then) or else (Prev_Token = Tok_Or and then Token = Tok_Else) then Scan; end if; Discard_Junk_Node (P_Expression); end if; if Token = Tok_Then then Scan; end if; end Then_Scan; end Ch5;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library 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$ ------------------------------------------------------------------------------ -- This package contains declarations of constants used in several places of -- SOAP implementation. ------------------------------------------------------------------------------ with Ada.Streams; with League.Strings; with League.Stream_Element_Vectors; package Web_Services.SOAP.Constants is -- Namespace URI and local name of 'xml:lang' attribute. XML_URI : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("http://www.w3.org/XML/1998/namespace"); XML_Lang_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("lang"); -- XML langauge codes. XML_EN_US_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("en-US"); -- SOAP Envelope namespace URI, names of elements and attributes in this -- namespace. SOAP_Encoding_Style_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("encodingStyle"); SOAP_Envelope_URI : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("http://www.w3.org/2003/05/soap-envelope"); SOAP_Envelope_Prefix : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("env"); SOAP_Body_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Body"); SOAP_Code_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Code"); SOAP_Detail_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Detail"); SOAP_Envelope_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Envelope"); SOAP_Fault_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Fault"); SOAP_Header_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Header"); SOAP_Reason_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Reason"); SOAP_Subcode_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Subcode"); SOAP_Text_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Text"); SOAP_Value_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Value"); SOAP_Must_Understand_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("mustUnderstand"); -- SOAP RPC namespace URI and prefix. SOAP_RPC_URI : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("http://www.w3.org/2003/05/soap-rpc"); SOAP_RPC_Prefix : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("rpc"); -- Codes of SOAP faults. SOAP_Version_Mismatch_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("VersionMismatch"); SOAP_Must_Understand_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("MustUnderstand"); SOAP_Data_Encoding_Unknown_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("DataEncodingUnknown"); SOAP_Sender_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Sender"); SOAP_Receiver_Code : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("Receiver"); -- Subcodes of SOAP RPC faults. SOAP_Procedure_Not_Present_Subcode : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("ProcedureNotPresent"); -- Some literals for values of attributes. SOAP_True_Literal : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("true"); -- "text/plain" Stream_Element_Array Text_Plain_Array : constant Ada.Streams.Stream_Element_Array := (Character'Pos ('t'), Character'Pos ('e'), Character'Pos ('x'), Character'Pos ('t'), Character'Pos ('/'), Character'Pos ('p'), Character'Pos ('l'), Character'Pos ('a'), Character'Pos ('i'), Character'Pos ('n')); -- "application/soap+xml" Stream_Element_Array Application_SOAP_XML_Array : constant Ada.Streams.Stream_Element_Array := (Character'Pos ('a'), Character'Pos ('p'), Character'Pos ('p'), Character'Pos ('l'), Character'Pos ('i'), Character'Pos ('c'), Character'Pos ('a'), Character'Pos ('t'), Character'Pos ('i'), Character'Pos ('o'), Character'Pos ('n'), Character'Pos ('/'), Character'Pos ('s'), Character'Pos ('o'), Character'Pos ('a'), Character'Pos ('p'), Character'Pos ('+'), Character'Pos ('x'), Character'Pos ('m'), Character'Pos ('l')); MIME_Text_Plain : constant League.Stream_Element_Vectors.Stream_Element_Vector := League.Stream_Element_Vectors.To_Stream_Element_Vector (Text_Plain_Array); MIME_Application_SOAP_XML : constant League.Stream_Element_Vectors.Stream_Element_Vector := League.Stream_Element_Vectors.To_Stream_Element_Vector (Application_SOAP_XML_Array); end Web_Services.SOAP.Constants;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . E X E C U T I O N _ T I M E . G R O U P _ B U D G E T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2015-2020, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- 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 unit is not implemented in typical GNAT implementations that lie on -- top of operating systems, because it is infeasible to implement in such -- environments. -- If a target environment provides appropriate support for this package, -- then the Unimplemented_Unit pragma should be removed from this spec and -- an appropriate body provided. with System; with System.Multiprocessors; package Ada.Execution_Time.Group_Budgets is pragma Unimplemented_Unit; type Group_Budget (CPU : System.Multiprocessors.CPU := System.Multiprocessors.CPU'First) is tagged limited private; type Group_Budget_Handler is access protected procedure (GB : in out Group_Budget); type Task_Array is array (Positive range <>) of Ada.Task_Identification.Task_Id; Min_Handler_Ceiling : constant System.Any_Priority := System.Any_Priority'First; -- Initial value is an arbitrary choice ??? procedure Add_Task (GB : in out Group_Budget; T : Ada.Task_Identification.Task_Id); procedure Remove_Task (GB : in out Group_Budget; T : Ada.Task_Identification.Task_Id); function Is_Member (GB : Group_Budget; T : Ada.Task_Identification.Task_Id) return Boolean; function Is_A_Group_Member (T : Ada.Task_Identification.Task_Id) return Boolean; function Members (GB : Group_Budget) return Task_Array; procedure Replenish (GB : in out Group_Budget; To : Ada.Real_Time.Time_Span); procedure Add (GB : in out Group_Budget; Interval : Ada.Real_Time.Time_Span); function Budget_Has_Expired (GB : Group_Budget) return Boolean; function Budget_Remaining (GB : Group_Budget) return Ada.Real_Time.Time_Span; procedure Set_Handler (GB : in out Group_Budget; Handler : Group_Budget_Handler); function Current_Handler (GB : Group_Budget) return Group_Budget_Handler; procedure Cancel_Handler (GB : in out Group_Budget; Cancelled : out Boolean); Group_Budget_Error : exception; private type Group_Budget (CPU : System.Multiprocessors.CPU := System.Multiprocessors.CPU'First) is tagged limited null record; end Ada.Execution_Time.Group_Budgets;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . S Y N C H R O N O U S _ T A S K _ C O N T R O L -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- This specification is adapted from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ --Helen: Added this file to implement asynchronous_task_control. with Ada.Task_Identification; package Ada.Asynchronous_Task_Control is procedure Hold(T : in Ada.Task_Identification.Task_ID); procedure Continue(T : in Ada.Task_Identification.Task_ID); function Is_Held(T : Ada.Task_Identification.Task_ID) return Boolean; end Ada.Asynchronous_Task_Control;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 3 3 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 33 package System.Pack_33 is pragma Preelaborate; Bits : constant := 33; type Bits_33 is mod 2 ** Bits; for Bits_33'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_33 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_33 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_33 (Arr : System.Address; N : Natural; E : Bits_33; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_33;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S E C U R E _ H A S H E S . S H A 2 _ 6 4 -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009-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 provides support for the 64-bit FIPS PUB 180-3 functions -- SHA-384 and SHA-512. -- This is an internal unit and should not be used directly in applications. -- Use GNAT.SHA384 and GNAT.SHA512 instead. with Interfaces; with GNAT.Byte_Swapping; with GNAT.Secure_Hashes.SHA2_Common; package GNAT.Secure_Hashes.SHA2_64 is subtype Word is Interfaces.Unsigned_64; package Hash_State is new Hash_Function_State (Word => Word, Swap => GNAT.Byte_Swapping.Swap8, Hash_Bit_Order => System.High_Order_First); -- SHA-384 and SHA-512 operate on 64-bit big endian words K : Hash_State.State (0 .. 79) := (16#428a2f98d728ae22#, 16#7137449123ef65cd#, 16#b5c0fbcfec4d3b2f#, 16#e9b5dba58189dbbc#, 16#3956c25bf348b538#, 16#59f111f1b605d019#, 16#923f82a4af194f9b#, 16#ab1c5ed5da6d8118#, 16#d807aa98a3030242#, 16#12835b0145706fbe#, 16#243185be4ee4b28c#, 16#550c7dc3d5ffb4e2#, 16#72be5d74f27b896f#, 16#80deb1fe3b1696b1#, 16#9bdc06a725c71235#, 16#c19bf174cf692694#, 16#e49b69c19ef14ad2#, 16#efbe4786384f25e3#, 16#0fc19dc68b8cd5b5#, 16#240ca1cc77ac9c65#, 16#2de92c6f592b0275#, 16#4a7484aa6ea6e483#, 16#5cb0a9dcbd41fbd4#, 16#76f988da831153b5#, 16#983e5152ee66dfab#, 16#a831c66d2db43210#, 16#b00327c898fb213f#, 16#bf597fc7beef0ee4#, 16#c6e00bf33da88fc2#, 16#d5a79147930aa725#, 16#06ca6351e003826f#, 16#142929670a0e6e70#, 16#27b70a8546d22ffc#, 16#2e1b21385c26c926#, 16#4d2c6dfc5ac42aed#, 16#53380d139d95b3df#, 16#650a73548baf63de#, 16#766a0abb3c77b2a8#, 16#81c2c92e47edaee6#, 16#92722c851482353b#, 16#a2bfe8a14cf10364#, 16#a81a664bbc423001#, 16#c24b8b70d0f89791#, 16#c76c51a30654be30#, 16#d192e819d6ef5218#, 16#d69906245565a910#, 16#f40e35855771202a#, 16#106aa07032bbd1b8#, 16#19a4c116b8d2d0c8#, 16#1e376c085141ab53#, 16#2748774cdf8eeb99#, 16#34b0bcb5e19b48a8#, 16#391c0cb3c5c95a63#, 16#4ed8aa4ae3418acb#, 16#5b9cca4f7763e373#, 16#682e6ff3d6b2b8a3#, 16#748f82ee5defb2fc#, 16#78a5636f43172f60#, 16#84c87814a1f0ab72#, 16#8cc702081a6439ec#, 16#90befffa23631e28#, 16#a4506cebde82bde9#, 16#bef9a3f7b2c67915#, 16#c67178f2e372532b#, 16#ca273eceea26619c#, 16#d186b8c721c0c207#, 16#eada7dd6cde0eb1e#, 16#f57d4f7fee6ed178#, 16#06f067aa72176fba#, 16#0a637dc5a2c898a6#, 16#113f9804bef90dae#, 16#1b710b35131c471b#, 16#28db77f523047d84#, 16#32caab7b40c72493#, 16#3c9ebe0a15c9bebc#, 16#431d67c49c100d4c#, 16#4cc5d4becb3e42b6#, 16#597f299cfc657e2a#, 16#5fcb6fab3ad6faec#, 16#6c44198c4a475817#); -- Constants from FIPS PUB 180-3 function Sigma0 (X : Word) return Word; function Sigma1 (X : Word) return Word; function S0 (X : Word) return Word; function S1 (X : Word) return Word; pragma Inline (Sigma0, Sigma1, S0, S1); -- Elementary functions Sigma^512_0, Sigma^512_1, sigma^512_0, sigma^512_1 -- from FIPS PUB 180-3. procedure Transform is new SHA2_Common.Transform (Hash_State => Hash_State, K => K, Rounds => 80, Sigma0 => Sigma0, Sigma1 => Sigma1, S0 => S0, S1 => S1); SHA384_Init_State : constant Hash_State.State := (0 => 16#cbbb9d5dc1059ed8#, 1 => 16#629a292a367cd507#, 2 => 16#9159015a3070dd17#, 3 => 16#152fecd8f70e5939#, 4 => 16#67332667ffc00b31#, 5 => 16#8eb44a8768581511#, 6 => 16#db0c2e0d64f98fa7#, 7 => 16#47b5481dbefa4fa4#); SHA512_Init_State : constant Hash_State.State := (0 => 16#6a09e667f3bcc908#, 1 => 16#bb67ae8584caa73b#, 2 => 16#3c6ef372fe94f82b#, 3 => 16#a54ff53a5f1d36f1#, 4 => 16#510e527fade682d1#, 5 => 16#9b05688c2b3e6c1f#, 6 => 16#1f83d9abfb41bd6b#, 7 => 16#5be0cd19137e2179#); -- Initialization vectors from FIPS PUB 180-3 end GNAT.Secure_Hashes.SHA2_64;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S H A R E D _ M E M O R Y -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Exceptions; with Ada.IO_Exceptions; with Ada.Streams; with System.Global_Locks; with System.Soft_Links; with System; with System.File_Control_Block; with System.File_IO; with System.HTable; with Unchecked_Deallocation; with Unchecked_Conversion; package body System.Shared_Storage is package AS renames Ada.Streams; package IOX renames Ada.IO_Exceptions; package FCB renames System.File_Control_Block; package SFI renames System.File_IO; type String_Access is access String; procedure Free is new Unchecked_Deallocation (Object => String, Name => String_Access); Dir : String_Access; -- Holds the directory ------------------------------------------------ -- Variables for Shared Variable Access Files -- ------------------------------------------------ Max_Shared_Var_Files : constant := 20; -- Maximum number of lock files that can be open Shared_Var_Files_Open : Natural := 0; -- Number of shared variable access files currently open type File_Stream_Type is new AS.Root_Stream_Type with record File : SIO.File_Type; end record; type File_Stream_Access is access all File_Stream_Type'Class; procedure Read (Stream : in out File_Stream_Type; Item : out AS.Stream_Element_Array; Last : out AS.Stream_Element_Offset); procedure Write (Stream : in out File_Stream_Type; Item : AS.Stream_Element_Array); subtype Hash_Header is Natural range 0 .. 30; -- Number of hash headers, related (for efficiency purposes only) -- to the maximum number of lock files.. type Shared_Var_File_Entry; type Shared_Var_File_Entry_Ptr is access Shared_Var_File_Entry; type Shared_Var_File_Entry is record Name : String_Access; -- Name of variable, as passed to Read_File/Write_File routines Stream : File_Stream_Access; -- Stream_IO file for the shared variable file Next : Shared_Var_File_Entry_Ptr; Prev : Shared_Var_File_Entry_Ptr; -- Links for LRU chain end record; procedure Free is new Unchecked_Deallocation (Object => Shared_Var_File_Entry, Name => Shared_Var_File_Entry_Ptr); procedure Free is new Unchecked_Deallocation (Object => File_Stream_Type'Class, Name => File_Stream_Access); function To_AFCB_Ptr is new Unchecked_Conversion (SIO.File_Type, FCB.AFCB_Ptr); LRU_Head : Shared_Var_File_Entry_Ptr; LRU_Tail : Shared_Var_File_Entry_Ptr; -- As lock files are opened, they are organized into a least recently -- used chain, which is a doubly linked list using the Next and Prev -- fields of Shared_Var_File_Entry records. The field LRU_Head points -- to the least recently used entry, whose prev pointer is null, and -- LRU_Tail points to the most recently used entry, whose next pointer -- is null. These pointers are null only if the list is empty. function Hash (F : String_Access) return Hash_Header; function Equal (F1, F2 : String_Access) return Boolean; -- Hash and equality functions for hash table package SFT is new System.HTable.Simple_HTable (Header_Num => Hash_Header, Element => Shared_Var_File_Entry_Ptr, No_Element => null, Key => String_Access, Hash => Hash, Equal => Equal); -------------------------------- -- Variables for Lock Control -- -------------------------------- Global_Lock : Global_Locks.Lock_Type; Lock_Count : Natural := 0; -- Counts nesting of lock calls, 0 means lock is not held ----------------------- -- Local Subprograms -- ----------------------- procedure Initialize; -- Called to initialize data structures for this package. -- Has no effect except on the first call. procedure Enter_SFE (SFE : Shared_Var_File_Entry_Ptr; Fname : String); -- The first parameter is a pointer to a newly allocated SFE, whose -- File field is already set appropriately. Fname is the name of the -- variable as passed to Shared_Var_RFile/Shared_Var_WFile. Enter_SFE -- completes the SFE value, and enters it into the hash table. If the -- hash table is already full, the least recently used entry is first -- closed and discarded. function Retrieve (File : String) return Shared_Var_File_Entry_Ptr; -- Given a file name, this function searches the hash table to see if -- the file is currently open. If so, then a pointer to the already -- created entry is returned, after first moving it to the head of -- the LRU chain. If not, then null is returned. --------------- -- Enter_SFE -- --------------- procedure Enter_SFE (SFE : Shared_Var_File_Entry_Ptr; Fname : String) is Freed : Shared_Var_File_Entry_Ptr; begin SFE.Name := new String'(Fname); -- Release least recently used entry if we have to if Shared_Var_Files_Open = Max_Shared_Var_Files then Freed := LRU_Head; if Freed.Next /= null then Freed.Next.Prev := null; end if; LRU_Head := Freed.Next; SFT.Remove (Freed.Name); SIO.Close (Freed.Stream.File); Free (Freed.Name); Free (Freed.Stream); Free (Freed); else Shared_Var_Files_Open := Shared_Var_Files_Open + 1; end if; -- Add new entry to hash table SFT.Set (SFE.Name, SFE); -- Add new entry at end of LRU chain if LRU_Head = null then LRU_Head := SFE; LRU_Tail := SFE; else SFE.Prev := LRU_Tail; LRU_Tail.Next := SFE; LRU_Tail := SFE; end if; end Enter_SFE; ----------- -- Equal -- ----------- function Equal (F1, F2 : String_Access) return Boolean is begin return F1.all = F2.all; end Equal; ---------- -- Hash -- ---------- function Hash (F : String_Access) return Hash_Header is N : Natural := 0; begin -- Add up characters of name, mod our table size for J in F'Range loop N := (N + Character'Pos (F (J))) mod (Hash_Header'Last + 1); end loop; return N; end Hash; ---------------- -- Initialize -- ---------------- procedure Initialize is procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address); pragma Import (C, Get_Env_Value_Ptr, "__gnat_getenv"); procedure Strncpy (Astring_Addr, Cstring : Address; N : Integer); pragma Import (C, Strncpy, "strncpy"); Dir_Name : aliased constant String := "SHARED_MEMORY_DIRECTORY" & ASCII.NUL; Env_Value_Ptr : aliased Address; Env_Value_Length : aliased Integer; begin if Dir = null then Get_Env_Value_Ptr (Dir_Name'Address, Env_Value_Length'Address, Env_Value_Ptr'Address); Dir := new String (1 .. Env_Value_Length); if Env_Value_Length > 0 then Strncpy (Dir.all'Address, Env_Value_Ptr, Env_Value_Length); end if; System.Global_Locks.Create_Lock (Global_Lock, Dir.all & "__lock"); end if; end Initialize; ---------- -- Read -- ---------- procedure Read (Stream : in out File_Stream_Type; Item : out AS.Stream_Element_Array; Last : out AS.Stream_Element_Offset) is begin SIO.Read (Stream.File, Item, Last); exception when others => Last := Item'Last; end Read; -------------- -- Retrieve -- -------------- function Retrieve (File : String) return Shared_Var_File_Entry_Ptr is SFE : Shared_Var_File_Entry_Ptr; begin Initialize; SFE := SFT.Get (File'Unrestricted_Access); if SFE /= null then -- Move to head of LRU chain if SFE = LRU_Tail then null; elsif SFE = LRU_Head then LRU_Head := LRU_Head.Next; LRU_Head.Prev := null; else SFE.Next.Prev := SFE.Prev; SFE.Prev.Next := SFE.Next; end if; SFE.Next := null; SFE.Prev := LRU_Tail; LRU_Tail.Next := SFE; LRU_Tail := SFE; end if; return SFE; end Retrieve; ---------------------- -- Shared_Var_Close -- ---------------------- procedure Shared_Var_Close (Var : SIO.Stream_Access) is pragma Warnings (Off, Var); begin System.Soft_Links.Unlock_Task.all; end Shared_Var_Close; --------------------- -- Shared_Var_Lock -- --------------------- procedure Shared_Var_Lock (Var : String) is pragma Warnings (Off, Var); begin System.Soft_Links.Lock_Task.all; Initialize; if Lock_Count /= 0 then Lock_Count := Lock_Count + 1; System.Soft_Links.Unlock_Task.all; else Lock_Count := 1; System.Soft_Links.Unlock_Task.all; System.Global_Locks.Acquire_Lock (Global_Lock); end if; exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_Lock; ---------------------- -- Shared_Var_ROpen -- ---------------------- function Shared_Var_ROpen (Var : String) return SIO.Stream_Access is SFE : Shared_Var_File_Entry_Ptr; use type Ada.Streams.Stream_IO.File_Mode; begin System.Soft_Links.Lock_Task.all; SFE := Retrieve (Var); -- Here if file is not already open, try to open it if SFE = null then declare S : aliased constant String := Dir.all & Var; begin SFE := new Shared_Var_File_Entry; SFE.Stream := new File_Stream_Type; SIO.Open (SFE.Stream.File, SIO.In_File, Name => S); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); -- File opened successfully, put new entry in hash table. Note -- that in this case, file is positioned correctly for read. Enter_SFE (SFE, Var); exception -- If we get an exception, it means that the file does not -- exist, and in this case, we don't need the SFE and we -- return null; when IOX.Name_Error => Free (SFE); System.Soft_Links.Unlock_Task.all; return null; end; -- Here if file is already open, set file for reading else if SIO.Mode (SFE.Stream.File) /= SIO.In_File then SIO.Set_Mode (SFE.Stream.File, SIO.In_File); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); end if; SIO.Set_Index (SFE.Stream.File, 1); end if; return SIO.Stream_Access (SFE.Stream); exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_ROpen; ----------------------- -- Shared_Var_Unlock -- ----------------------- procedure Shared_Var_Unlock (Var : String) is pragma Warnings (Off, Var); begin System.Soft_Links.Lock_Task.all; Initialize; Lock_Count := Lock_Count - 1; if Lock_Count = 0 then System.Global_Locks.Release_Lock (Global_Lock); end if; System.Soft_Links.Unlock_Task.all; exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_Unlock; --------------------- -- Share_Var_WOpen -- --------------------- function Shared_Var_WOpen (Var : String) return SIO.Stream_Access is SFE : Shared_Var_File_Entry_Ptr; use type Ada.Streams.Stream_IO.File_Mode; begin System.Soft_Links.Lock_Task.all; SFE := Retrieve (Var); if SFE = null then declare S : aliased constant String := Dir.all & Var; begin SFE := new Shared_Var_File_Entry; SFE.Stream := new File_Stream_Type; SIO.Open (SFE.Stream.File, SIO.Out_File, Name => S); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); exception -- If we get an exception, it means that the file does not -- exist, and in this case, we create the file. when IOX.Name_Error => begin SIO.Create (SFE.Stream.File, SIO.Out_File, Name => S); exception -- Error if we cannot create the file when others => Ada.Exceptions.Raise_Exception (Program_Error'Identity, "Cannot create shared variable file for """ & S & '"'); -- " end; end; -- Make new hash table entry for opened/created file. Note that -- in both cases, the file is already in write mode at the start -- of the file, ready to be written. Enter_SFE (SFE, Var); -- Here if file is already open, set file for writing else if SIO.Mode (SFE.Stream.File) /= SIO.Out_File then SIO.Set_Mode (SFE.Stream.File, SIO.Out_File); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); end if; SIO.Set_Index (SFE.Stream.File, 1); end if; return SIO.Stream_Access (SFE.Stream); exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_WOpen; ----------- -- Write -- ----------- procedure Write (Stream : in out File_Stream_Type; Item : AS.Stream_Element_Array) is begin SIO.Write (Stream.File, Item); end Write; end System.Shared_Storage;
-- Lumen.GL -- Lumen's own thin OpenGL bindings -- -- Chip Richards, NiEstu, Phoenix AZ, Summer 2010 -- This code is covered by the ISC License: -- -- Copyright © 2010, NiEstu -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- The software is provided "as is" and the author disclaims all warranties -- with regard to this software including all implied warranties of -- merchantability and fitness. In no event shall the author be liable for any -- special, direct, indirect, or consequential damages or any damages -- whatsoever resulting from loss of use, data or profits, whether in an -- action of contract, negligence or other tortious action, arising out of or -- in connection with the use or performance of this software. -- Environment with System; with Lumen.Binary; package Lumen.GL is --------------------------------------------------------------------------- -- New names for old types subtype Bitfield is Binary.Word; subtype Bool is Binary.Byte; subtype Byte is Binary.S_Byte; subtype ClampD is Long_Float range 0.0 .. 1.0; subtype ClampF is Float range 0.0 .. 1.0; subtype Double is Long_Float; subtype Int is Integer; subtype Short is Short_Integer; subtype SizeI is Integer; subtype UByte is Binary.Byte; subtype UInt is Binary.Word; subtype UShort is Binary.Short; subtype Pointer is System.Address; -- Try to bring a touch of order to the GLenum mess subtype Enum is Binary.Word; -- Types added by Lumen.GL type Bools is array (Positive range <>) of Bool; type Bytes is array (Positive range <>) of Byte; type Bytes_1 is array (1 .. 1) of Byte; type Bytes_2 is array (1 .. 2) of Byte; type Bytes_3 is array (1 .. 3) of Byte; type Bytes_4 is array (1 .. 4) of Byte; type Shorts is array (Positive range <>) of Short; type Shorts_1 is array (1 .. 1) of Short; type Shorts_2 is array (1 .. 2) of Short; type Shorts_3 is array (1 .. 3) of Short; type Shorts_4 is array (1 .. 4) of Short; type Ints is array (Positive range <>) of Int; type Ints_1 is array (1 .. 1) of Int; type Ints_2 is array (1 .. 2) of Int; type Ints_3 is array (1 .. 3) of Int; type Ints_4 is array (1 .. 4) of Int; type Floats is array (Positive range <>) of Float; type Floats_1 is array (1 .. 1) of Float; type Floats_2 is array (1 .. 2) of Float; type Floats_3 is array (1 .. 3) of Float; type Floats_4 is array (1 .. 4) of Float; type Doubles is array (Positive range <>) of Double; type Doubles_1 is array (1 .. 1) of Double; type Doubles_2 is array (1 .. 2) of Double; type Doubles_3 is array (1 .. 3) of Double; type Doubles_4 is array (1 .. 4) of Double; type SizeIs is array (Positive range <>) of SizeI; type UBytes is array (Positive range <>) of UByte; type UBytes_1 is array (1 .. 1) of UByte; type UBytes_2 is array (1 .. 2) of UByte; type UBytes_3 is array (1 .. 3) of UByte; type UBytes_4 is array (1 .. 4) of UByte; type UShorts is array (Positive range <>) of UShort; type UShorts_1 is array (1 .. 1) of UShort; type UShorts_2 is array (1 .. 2) of UShort; type UShorts_3 is array (1 .. 3) of UShort; type UShorts_4 is array (1 .. 4) of UShort; type UInts is array (Positive range <>) of UInt; type UInts_1 is array (1 .. 1) of UInt; type UInts_2 is array (1 .. 2) of UInt; type UInts_3 is array (1 .. 3) of UInt; type UInts_4 is array (1 .. 4) of UInt; type Float_Matrix is array (1 .. 4, 1 .. 4) of Float; type Double_Matrix is array (1 .. 4, 1 .. 4) of Double; type ClampFs is array (Positive range <>) of ClampF; type ClampDs is array (Positive range <>) of ClampD; -- Useful value Null_Pointer : Pointer := System.Null_Address; --------------------------------------------------------------------------- -- "Enumeration" constants -- OpenGL 1.0 -- Boolean Values GL_FALSE : constant Bool := 16#0#; GL_TRUE : constant Bool := 16#1#; GL_VERSION_1_1 : constant Enum := 1; GL_VERSION_1_2 : constant Enum := 1; GL_VERSION_1_3 : constant Enum := 1; GL_VERSION_1_4 : constant Enum := 1; GL_ARB_imaging : constant Enum := 1; -- Date types GL_BYTE : constant Enum := 16#1400#; GL_UNSIGNED_BYTE : constant Enum := 16#1401#; GL_SHORT : constant Enum := 16#1402#; GL_UNSIGNED_SHORT : constant Enum := 16#1403#; GL_INT : constant Enum := 16#1404#; GL_UNSIGNED_INT : constant Enum := 16#1405#; GL_FLOAT : constant Enum := 16#1406#; GL_2_BYTES : constant Enum := 16#1407#; GL_3_BYTES : constant Enum := 16#1408#; GL_4_BYTES : constant Enum := 16#1409#; GL_DOUBLE : constant Enum := 16#140A#; -- Primitives GL_POINTS : constant Enum := 16#0#; GL_LINES : constant Enum := 16#1#; GL_LINE_LOOP : constant Enum := 16#2#; GL_LINE_STRIP : constant Enum := 16#3#; GL_TRIANGLES : constant Enum := 16#4#; GL_TRIANGLE_STRIP : constant Enum := 16#5#; GL_TRIANGLE_FAN : constant Enum := 16#6#; GL_QUADS : constant Enum := 16#7#; GL_QUAD_STRIP : constant Enum := 16#8#; GL_POLYGON : constant Enum := 16#9#; -- Vertex arrays GL_VERTEX_ARRAY : constant Enum := 16#8074#; GL_NORMAL_ARRAY : constant Enum := 16#8075#; GL_COLOR_ARRAY : constant Enum := 16#8076#; GL_INDEX_ARRAY : constant Enum := 16#8077#; GL_TEXTURE_COORD_ARRAY : constant Enum := 16#8078#; GL_EDGE_FLAG_ARRAY : constant Enum := 16#8079#; GL_VERTEX_ARRAY_SIZE : constant Enum := 16#807A#; GL_VERTEX_ARRAY_TYPE : constant Enum := 16#807B#; GL_VERTEX_ARRAY_STRIDE : constant Enum := 16#807C#; GL_NORMAL_ARRAY_TYPE : constant Enum := 16#807E#; GL_NORMAL_ARRAY_STRIDE : constant Enum := 16#807F#; GL_COLOR_ARRAY_SIZE : constant Enum := 16#8081#; GL_COLOR_ARRAY_TYPE : constant Enum := 16#8082#; GL_COLOR_ARRAY_STRIDE : constant Enum := 16#8083#; GL_INDEX_ARRAY_TYPE : constant Enum := 16#8085#; GL_INDEX_ARRAY_STRIDE : constant Enum := 16#8086#; GL_TEXTURE_COORD_ARRAY_SIZE : constant Enum := 16#8088#; GL_TEXTURE_COORD_ARRAY_TYPE : constant Enum := 16#8089#; GL_TEXTURE_COORD_ARRAY_STRIDE : constant Enum := 16#808A#; GL_EDGE_FLAG_ARRAY_STRIDE : constant Enum := 16#808C#; GL_VERTEX_ARRAY_POINTER : constant Enum := 16#808E#; GL_NORMAL_ARRAY_POINTER : constant Enum := 16#808F#; GL_COLOR_ARRAY_POINTER : constant Enum := 16#8090#; GL_INDEX_ARRAY_POINTER : constant Enum := 16#8091#; GL_TEXTURE_COORD_ARRAY_POINTER : constant Enum := 16#8092#; GL_EDGE_FLAG_ARRAY_POINTER : constant Enum := 16#8093#; GL_V2F : constant Enum := 16#2A20#; GL_V3F : constant Enum := 16#2A21#; GL_C4UB_V2F : constant Enum := 16#2A22#; GL_C4UB_V3F : constant Enum := 16#2A23#; GL_C3F_V3F : constant Enum := 16#2A24#; GL_N3F_V3F : constant Enum := 16#2A25#; GL_C4F_N3F_V3F : constant Enum := 16#2A26#; GL_T2F_V3F : constant Enum := 16#2A27#; GL_T4F_V4F : constant Enum := 16#2A28#; GL_T2F_C4UB_V3F : constant Enum := 16#2A29#; GL_T2F_C3F_V3F : constant Enum := 16#2A2A#; GL_T2F_N3F_V3F : constant Enum := 16#2A2B#; GL_T2F_C4F_N3F_V3F : constant Enum := 16#2A2C#; GL_T4F_C4F_N3F_V4F : constant Enum := 16#2A2D#; -- Matrix mode GL_MATRIX_MODE : constant Enum := 16#BA0#; GL_MODELVIEW : constant Enum := 16#1700#; GL_PROJECTION : constant Enum := 16#1701#; GL_TEXTURE : constant Enum := 16#1702#; -- Points GL_POINT_SMOOTH : constant Enum := 16#B10#; GL_POINT_SIZE : constant Enum := 16#B11#; GL_POINT_SIZE_GRANULARITY : constant Enum := 16#B13#; GL_POINT_SIZE_RANGE : constant Enum := 16#B12#; -- Lines GL_LINE_SMOOTH : constant Enum := 16#B20#; GL_LINE_STIPPLE : constant Enum := 16#B24#; GL_LINE_STIPPLE_PATTERN : constant Enum := 16#B25#; GL_LINE_STIPPLE_REPEAT : constant Enum := 16#B26#; GL_LINE_WIDTH : constant Enum := 16#B21#; GL_LINE_WIDTH_GRANULARITY : constant Enum := 16#B23#; GL_LINE_WIDTH_RANGE : constant Enum := 16#B22#; -- Polygons GL_POINT : constant Enum := 16#1B00#; GL_LINE : constant Enum := 16#1B01#; GL_FILL : constant Enum := 16#1B02#; GL_CW : constant Enum := 16#900#; GL_CCW : constant Enum := 16#901#; GL_FRONT : constant Enum := 16#404#; GL_BACK : constant Enum := 16#405#; GL_POLYGON_MODE : constant Enum := 16#B40#; GL_POLYGON_SMOOTH : constant Enum := 16#B41#; GL_POLYGON_STIPPLE : constant Enum := 16#B42#; GL_EDGE_FLAG : constant Enum := 16#B43#; GL_CULL_FACE : constant Enum := 16#B44#; GL_CULL_FACE_MODE : constant Enum := 16#B45#; GL_FRONT_FACE : constant Enum := 16#B46#; GL_POLYGON_OFFSET_FACTOR : constant Enum := 16#8038#; GL_POLYGON_OFFSET_UNITS : constant Enum := 16#2A00#; GL_POLYGON_OFFSET_POINT : constant Enum := 16#2A01#; GL_POLYGON_OFFSET_LINE : constant Enum := 16#2A02#; GL_POLYGON_OFFSET_FILL : constant Enum := 16#8037#; -- Display lists GL_COMPILE : constant Enum := 16#1300#; GL_COMPILE_AND_EXECUTE : constant Enum := 16#1301#; GL_LIST_BASE : constant Enum := 16#B32#; GL_LIST_INDEX : constant Enum := 16#B33#; GL_LIST_MODE : constant Enum := 16#B30#; -- Depth buffer GL_NEVER : constant Enum := 16#200#; GL_LESS : constant Enum := 16#201#; GL_EQUAL : constant Enum := 16#202#; GL_LEQUAL : constant Enum := 16#203#; GL_GREATER : constant Enum := 16#204#; GL_NOTEQUAL : constant Enum := 16#205#; GL_GEQUAL : constant Enum := 16#206#; GL_ALWAYS : constant Enum := 16#207#; GL_DEPTH_TEST : constant Enum := 16#B71#; GL_DEPTH_BITS : constant Enum := 16#D56#; GL_DEPTH_CLEAR_VALUE : constant Enum := 16#B73#; GL_DEPTH_FUNC : constant Enum := 16#B74#; GL_DEPTH_RANGE : constant Enum := 16#B70#; GL_DEPTH_WRITEMASK : constant Enum := 16#B72#; GL_DEPTH_COMPONENT : constant Enum := 16#1902#; -- Lighting GL_LIGHTING : constant Enum := 16#B50#; GL_LIGHT0 : constant Enum := 16#4000#; GL_LIGHT1 : constant Enum := 16#4001#; GL_LIGHT2 : constant Enum := 16#4002#; GL_LIGHT3 : constant Enum := 16#4003#; GL_LIGHT4 : constant Enum := 16#4004#; GL_LIGHT5 : constant Enum := 16#4005#; GL_LIGHT6 : constant Enum := 16#4006#; GL_LIGHT7 : constant Enum := 16#4007#; GL_SPOT_EXPONENT : constant Enum := 16#1205#; GL_SPOT_CUTOFF : constant Enum := 16#1206#; GL_CONSTANT_ATTENUATION : constant Enum := 16#1207#; GL_LINEAR_ATTENUATION : constant Enum := 16#1208#; GL_QUADRATIC_ATTENUATION : constant Enum := 16#1209#; GL_AMBIENT : constant Enum := 16#1200#; GL_DIFFUSE : constant Enum := 16#1201#; GL_SPECULAR : constant Enum := 16#1202#; GL_SHININESS : constant Enum := 16#1601#; GL_EMISSION : constant Enum := 16#1600#; GL_POSITION : constant Enum := 16#1203#; GL_SPOT_DIRECTION : constant Enum := 16#1204#; GL_AMBIENT_AND_DIFFUSE : constant Enum := 16#1602#; GL_COLOR_INDEXES : constant Enum := 16#1603#; GL_LIGHT_MODEL_TWO_SIDE : constant Enum := 16#B52#; GL_LIGHT_MODEL_LOCAL_VIEWER : constant Enum := 16#B51#; GL_LIGHT_MODEL_AMBIENT : constant Enum := 16#B53#; GL_FRONT_AND_BACK : constant Enum := 16#408#; GL_SHADE_MODEL : constant Enum := 16#B54#; GL_FLAT : constant Enum := 16#1D00#; GL_SMOOTH : constant Enum := 16#1D01#; GL_COLOR_MATERIAL : constant Enum := 16#B57#; GL_COLOR_MATERIAL_FACE : constant Enum := 16#B55#; GL_COLOR_MATERIAL_PARAMETER : constant Enum := 16#B56#; GL_NORMALIZE : constant Enum := 16#BA1#; -- User clipping planes GL_CLIP_PLANE0 : constant Enum := 16#3000#; GL_CLIP_PLANE1 : constant Enum := 16#3001#; GL_CLIP_PLANE2 : constant Enum := 16#3002#; GL_CLIP_PLANE3 : constant Enum := 16#3003#; GL_CLIP_PLANE4 : constant Enum := 16#3004#; GL_CLIP_PLANE5 : constant Enum := 16#3005#; -- Accumulation buffer GL_ACCUM_RED_BITS : constant Enum := 16#D58#; GL_ACCUM_GREEN_BITS : constant Enum := 16#D59#; GL_ACCUM_BLUE_BITS : constant Enum := 16#D5A#; GL_ACCUM_ALPHA_BITS : constant Enum := 16#D5B#; GL_ACCUM_CLEAR_VALUE : constant Enum := 16#B80#; GL_ACCUM : constant Enum := 16#100#; GL_ADD : constant Enum := 16#104#; GL_LOAD : constant Enum := 16#101#; GL_MULT : constant Enum := 16#103#; GL_RETURN : constant Enum := 16#102#; -- Alpha testing GL_ALPHA_TEST : constant Enum := 16#BC0#; GL_ALPHA_TEST_REF : constant Enum := 16#BC2#; GL_ALPHA_TEST_FUNC : constant Enum := 16#BC1#; -- Blending GL_BLEND : constant Enum := 16#BE2#; GL_BLEND_SRC : constant Enum := 16#BE1#; GL_BLEND_DST : constant Enum := 16#BE0#; GL_ZERO : constant Enum := 16#0#; GL_ONE : constant Enum := 16#1#; GL_SRC_COLOR : constant Enum := 16#300#; GL_ONE_MINUS_SRC_COLOR : constant Enum := 16#301#; GL_SRC_ALPHA : constant Enum := 16#302#; GL_ONE_MINUS_SRC_ALPHA : constant Enum := 16#303#; GL_DST_ALPHA : constant Enum := 16#304#; GL_ONE_MINUS_DST_ALPHA : constant Enum := 16#305#; GL_DST_COLOR : constant Enum := 16#306#; GL_ONE_MINUS_DST_COLOR : constant Enum := 16#307#; GL_SRC_ALPHA_SATURATE : constant Enum := 16#308#; -- Render mode GL_FEEDBACK : constant Enum := 16#1C01#; GL_RENDER : constant Enum := 16#1C00#; GL_SELECT : constant Enum := 16#1C02#; -- Feedback GL_2D : constant Enum := 16#600#; GL_3D : constant Enum := 16#601#; GL_3D_COLOR : constant Enum := 16#602#; GL_3D_COLOR_TEXTURE : constant Enum := 16#603#; GL_4D_COLOR_TEXTURE : constant Enum := 16#604#; GL_POINT_TOKEN : constant Enum := 16#701#; GL_LINE_TOKEN : constant Enum := 16#702#; GL_LINE_RESET_TOKEN : constant Enum := 16#707#; GL_POLYGON_TOKEN : constant Enum := 16#703#; GL_BITMAP_TOKEN : constant Enum := 16#704#; GL_DRAW_PIXEL_TOKEN : constant Enum := 16#705#; GL_COPY_PIXEL_TOKEN : constant Enum := 16#706#; GL_PASS_THROUGH_TOKEN : constant Enum := 16#700#; GL_FEEDBACK_BUFFER_POINTER : constant Enum := 16#DF0#; GL_FEEDBACK_BUFFER_SIZE : constant Enum := 16#DF1#; GL_FEEDBACK_BUFFER_TYPE : constant Enum := 16#DF2#; -- Selection GL_SELECTION_BUFFER_POINTER : constant Enum := 16#DF3#; GL_SELECTION_BUFFER_SIZE : constant Enum := 16#DF4#; -- Fog GL_FOG : constant Enum := 16#B60#; GL_FOG_MODE : constant Enum := 16#B65#; GL_FOG_DENSITY : constant Enum := 16#B62#; GL_FOG_COLOR : constant Enum := 16#B66#; GL_FOG_INDEX : constant Enum := 16#B61#; GL_FOG_START : constant Enum := 16#B63#; GL_FOG_END : constant Enum := 16#B64#; GL_LINEAR : constant Enum := 16#2601#; GL_EXP : constant Enum := 16#800#; GL_EXP2 : constant Enum := 16#801#; -- Logic Ops GL_LOGIC_OP : constant Enum := 16#BF1#; GL_INDEX_LOGIC_OP : constant Enum := 16#BF1#; GL_COLOR_LOGIC_OP : constant Enum := 16#BF2#; GL_LOGIC_OP_MODE : constant Enum := 16#BF0#; GL_CLEAR : constant Enum := 16#1500#; GL_SET : constant Enum := 16#150F#; GL_COPY : constant Enum := 16#1503#; GL_COPY_INVERTED : constant Enum := 16#150C#; GL_NOOP : constant Enum := 16#1505#; GL_INVERT : constant Enum := 16#150A#; GL_AND : constant Enum := 16#1501#; GL_NAND : constant Enum := 16#150E#; GL_OR : constant Enum := 16#1507#; GL_NOR : constant Enum := 16#1508#; GL_XOR : constant Enum := 16#1506#; GL_EQUIV : constant Enum := 16#1509#; GL_AND_REVERSE : constant Enum := 16#1502#; GL_AND_INVERTED : constant Enum := 16#1504#; GL_OR_REVERSE : constant Enum := 16#150B#; GL_OR_INVERTED : constant Enum := 16#150D#; -- Stencil GL_STENCIL_BITS : constant Enum := 16#D57#; GL_STENCIL_TEST : constant Enum := 16#B90#; GL_STENCIL_CLEAR_VALUE : constant Enum := 16#B91#; GL_STENCIL_FUNC : constant Enum := 16#B92#; GL_STENCIL_VALUE_MASK : constant Enum := 16#B93#; GL_STENCIL_FAIL : constant Enum := 16#B94#; GL_STENCIL_PASS_DEPTH_FAIL : constant Enum := 16#B95#; GL_STENCIL_PASS_DEPTH_PASS : constant Enum := 16#B96#; GL_STENCIL_REF : constant Enum := 16#B97#; GL_STENCIL_WRITEMASK : constant Enum := 16#B98#; GL_STENCIL_INDEX : constant Enum := 16#1901#; GL_KEEP : constant Enum := 16#1E00#; GL_REPLACE : constant Enum := 16#1E01#; GL_INCR : constant Enum := 16#1E02#; GL_DECR : constant Enum := 16#1E03#; -- Buffers, Pixel Drawing/Reading GL_NONE : constant Enum := 16#0#; GL_LEFT : constant Enum := 16#406#; GL_RIGHT : constant Enum := 16#407#; GL_FRONT_LEFT : constant Enum := 16#400#; GL_FRONT_RIGHT : constant Enum := 16#401#; GL_BACK_LEFT : constant Enum := 16#402#; GL_BACK_RIGHT : constant Enum := 16#403#; GL_AUX0 : constant Enum := 16#409#; GL_AUX1 : constant Enum := 16#40A#; GL_AUX2 : constant Enum := 16#40B#; GL_AUX3 : constant Enum := 16#40C#; GL_COLOR_INDEX : constant Enum := 16#1900#; GL_RED : constant Enum := 16#1903#; GL_GREEN : constant Enum := 16#1904#; GL_BLUE : constant Enum := 16#1905#; GL_ALPHA : constant Enum := 16#1906#; GL_LUMINANCE : constant Enum := 16#1909#; GL_LUMINANCE_ALPHA : constant Enum := 16#190A#; GL_ALPHA_BITS : constant Enum := 16#D55#; GL_RED_BITS : constant Enum := 16#D52#; GL_GREEN_BITS : constant Enum := 16#D53#; GL_BLUE_BITS : constant Enum := 16#D54#; GL_INDEX_BITS : constant Enum := 16#D51#; GL_SUBPIXEL_BITS : constant Enum := 16#D50#; GL_AUX_BUFFERS : constant Enum := 16#C00#; GL_READ_BUFFER : constant Enum := 16#C02#; GL_DRAW_BUFFER : constant Enum := 16#C01#; GL_DOUBLEBUFFER : constant Enum := 16#C32#; GL_STEREO : constant Enum := 16#C33#; GL_BITMAP : constant Enum := 16#1A00#; GL_COLOR : constant Enum := 16#1800#; GL_DEPTH : constant Enum := 16#1801#; GL_STENCIL : constant Enum := 16#1802#; GL_DITHER : constant Enum := 16#BD0#; GL_RGB : constant Enum := 16#1907#; GL_RGBA : constant Enum := 16#1908#; -- Implementation limits GL_MAX_LIST_NESTING : constant Enum := 16#B31#; GL_MAX_EVAL_ORDER : constant Enum := 16#D30#; GL_MAX_LIGHTS : constant Enum := 16#D31#; GL_MAX_CLIP_PLANES : constant Enum := 16#D32#; GL_MAX_TEXTURE_SIZE : constant Enum := 16#D33#; GL_MAX_PIXEL_MAP_TABLE : constant Enum := 16#D34#; GL_MAX_ATTRIB_STACK_DEPTH : constant Enum := 16#D35#; GL_MAX_MODELVIEW_STACK_DEPTH : constant Enum := 16#D36#; GL_MAX_NAME_STACK_DEPTH : constant Enum := 16#D37#; GL_MAX_PROJECTION_STACK_DEPTH : constant Enum := 16#D38#; GL_MAX_TEXTURE_STACK_DEPTH : constant Enum := 16#D39#; GL_MAX_VIEWPORT_DIMS : constant Enum := 16#D3A#; GL_MAX_CLIENT_ATTRIB_STACK_DEPTH : constant Enum := 16#D3B#; -- Gets GL_ATTRIB_STACK_DEPTH : constant Enum := 16#BB0#; GL_CLIENT_ATTRIB_STACK_DEPTH : constant Enum := 16#BB1#; GL_COLOR_CLEAR_VALUE : constant Enum := 16#C22#; GL_COLOR_WRITEMASK : constant Enum := 16#C23#; GL_CURRENT_INDEX : constant Enum := 16#B01#; GL_CURRENT_COLOR : constant Enum := 16#B00#; GL_CURRENT_NORMAL : constant Enum := 16#B02#; GL_CURRENT_RASTER_COLOR : constant Enum := 16#B04#; GL_CURRENT_RASTER_DISTANCE : constant Enum := 16#B09#; GL_CURRENT_RASTER_INDEX : constant Enum := 16#B05#; GL_CURRENT_RASTER_POSITION : constant Enum := 16#B07#; GL_CURRENT_RASTER_TEXTURE_COORDS : constant Enum := 16#B06#; GL_CURRENT_RASTER_POSITION_VALID : constant Enum := 16#B08#; GL_CURRENT_TEXTURE_COORDS : constant Enum := 16#B03#; GL_INDEX_CLEAR_VALUE : constant Enum := 16#C20#; GL_INDEX_MODE : constant Enum := 16#C30#; GL_INDEX_WRITEMASK : constant Enum := 16#C21#; GL_MODELVIEW_MATRIX : constant Enum := 16#BA6#; GL_MODELVIEW_STACK_DEPTH : constant Enum := 16#BA3#; GL_NAME_STACK_DEPTH : constant Enum := 16#D70#; GL_PROJECTION_MATRIX : constant Enum := 16#BA7#; GL_PROJECTION_STACK_DEPTH : constant Enum := 16#BA4#; GL_RENDER_MODE : constant Enum := 16#C40#; GL_RGBA_MODE : constant Enum := 16#C31#; GL_TEXTURE_MATRIX : constant Enum := 16#BA8#; GL_TEXTURE_STACK_DEPTH : constant Enum := 16#BA5#; GL_VIEWPORT : constant Enum := 16#BA2#; -- Evaluators GL_AUTO_NORMAL : constant Enum := 16#D80#; GL_MAP1_COLOR_4 : constant Enum := 16#D90#; GL_MAP1_INDEX : constant Enum := 16#D91#; GL_MAP1_NORMAL : constant Enum := 16#D92#; GL_MAP1_TEXTURE_COORD_1 : constant Enum := 16#D93#; GL_MAP1_TEXTURE_COORD_2 : constant Enum := 16#D94#; GL_MAP1_TEXTURE_COORD_3 : constant Enum := 16#D95#; GL_MAP1_TEXTURE_COORD_4 : constant Enum := 16#D96#; GL_MAP1_VERTEX_3 : constant Enum := 16#D97#; GL_MAP1_VERTEX_4 : constant Enum := 16#D98#; GL_MAP2_COLOR_4 : constant Enum := 16#DB0#; GL_MAP2_INDEX : constant Enum := 16#DB1#; GL_MAP2_NORMAL : constant Enum := 16#DB2#; GL_MAP2_TEXTURE_COORD_1 : constant Enum := 16#DB3#; GL_MAP2_TEXTURE_COORD_2 : constant Enum := 16#DB4#; GL_MAP2_TEXTURE_COORD_3 : constant Enum := 16#DB5#; GL_MAP2_TEXTURE_COORD_4 : constant Enum := 16#DB6#; GL_MAP2_VERTEX_3 : constant Enum := 16#DB7#; GL_MAP2_VERTEX_4 : constant Enum := 16#DB8#; GL_MAP1_GRID_DOMAIN : constant Enum := 16#DD0#; GL_MAP1_GRID_SEGMENTS : constant Enum := 16#DD1#; GL_MAP2_GRID_DOMAIN : constant Enum := 16#DD2#; GL_MAP2_GRID_SEGMENTS : constant Enum := 16#DD3#; GL_COEFF : constant Enum := 16#A00#; GL_ORDER : constant Enum := 16#A01#; GL_DOMAIN : constant Enum := 16#A02#; -- Hints GL_PERSPECTIVE_CORRECTION_HINT : constant Enum := 16#C50#; GL_POINT_SMOOTH_HINT : constant Enum := 16#C51#; GL_LINE_SMOOTH_HINT : constant Enum := 16#C52#; GL_POLYGON_SMOOTH_HINT : constant Enum := 16#C53#; GL_FOG_HINT : constant Enum := 16#C54#; GL_DONT_CARE : constant Enum := 16#1100#; GL_FASTEST : constant Enum := 16#1101#; GL_NICEST : constant Enum := 16#1102#; -- Scissor box GL_SCISSOR_BOX : constant Enum := 16#C10#; GL_SCISSOR_TEST : constant Enum := 16#C11#; -- Pixel Mode / Transfer GL_MAP_COLOR : constant Enum := 16#D10#; GL_MAP_STENCIL : constant Enum := 16#D11#; GL_INDEX_SHIFT : constant Enum := 16#D12#; GL_INDEX_OFFSET : constant Enum := 16#D13#; GL_RED_SCALE : constant Enum := 16#D14#; GL_RED_BIAS : constant Enum := 16#D15#; GL_GREEN_SCALE : constant Enum := 16#D18#; GL_GREEN_BIAS : constant Enum := 16#D19#; GL_BLUE_SCALE : constant Enum := 16#D1A#; GL_BLUE_BIAS : constant Enum := 16#D1B#; GL_ALPHA_SCALE : constant Enum := 16#D1C#; GL_ALPHA_BIAS : constant Enum := 16#D1D#; GL_DEPTH_SCALE : constant Enum := 16#D1E#; GL_DEPTH_BIAS : constant Enum := 16#D1F#; GL_PIXEL_MAP_S_TO_S_SIZE : constant Enum := 16#CB1#; GL_PIXEL_MAP_I_TO_I_SIZE : constant Enum := 16#CB0#; GL_PIXEL_MAP_I_TO_R_SIZE : constant Enum := 16#CB2#; GL_PIXEL_MAP_I_TO_G_SIZE : constant Enum := 16#CB3#; GL_PIXEL_MAP_I_TO_B_SIZE : constant Enum := 16#CB4#; GL_PIXEL_MAP_I_TO_A_SIZE : constant Enum := 16#CB5#; GL_PIXEL_MAP_R_TO_R_SIZE : constant Enum := 16#CB6#; GL_PIXEL_MAP_G_TO_G_SIZE : constant Enum := 16#CB7#; GL_PIXEL_MAP_B_TO_B_SIZE : constant Enum := 16#CB8#; GL_PIXEL_MAP_A_TO_A_SIZE : constant Enum := 16#CB9#; GL_PIXEL_MAP_S_TO_S : constant Enum := 16#C71#; GL_PIXEL_MAP_I_TO_I : constant Enum := 16#C70#; GL_PIXEL_MAP_I_TO_R : constant Enum := 16#C72#; GL_PIXEL_MAP_I_TO_G : constant Enum := 16#C73#; GL_PIXEL_MAP_I_TO_B : constant Enum := 16#C74#; GL_PIXEL_MAP_I_TO_A : constant Enum := 16#C75#; GL_PIXEL_MAP_R_TO_R : constant Enum := 16#C76#; GL_PIXEL_MAP_G_TO_G : constant Enum := 16#C77#; GL_PIXEL_MAP_B_TO_B : constant Enum := 16#C78#; GL_PIXEL_MAP_A_TO_A : constant Enum := 16#C79#; GL_PACK_ALIGNMENT : constant Enum := 16#D05#; GL_PACK_LSB_FIRST : constant Enum := 16#D01#; GL_PACK_ROW_LENGTH : constant Enum := 16#D02#; GL_PACK_SKIP_PIXELS : constant Enum := 16#D04#; GL_PACK_SKIP_ROWS : constant Enum := 16#D03#; GL_PACK_SWAP_BYTES : constant Enum := 16#D00#; GL_UNPACK_ALIGNMENT : constant Enum := 16#CF5#; GL_UNPACK_LSB_FIRST : constant Enum := 16#CF1#; GL_UNPACK_ROW_LENGTH : constant Enum := 16#CF2#; GL_UNPACK_SKIP_PIXELS : constant Enum := 16#CF4#; GL_UNPACK_SKIP_ROWS : constant Enum := 16#CF3#; GL_UNPACK_SWAP_BYTES : constant Enum := 16#CF0#; GL_ZOOM_X : constant Enum := 16#D16#; GL_ZOOM_Y : constant Enum := 16#D17#; -- Texture mapping GL_TEXTURE_ENV : constant Enum := 16#2300#; GL_TEXTURE_ENV_MODE : constant Enum := 16#2200#; GL_TEXTURE_1D : constant Enum := 16#DE0#; GL_TEXTURE_2D : constant Enum := 16#DE1#; GL_TEXTURE_WRAP_S : constant Enum := 16#2802#; GL_TEXTURE_WRAP_T : constant Enum := 16#2803#; GL_TEXTURE_MAG_FILTER : constant Enum := 16#2800#; GL_TEXTURE_MIN_FILTER : constant Enum := 16#2801#; GL_TEXTURE_ENV_COLOR : constant Enum := 16#2201#; GL_TEXTURE_GEN_S : constant Enum := 16#C60#; GL_TEXTURE_GEN_T : constant Enum := 16#C61#; GL_TEXTURE_GEN_R : constant Enum := 16#C62#; GL_TEXTURE_GEN_Q : constant Enum := 16#C63#; GL_TEXTURE_GEN_MODE : constant Enum := 16#2500#; GL_TEXTURE_BORDER_COLOR : constant Enum := 16#1004#; GL_TEXTURE_WIDTH : constant Enum := 16#1000#; GL_TEXTURE_HEIGHT : constant Enum := 16#1001#; GL_TEXTURE_BORDER : constant Enum := 16#1005#; GL_TEXTURE_COMPONENTS : constant Enum := 16#1003#; GL_TEXTURE_RED_SIZE : constant Enum := 16#805C#; GL_TEXTURE_GREEN_SIZE : constant Enum := 16#805D#; GL_TEXTURE_BLUE_SIZE : constant Enum := 16#805E#; GL_TEXTURE_ALPHA_SIZE : constant Enum := 16#805F#; GL_TEXTURE_LUMINANCE_SIZE : constant Enum := 16#8060#; GL_TEXTURE_INTENSITY_SIZE : constant Enum := 16#8061#; GL_NEAREST_MIPMAP_NEAREST : constant Enum := 16#2700#; GL_NEAREST_MIPMAP_LINEAR : constant Enum := 16#2702#; GL_LINEAR_MIPMAP_NEAREST : constant Enum := 16#2701#; GL_LINEAR_MIPMAP_LINEAR : constant Enum := 16#2703#; GL_OBJECT_LINEAR : constant Enum := 16#2401#; GL_OBJECT_PLANE : constant Enum := 16#2501#; GL_EYE_LINEAR : constant Enum := 16#2400#; GL_EYE_PLANE : constant Enum := 16#2502#; GL_SPHERE_MAP : constant Enum := 16#2402#; GL_DECAL : constant Enum := 16#2101#; GL_MODULATE : constant Enum := 16#2100#; GL_NEAREST : constant Enum := 16#2600#; GL_REPEAT : constant Enum := 16#2901#; GL_CLAMP : constant Enum := 16#2900#; GL_S : constant Enum := 16#2000#; GL_T : constant Enum := 16#2001#; GL_R : constant Enum := 16#2002#; GL_Q : constant Enum := 16#2003#; -- Utility GL_VENDOR : constant Enum := 16#1F00#; GL_RENDERER : constant Enum := 16#1F01#; GL_VERSION : constant Enum := 16#1F02#; GL_EXTENSIONS : constant Enum := 16#1F03#; -- Errors GL_NO_ERROR : constant Enum := 16#0#; GL_INVALID_ENUM : constant Enum := 16#500#; GL_INVALID_VALUE : constant Enum := 16#501#; GL_INVALID_OPERATION : constant Enum := 16#502#; GL_STACK_OVERFLOW : constant Enum := 16#503#; GL_STACK_UNDERFLOW : constant Enum := 16#504#; GL_OUT_OF_MEMORY : constant Enum := 16#505#; -- Push/Pop Attrib bits GL_CURRENT_BIT : constant Bitfield := 16#00001#; GL_POINT_BIT : constant Bitfield := 16#00002#; GL_LINE_BIT : constant Bitfield := 16#00004#; GL_POLYGON_BIT : constant Bitfield := 16#00008#; GL_POLYGON_STIPPLE_BIT : constant Bitfield := 16#00010#; GL_PIXEL_MODE_BIT : constant Bitfield := 16#00020#; GL_LIGHTING_BIT : constant Bitfield := 16#00040#; GL_FOG_BIT : constant Bitfield := 16#00080#; GL_DEPTH_BUFFER_BIT : constant Bitfield := 16#00100#; GL_ACCUM_BUFFER_BIT : constant Bitfield := 16#00200#; GL_STENCIL_BUFFER_BIT : constant Bitfield := 16#00400#; GL_VIEWPORT_BIT : constant Bitfield := 16#00800#; GL_TRANSFORM_BIT : constant Bitfield := 16#01000#; GL_ENABLE_BIT : constant Bitfield := 16#02000#; GL_COLOR_BUFFER_BIT : constant Bitfield := 16#04000#; GL_HINT_BIT : constant Bitfield := 16#08000#; GL_EVAL_BIT : constant Bitfield := 16#10000#; GL_LIST_BIT : constant Bitfield := 16#20000#; GL_TEXTURE_BIT : constant Bitfield := 16#40000#; GL_SCISSOR_BIT : constant Bitfield := 16#80000#; GL_ALL_ATTRIB_BITS : constant Bitfield := 16#FFFFF#; --------------------------------------------------------------------------- -- OpenGL 1.1 GL_PROXY_TEXTURE_1D : constant Enum := 16#8063#; GL_PROXY_TEXTURE_2D : constant Enum := 16#8064#; GL_TEXTURE_PRIORITY : constant Enum := 16#8066#; GL_TEXTURE_RESIDENT : constant Enum := 16#8067#; GL_TEXTURE_BINDING_1D : constant Enum := 16#8068#; GL_TEXTURE_BINDING_2D : constant Enum := 16#8069#; GL_TEXTURE_INTERNAL_FORMAT : constant Enum := 16#1003#; GL_ALPHA4 : constant Enum := 16#803B#; GL_ALPHA8 : constant Enum := 16#803C#; GL_ALPHA12 : constant Enum := 16#803D#; GL_ALPHA16 : constant Enum := 16#803E#; GL_LUMINANCE4 : constant Enum := 16#803F#; GL_LUMINANCE8 : constant Enum := 16#8040#; GL_LUMINANCE12 : constant Enum := 16#8041#; GL_LUMINANCE16 : constant Enum := 16#8042#; GL_LUMINANCE4_ALPHA4 : constant Enum := 16#8043#; GL_LUMINANCE6_ALPHA2 : constant Enum := 16#8044#; GL_LUMINANCE8_ALPHA8 : constant Enum := 16#8045#; GL_LUMINANCE12_ALPHA4 : constant Enum := 16#8046#; GL_LUMINANCE12_ALPHA12 : constant Enum := 16#8047#; GL_LUMINANCE16_ALPHA16 : constant Enum := 16#8048#; GL_INTENSITY : constant Enum := 16#8049#; GL_INTENSITY4 : constant Enum := 16#804A#; GL_INTENSITY8 : constant Enum := 16#804B#; GL_INTENSITY12 : constant Enum := 16#804C#; GL_INTENSITY16 : constant Enum := 16#804D#; GL_R3_G3_B2 : constant Enum := 16#2A10#; GL_RGB4 : constant Enum := 16#804F#; GL_RGB5 : constant Enum := 16#8050#; GL_RGB8 : constant Enum := 16#8051#; GL_RGB10 : constant Enum := 16#8052#; GL_RGB12 : constant Enum := 16#8053#; GL_RGB16 : constant Enum := 16#8054#; GL_RGBA2 : constant Enum := 16#8055#; GL_RGBA4 : constant Enum := 16#8056#; GL_RGB5_A1 : constant Enum := 16#8057#; GL_RGBA8 : constant Enum := 16#8058#; GL_RGB10_A2 : constant Enum := 16#8059#; GL_RGBA12 : constant Enum := 16#805A#; GL_RGBA16 : constant Enum := 16#805B#; GL_CLIENT_PIXEL_STORE_BIT : constant Enum := 16#1#; GL_CLIENT_VERTEX_ARRAY_BIT : constant Enum := 16#2#; GL_ALL_CLIENT_ATTRIB_BITS : constant Enum := 16#FFFFFFFF#; GL_CLIENT_ALL_ATTRIB_BITS : constant Enum := 16#FFFFFFFF#; --------------------------------------------------------------------------- -- OpenGL 1.2 GL_RESCALE_NORMAL : constant Enum := 16#803A#; GL_CLAMP_TO_EDGE : constant Enum := 16#812F#; GL_MAX_ELEMENTS_VERTICES : constant Enum := 16#80E8#; GL_MAX_ELEMENTS_INDICES : constant Enum := 16#80E9#; GL_BGR : constant Enum := 16#80E0#; GL_BGRA : constant Enum := 16#80E1#; GL_UNSIGNED_BYTE_3_3_2 : constant Enum := 16#8032#; GL_UNSIGNED_BYTE_2_3_3_REV : constant Enum := 16#8362#; GL_UNSIGNED_SHORT_5_6_5 : constant Enum := 16#8363#; GL_UNSIGNED_SHORT_5_6_5_REV : constant Enum := 16#8364#; GL_UNSIGNED_SHORT_4_4_4_4 : constant Enum := 16#8033#; GL_UNSIGNED_SHORT_4_4_4_4_REV : constant Enum := 16#8365#; GL_UNSIGNED_SHORT_5_5_5_1 : constant Enum := 16#8034#; GL_UNSIGNED_SHORT_1_5_5_5_REV : constant Enum := 16#8366#; GL_UNSIGNED_INT_8_8_8_8 : constant Enum := 16#8035#; GL_UNSIGNED_INT_8_8_8_8_REV : constant Enum := 16#8367#; GL_UNSIGNED_INT_10_10_10_2 : constant Enum := 16#8036#; GL_UNSIGNED_INT_2_10_10_10_REV : constant Enum := 16#8368#; GL_LIGHT_MODEL_COLOR_CONTROL : constant Enum := 16#81F8#; GL_SINGLE_COLOR : constant Enum := 16#81F9#; GL_SEPARATE_SPECULAR_COLOR : constant Enum := 16#81FA#; GL_TEXTURE_MIN_LOD : constant Enum := 16#813A#; GL_TEXTURE_MAX_LOD : constant Enum := 16#813B#; GL_TEXTURE_BASE_LEVEL : constant Enum := 16#813C#; GL_TEXTURE_MAX_LEVEL : constant Enum := 16#813D#; GL_SMOOTH_POINT_SIZE_RANGE : constant Enum := 16#B12#; GL_SMOOTH_POINT_SIZE_GRANULARITY : constant Enum := 16#B13#; GL_SMOOTH_LINE_WIDTH_RANGE : constant Enum := 16#B22#; GL_SMOOTH_LINE_WIDTH_GRANULARITY : constant Enum := 16#B23#; GL_ALIASED_POINT_SIZE_RANGE : constant Enum := 16#846D#; GL_ALIASED_LINE_WIDTH_RANGE : constant Enum := 16#846E#; GL_PACK_SKIP_IMAGES : constant Enum := 16#806B#; GL_PACK_IMAGE_HEIGHT : constant Enum := 16#806C#; GL_UNPACK_SKIP_IMAGES : constant Enum := 16#806D#; GL_UNPACK_IMAGE_HEIGHT : constant Enum := 16#806E#; GL_TEXTURE_3D : constant Enum := 16#806F#; GL_PROXY_TEXTURE_3D : constant Enum := 16#8070#; GL_TEXTURE_DEPTH : constant Enum := 16#8071#; GL_TEXTURE_WRAP_R : constant Enum := 16#8072#; GL_MAX_3D_TEXTURE_SIZE : constant Enum := 16#8073#; GL_TEXTURE_BINDING_3D : constant Enum := 16#806A#; --------------------------------------------------------------------------- -- ARB Imaging GL_COLOR_TABLE : constant Enum := 16#80D0#; GL_POST_CONVOLUTION_COLOR_TABLE : constant Enum := 16#80D1#; GL_POST_COLOR_MATRIX_COLOR_TABLE : constant Enum := 16#80D2#; GL_PROXY_COLOR_TABLE : constant Enum := 16#80D3#; GL_PROXY_POST_CONVOLUTION_COLOR_TABLE : constant Enum := 16#80D4#; GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE : constant Enum := 16#80D5#; GL_COLOR_TABLE_SCALE : constant Enum := 16#80D6#; GL_COLOR_TABLE_BIAS : constant Enum := 16#80D7#; GL_COLOR_TABLE_FORMAT : constant Enum := 16#80D8#; GL_COLOR_TABLE_WIDTH : constant Enum := 16#80D9#; GL_COLOR_TABLE_RED_SIZE : constant Enum := 16#80DA#; GL_COLOR_TABLE_GREEN_SIZE : constant Enum := 16#80DB#; GL_COLOR_TABLE_BLUE_SIZE : constant Enum := 16#80DC#; GL_COLOR_TABLE_ALPHA_SIZE : constant Enum := 16#80DD#; GL_COLOR_TABLE_LUMINANCE_SIZE : constant Enum := 16#80DE#; GL_COLOR_TABLE_INTENSITY_SIZE : constant Enum := 16#80DF#; GL_CONVOLUTION_1D : constant Enum := 16#8010#; GL_CONVOLUTION_2D : constant Enum := 16#8011#; GL_SEPARABLE_2D : constant Enum := 16#8012#; GL_CONVOLUTION_BORDER_MODE : constant Enum := 16#8013#; GL_CONVOLUTION_FILTER_SCALE : constant Enum := 16#8014#; GL_CONVOLUTION_FILTER_BIAS : constant Enum := 16#8015#; GL_REDUCE : constant Enum := 16#8016#; GL_CONVOLUTION_FORMAT : constant Enum := 16#8017#; GL_CONVOLUTION_WIDTH : constant Enum := 16#8018#; GL_CONVOLUTION_HEIGHT : constant Enum := 16#8019#; GL_MAX_CONVOLUTION_WIDTH : constant Enum := 16#801A#; GL_MAX_CONVOLUTION_HEIGHT : constant Enum := 16#801B#; GL_POST_CONVOLUTION_RED_SCALE : constant Enum := 16#801C#; GL_POST_CONVOLUTION_GREEN_SCALE : constant Enum := 16#801D#; GL_POST_CONVOLUTION_BLUE_SCALE : constant Enum := 16#801E#; GL_POST_CONVOLUTION_ALPHA_SCALE : constant Enum := 16#801F#; GL_POST_CONVOLUTION_RED_BIAS : constant Enum := 16#8020#; GL_POST_CONVOLUTION_GREEN_BIAS : constant Enum := 16#8021#; GL_POST_CONVOLUTION_BLUE_BIAS : constant Enum := 16#8022#; GL_POST_CONVOLUTION_ALPHA_BIAS : constant Enum := 16#8023#; GL_CONSTANT_BORDER : constant Enum := 16#8151#; GL_REPLICATE_BORDER : constant Enum := 16#8153#; GL_CONVOLUTION_BORDER_COLOR : constant Enum := 16#8154#; GL_COLOR_MATRIX : constant Enum := 16#80B1#; GL_COLOR_MATRIX_STACK_DEPTH : constant Enum := 16#80B2#; GL_MAX_COLOR_MATRIX_STACK_DEPTH : constant Enum := 16#80B3#; GL_POST_COLOR_MATRIX_RED_SCALE : constant Enum := 16#80B4#; GL_POST_COLOR_MATRIX_GREEN_SCALE : constant Enum := 16#80B5#; GL_POST_COLOR_MATRIX_BLUE_SCALE : constant Enum := 16#80B6#; GL_POST_COLOR_MATRIX_ALPHA_SCALE : constant Enum := 16#80B7#; GL_POST_COLOR_MATRIX_RED_BIAS : constant Enum := 16#80B8#; GL_POST_COLOR_MATRIX_GREEN_BIAS : constant Enum := 16#80B9#; GL_POST_COLOR_MATRIX_BLUE_BIAS : constant Enum := 16#80BA#; GL_POST_COLOR_MATRIX_ALPHA_BIAS : constant Enum := 16#80BB#; GL_HISTOGRAM : constant Enum := 16#8024#; GL_PROXY_HISTOGRAM : constant Enum := 16#8025#; GL_HISTOGRAM_WIDTH : constant Enum := 16#8026#; GL_HISTOGRAM_FORMAT : constant Enum := 16#8027#; GL_HISTOGRAM_RED_SIZE : constant Enum := 16#8028#; GL_HISTOGRAM_GREEN_SIZE : constant Enum := 16#8029#; GL_HISTOGRAM_BLUE_SIZE : constant Enum := 16#802A#; GL_HISTOGRAM_ALPHA_SIZE : constant Enum := 16#802B#; GL_HISTOGRAM_LUMINANCE_SIZE : constant Enum := 16#802C#; GL_HISTOGRAM_SINK : constant Enum := 16#802D#; GL_MINMAX : constant Enum := 16#802E#; GL_MINMAX_FORMAT : constant Enum := 16#802F#; GL_MINMAX_SINK : constant Enum := 16#8030#; GL_TABLE_TOO_LARGE : constant Enum := 16#8031#; GL_BLEND_EQUATION : constant Enum := 16#8009#; GL_BLEND_COLOR : constant Enum := 16#8005#; --------------------------------------------------------------------------- -- OpenGL 1.3 GL_TEXTURE0 : constant Enum := 16#84C0#; GL_TEXTURE1 : constant Enum := 16#84C1#; GL_TEXTURE2 : constant Enum := 16#84C2#; GL_TEXTURE3 : constant Enum := 16#84C3#; GL_TEXTURE4 : constant Enum := 16#84C4#; GL_TEXTURE5 : constant Enum := 16#84C5#; GL_TEXTURE6 : constant Enum := 16#84C6#; GL_TEXTURE7 : constant Enum := 16#84C7#; GL_TEXTURE8 : constant Enum := 16#84C8#; GL_TEXTURE9 : constant Enum := 16#84C9#; GL_TEXTURE10 : constant Enum := 16#84CA#; GL_TEXTURE11 : constant Enum := 16#84CB#; GL_TEXTURE12 : constant Enum := 16#84CC#; GL_TEXTURE13 : constant Enum := 16#84CD#; GL_TEXTURE14 : constant Enum := 16#84CE#; GL_TEXTURE15 : constant Enum := 16#84CF#; GL_TEXTURE16 : constant Enum := 16#84D0#; GL_TEXTURE17 : constant Enum := 16#84D1#; GL_TEXTURE18 : constant Enum := 16#84D2#; GL_TEXTURE19 : constant Enum := 16#84D3#; GL_TEXTURE20 : constant Enum := 16#84D4#; GL_TEXTURE21 : constant Enum := 16#84D5#; GL_TEXTURE22 : constant Enum := 16#84D6#; GL_TEXTURE23 : constant Enum := 16#84D7#; GL_TEXTURE24 : constant Enum := 16#84D8#; GL_TEXTURE25 : constant Enum := 16#84D9#; GL_TEXTURE26 : constant Enum := 16#84DA#; GL_TEXTURE27 : constant Enum := 16#84DB#; GL_TEXTURE28 : constant Enum := 16#84DC#; GL_TEXTURE29 : constant Enum := 16#84DD#; GL_TEXTURE30 : constant Enum := 16#84DE#; GL_TEXTURE31 : constant Enum := 16#84DF#; GL_ACTIVE_TEXTURE : constant Enum := 16#84E0#; GL_CLIENT_ACTIVE_TEXTURE : constant Enum := 16#84E1#; GL_MAX_TEXTURE_UNITS : constant Enum := 16#84E2#; -- Texture cube map GL_NORMAL_MAP : constant Enum := 16#8511#; GL_REFLECTION_MAP : constant Enum := 16#8512#; GL_TEXTURE_CUBE_MAP : constant Enum := 16#8513#; GL_TEXTURE_BINDING_CUBE_MAP : constant Enum := 16#8514#; GL_TEXTURE_CUBE_MAP_POSITIVE_X : constant Enum := 16#8515#; GL_TEXTURE_CUBE_MAP_NEGATIVE_X : constant Enum := 16#8516#; GL_TEXTURE_CUBE_MAP_POSITIVE_Y : constant Enum := 16#8517#; GL_TEXTURE_CUBE_MAP_NEGATIVE_Y : constant Enum := 16#8518#; GL_TEXTURE_CUBE_MAP_POSITIVE_Z : constant Enum := 16#8519#; GL_TEXTURE_CUBE_MAP_NEGATIVE_Z : constant Enum := 16#851A#; GL_PROXY_TEXTURE_CUBE_MAP : constant Enum := 16#851B#; GL_MAX_CUBE_MAP_TEXTURE_SIZE : constant Enum := 16#851C#; -- Texture compression GL_COMPRESSED_ALPHA : constant Enum := 16#84E9#; GL_COMPRESSED_LUMINANCE : constant Enum := 16#84EA#; GL_COMPRESSED_LUMINANCE_ALPHA : constant Enum := 16#84EB#; GL_COMPRESSED_INTENSITY : constant Enum := 16#84EC#; GL_COMPRESSED_RGB : constant Enum := 16#84ED#; GL_COMPRESSED_RGBA : constant Enum := 16#84EE#; GL_TEXTURE_COMPRESSION_HINT : constant Enum := 16#84EF#; GL_TEXTURE_COMPRESSED_IMAGE_SIZE : constant Enum := 16#86A0#; GL_TEXTURE_COMPRESSED : constant Enum := 16#86A1#; GL_NUM_COMPRESSED_TEXTURE_FORMATS : constant Enum := 16#86A2#; GL_COMPRESSED_TEXTURE_FORMATS : constant Enum := 16#86A3#; -- Multisample GL_MULTISAMPLE : constant Enum := 16#809D#; GL_SAMPLE_ALPHA_TO_COVERAGE : constant Enum := 16#809E#; GL_SAMPLE_ALPHA_TO_ONE : constant Enum := 16#809F#; GL_SAMPLE_COVERAGE : constant Enum := 16#80A0#; GL_SAMPLE_BUFFERS : constant Enum := 16#80A8#; GL_SAMPLES : constant Enum := 16#80A9#; GL_SAMPLE_COVERAGE_VALUE : constant Enum := 16#80AA#; GL_SAMPLE_COVERAGE_INVERT : constant Enum := 16#80AB#; GL_MULTISAMPLE_BIT : constant Enum := 16#2000_0000#; -- Transpose matrix GL_TRANSPOSE_MODELVIEW_MATRIX : constant Enum := 16#84E3#; GL_TRANSPOSE_PROJECTION_MATRIX : constant Enum := 16#84E4#; GL_TRANSPOSE_TEXTURE_MATRIX : constant Enum := 16#84E5#; GL_TRANSPOSE_COLOR_MATRIX : constant Enum := 16#84E6#; -- Texture env combine GL_COMBINE : constant Enum := 16#8570#; GL_COMBINE_RGB : constant Enum := 16#8571#; GL_COMBINE_ALPHA : constant Enum := 16#8572#; GL_SOURCE0_RGB : constant Enum := 16#8580#; GL_SOURCE1_RGB : constant Enum := 16#8581#; GL_SOURCE2_RGB : constant Enum := 16#8582#; GL_SOURCE0_ALPHA : constant Enum := 16#8588#; GL_SOURCE1_ALPHA : constant Enum := 16#8589#; GL_SOURCE2_ALPHA : constant Enum := 16#858A#; GL_OPERAND0_RGB : constant Enum := 16#8590#; GL_OPERAND1_RGB : constant Enum := 16#8591#; GL_OPERAND2_RGB : constant Enum := 16#8592#; GL_OPERAND0_ALPHA : constant Enum := 16#8598#; GL_OPERAND1_ALPHA : constant Enum := 16#8599#; GL_OPERAND2_ALPHA : constant Enum := 16#859A#; GL_RGB_SCALE : constant Enum := 16#8573#; GL_ADD_SIGNED : constant Enum := 16#8574#; GL_INTERPOLATE : constant Enum := 16#8575#; GL_SUBTRACT : constant Enum := 16#84E7#; GL_CONSTANT : constant Enum := 16#8576#; GL_PRIMARY_COLOR : constant Enum := 16#8577#; GL_PREVIOUS : constant Enum := 16#8578#; -- Texture env dot3 GL_DOT3_RGB : constant Enum := 16#86AE#; GL_DOT3_RGBA : constant Enum := 16#86AF#; -- Texture border clamp GL_CLAMP_TO_BORDER : constant Enum := 16#812D#; --------------------------------------------------------------------------- -- ARB extension 1 and OpenGL 1.2.1 GL_ARB_multitexture : constant Enum := 1; GL_TEXTURE0_ARB : constant Enum := 16#84C0#; GL_TEXTURE1_ARB : constant Enum := 16#84C1#; GL_TEXTURE2_ARB : constant Enum := 16#84C2#; GL_TEXTURE3_ARB : constant Enum := 16#84C3#; GL_TEXTURE4_ARB : constant Enum := 16#84C4#; GL_TEXTURE5_ARB : constant Enum := 16#84C5#; GL_TEXTURE6_ARB : constant Enum := 16#84C6#; GL_TEXTURE7_ARB : constant Enum := 16#84C7#; GL_TEXTURE8_ARB : constant Enum := 16#84C8#; GL_TEXTURE9_ARB : constant Enum := 16#84C9#; GL_TEXTURE10_ARB : constant Enum := 16#84CA#; GL_TEXTURE11_ARB : constant Enum := 16#84CB#; GL_TEXTURE12_ARB : constant Enum := 16#84CC#; GL_TEXTURE13_ARB : constant Enum := 16#84CD#; GL_TEXTURE14_ARB : constant Enum := 16#84CE#; GL_TEXTURE15_ARB : constant Enum := 16#84CF#; GL_TEXTURE16_ARB : constant Enum := 16#84D0#; GL_TEXTURE17_ARB : constant Enum := 16#84D1#; GL_TEXTURE18_ARB : constant Enum := 16#84D2#; GL_TEXTURE19_ARB : constant Enum := 16#84D3#; GL_TEXTURE20_ARB : constant Enum := 16#84D4#; GL_TEXTURE21_ARB : constant Enum := 16#84D5#; GL_TEXTURE22_ARB : constant Enum := 16#84D6#; GL_TEXTURE23_ARB : constant Enum := 16#84D7#; GL_TEXTURE24_ARB : constant Enum := 16#84D8#; GL_TEXTURE25_ARB : constant Enum := 16#84D9#; GL_TEXTURE26_ARB : constant Enum := 16#84DA#; GL_TEXTURE27_ARB : constant Enum := 16#84DB#; GL_TEXTURE28_ARB : constant Enum := 16#84DC#; GL_TEXTURE29_ARB : constant Enum := 16#84DD#; GL_TEXTURE30_ARB : constant Enum := 16#84DE#; GL_TEXTURE31_ARB : constant Enum := 16#84DF#; GL_ACTIVE_TEXTURE_ARB : constant Enum := 16#84E0#; GL_CLIENT_ACTIVE_TEXTURE_ARB : constant Enum := 16#84E1#; GL_MAX_TEXTURE_UNITS_ARB : constant Enum := 16#84E2#; --------------------------------------------------------------------------- -- OpenGL 1.4 GL_BLEND_DST_RGB : constant Enum := 16#80C8#; GL_BLEND_SRC_RGB : constant Enum := 16#80C9#; GL_BLEND_DST_ALPHA : constant Enum := 16#80CA#; GL_BLEND_SRC_ALPHA : constant Enum := 16#80CB#; GL_POINT_FADE_THRESHOLD_SIZE : constant Enum := 16#8128#; GL_DEPTH_COMPONENT16 : constant Enum := 16#81A5#; GL_DEPTH_COMPONENT24 : constant Enum := 16#81A6#; GL_DEPTH_COMPONENT32 : constant Enum := 16#81A7#; GL_MIRRORED_REPEAT : constant Enum := 16#8370#; GL_MAX_TEXTURE_LOD_BIAS : constant Enum := 16#84FD#; GL_TEXTURE_LOD_BIAS : constant Enum := 16#8501#; GL_INCR_WRAP : constant Enum := 16#8507#; GL_DECR_WRAP : constant Enum := 16#8508#; GL_TEXTURE_DEPTH_SIZE : constant Enum := 16#884A#; GL_TEXTURE_COMPARE_MODE : constant Enum := 16#884C#; GL_TEXTURE_COMPARE_FUNC : constant Enum := 16#884D#; GL_POINT_SIZE_MIN : constant Enum := 16#8126#; GL_POINT_SIZE_MAX : constant Enum := 16#8127#; GL_POINT_DISTANCE_ATTENUATION : constant Enum := 16#8129#; GL_GENERATE_MIPMAP : constant Enum := 16#8191#; GL_GENERATE_MIPMAP_HINT : constant Enum := 16#8192#; GL_FOG_COORDINATE_SOURCE : constant Enum := 16#8450#; GL_FOG_COORDINATE : constant Enum := 16#8451#; GL_FOG_COORDINATE_ARRAY_TYPE : constant Enum := 16#8454#; GL_FOG_COORDINATE_ARRAY_STRIDE : constant Enum := 16#8455#; GL_FOG_COORDINATE_ARRAY_POINTER : constant Enum := 16#8456#; GL_FOG_COORDINATE_ARRAY : constant Enum := 16#8457#; GL_FRAGMENT_DEPTH : constant Enum := 16#8452#; GL_CURRENT_FOG_COORDINATE : constant Enum := 16#8453#; GL_COLOR_SUM : constant Enum := 16#8458#; GL_CURRENT_SECONDARY_COLOR : constant Enum := 16#8459#; GL_SECONDARY_COLOR_ARRAY_SIZE : constant Enum := 16#845A#; GL_SECONDARY_COLOR_ARRAY_TYPE : constant Enum := 16#845B#; GL_SECONDARY_COLOR_ARRAY_STRIDE : constant Enum := 16#845C#; GL_SECONDARY_COLOR_ARRAY_POINTER : constant Enum := 16#845D#; GL_SECONDARY_COLOR_ARRAY : constant Enum := 16#845E#; GL_TEXTURE_FILTER_CONTROL : constant Enum := 16#8500#; GL_DEPTH_TEXTURE_MODE : constant Enum := 16#884B#; GL_COMPARE_R_TO_TEXTURE : constant Enum := 16#884E#; GL_FUNC_ADD : constant Enum := 16#8006#; GL_FUNC_SUBTRACT : constant Enum := 16#800A#; GL_FUNC_REVERSE_SUBTRACT : constant Enum := 16#800B#; GL_CONSTANT_COLOR : constant Enum := 16#8001#; GL_ONE_MINUS_CONSTANT_COLOR : constant Enum := 16#8002#; GL_CONSTANT_ALPHA : constant Enum := 16#8003#; GL_ONE_MINUS_CONSTANT_ALPHA : constant Enum := 16#8004#; --------------------------------------------------------------------------- -- Others... GL_TEXTURE_1D_ARRAY_EXT : constant Enum := 16#8C18#; GL_PROXY_TEXTURE_1D_ARRAY_EXT : constant Enum := 16#8C19#; GL_TEXTURE_2D_ARRAY_EXT : constant Enum := 16#8C1A#; GL_PROXY_TEXTURE_2D_ARRAY_EXT : constant Enum := 16#8C1B#; GL_TEXTURE_BINDING_1D_ARRAY_EXT : constant Enum := 16#8C1C#; GL_TEXTURE_BINDING_2D_ARRAY_EXT : constant Enum := 16#8C1D#; GL_POINT_SPRITE : constant Enum := 16#8861#; GL_COORD_REPLACE : constant Enum := 16#8862#; GL_MAX_ARRAY_TEXTURE_LAYERS_EXT : constant Enum := 16#88FF#; GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT : constant Enum := 16#8CD4#; GL_FRAMEBUFFER : constant Enum := 16#8D40#; GL_READ_FRAMEBUFFER : constant Enum := 16#8CA8#; GL_WRITE_FRAMEBUFFER : constant Enum := 16#8CA9#; GL_RENDERBUFFER : constant Enum := 16#8D41#; GL_ARRAY_BUFFER : constant Enum := 16#8892#; GL_ELEMENT_ARRAY_BUFFER : constant Enum := 16#8893#; GL_STATIC_DRAW : constant Enum := 16#88E4#; GL_DYNAMIC_DRAW : constant Enum := 16#88E8#; GL_VERTEX_SHADER : constant Enum := 16#8B31#; GL_FRAGMENT_SHADER : constant Enum := 16#8B30#; GL_DELETE_STATUS : constant Enum := 16#8B80#; GL_COMPILE_STATUS : constant Enum := 16#8B81#; GL_LINK_STATUS : constant Enum := 16#8B82#; GL_VALIDATE_STATUS : constant Enum := 16#8B83#; GL_INFO_LOG_LENGTH : constant Enum := 16#8B84#; GL_SHADING_LANGUAGE_VERSION : constant Enum := 16#8B8C#; --------------------------------------------------------------------------- -- OpenGL 1.0 and 1.1 subprograms (in order as defined in gl.h) -- Miscellanous procedure Clear_Index (C : in Float) with Import => True, Convention => StdCall, External_Name => "glClearIndex"; procedure Clear_Color (Red : in ClampF; Green : in ClampF; Blue : in ClampF; Alpha : in ClampF ) with Import => True, Convention => StdCall, External_Name => "glClearColor"; procedure Clear (Mask : in Bitfield) with Import => True, Convention => StdCall, External_Name => "glClear"; procedure Index_Mask (Mask : in UInt) with Import => True, Convention => StdCall, External_Name => "glIndexMask"; procedure Color_Mask (Red : in Bool; Green : in Bool; Blue : in Bool; Alpha : in Bool ) with Import => True, Convention => StdCall, External_Name => "glColorMask"; procedure Alpha_Func (Func : in Enum; Ref : in ClampF ) with Import => True, Convention => StdCall, External_Name => "glAlphaFunc"; procedure Blend_Func (S_Factor : in Enum; D_Factor : in Enum ) with Import => True, Convention => StdCall, External_Name => "glBlendFunc"; procedure Blend_Func_Separate (S_Factor_RGB : in Enum; D_Factor_RGB : in Enum; S_Factor_Alpha : in Enum; D_Factro_Alpha : in Enum) with Import => True, Convention => StdCall, External_Name => "glBlendFuncSeparate"; procedure Logic_Op (Op_Code : in Enum) with Import => True, Convention => StdCall, External_Name => "glLogicOp"; procedure Cull_Face (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glCullFace"; procedure Front_Face (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glFrontFace"; procedure Point_Size (Size : in Float) with Import => True, Convention => StdCall, External_Name => "glPointSize"; procedure Point_Parameter (PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glPointParameterf"; procedure Point_Parameter (PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glPointParameteri"; procedure Point_Parameter (PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glPointParameterfv"; procedure Point_Parameter (PName : in Enum; Params : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glPointParameterfv"; procedure Point_Parameter (PName : in Enum; Params : in Floats) with Import => True, Convention => StdCall, External_Name => "glPointParameterfv"; procedure Point_Parameter (PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glPointParameteriv"; procedure Point_Parameter (PName : in Enum; Params : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glPointParameteriv"; procedure Point_Parameter (PName : in Enum; Params : in Ints) with Import => True, Convention => StdCall, External_Name => "glPointParameteriv"; procedure Line_Width (Width : in Float) with Import => True, Convention => StdCall, External_Name => "glLineWidth"; procedure Line_Stipple (Factor : in Int; Pattern : in UShort ) with Import => True, Convention => StdCall, External_Name => "glLineStipple"; procedure Polygon_Mode (Face : in Enum; Mode : in Enum ) with Import => True, Convention => StdCall, External_Name => "glPolygonMode"; procedure Polygon_Offset (Factor : in Float; Units : in Float ) with Import => True, Convention => StdCall, External_Name => "glPolygonOffset"; procedure Polygon_Stipple (Mask : in Pointer) -- array of UByte with Import => True, Convention => StdCall, External_Name => "glPolygonStipple"; procedure Get_Polygon_Stipple (Mask : in Pointer) -- array of UByte with Import => True, Convention => StdCall, External_Name => "glGetPolygonStipple"; procedure Edge_Flag (Flag : in Bool) with Import => True, Convention => StdCall, External_Name => "glEdgeFlag"; procedure Edge_Flag (Flag : in Pointer) -- array of Bool with Import => True, Convention => StdCall, External_Name => "glEdgeFlagv"; procedure Scissor (X : Int; Y : Int; Width : SizeI; Height : SizeI ) with Import => True, Convention => StdCall, External_Name => "glScissor"; procedure Clip_Plane (Plane : in Enum; Equation : in Pointer -- array of Double ) with Import => True, Convention => StdCall, External_Name => "glClipPlane"; procedure Get_Clip_Plane (Plane : in Enum; Equation : in Pointer -- array of Double ) with Import => True, Convention => StdCall, External_Name => "glGetClipPlane"; procedure Draw_Buffer (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glDrawBuffer"; procedure Read_Buffer (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glReadBuffer"; procedure Enable (Cap : in Enum) with Import => True, Convention => StdCall, External_Name => "glEnable"; procedure Disable (Cap : in Enum) with Import => True, Convention => StdCall, External_Name => "glDisable"; function Is_Enabled (Cap : in Enum) return Bool with Import => True, Convention => StdCall, External_Name => "glIsEnabled"; procedure Get_Boolean (PName : in Enum; Params : in Pointer -- array of Bool ) with Import => True, Convention => StdCall, External_Name => "glGetBooleanv"; procedure Get_Double (PName : in Enum; Params : in Pointer -- array of Double ) with Import => True, Convention => StdCall, External_Name => "glGetDoublev"; procedure Get_Float (PName : in Enum; Params : in Pointer -- array of Float ) with Import => True, Convention => StdCall, External_Name => "glGetFloatv"; procedure Get_Integer (PName : in Enum; Params : in Pointer -- array of Integer ) with Import => True, Convention => StdCall, External_Name => "glGetIntegerv"; procedure Push_Attrib (Mask : in Bitfield) with Import => True, Convention => StdCall, External_Name => "glPushAttrib"; procedure Pop_Attrib with Import => True, Convention => StdCall, External_Name => "glPopAttrib"; procedure Render_Mode (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glRenderMode"; function Get_Error return Enum with Import => True, Convention => StdCall, External_Name => "glGetError"; function Get_String (Name : Enum) return String with Inline => True; procedure Finish with Import => True, Convention => StdCall, External_Name => "glFinish"; procedure Flush with Import => True, Convention => StdCall, External_Name => "glFlush"; procedure Hint (Target : Enum; Hint : Enum) with Import => True, Convention => StdCall, External_Name => "glHint"; procedure Sample_Coverage (Value : in ClampF; Inver : in Bool) with Import => True, Convention => StdCall, External_Name => "glSampleCoverage"; -- Depth buffer procedure Clear_Depth (Depth : in ClampD) with Import => True, Convention => StdCall, External_Name => "glClearDepth"; procedure Depth_Func (Func : in Enum) with Import => True, Convention => StdCall, External_Name => "glDepthFunc"; procedure Depth_Mask (Flag : in Bool) with Import => True, Convention => StdCall, External_Name => "glDepthMask"; procedure Depth_Range (Near_Val : in ClampD; Far_Val : in ClampD ) with Import => True, Convention => StdCall, External_Name => "glDepthRange"; -- Accumulation buffer procedure Clear_Accum (Red : in Float; Green : in Float; Blue : in Float; Alpha : in Float ) with Import => True, Convention => StdCall, External_Name => "glClearAccum"; procedure Accum (Op : in Enum; Value : in Float ) with Import => True, Convention => StdCall, External_Name => "glAccum"; -- Transformation procedure Matrix_Mode (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glMatrixMode"; procedure Ortho (Left : in Double; Right : in Double; Bottom : in Double; Top : in Double; Near_Val : in Double; Far_Val : in Double ) with Import => True, Convention => StdCall, External_Name => "glOrtho"; procedure Frustum (Left : in Double; Right : in Double; Bottom : in Double; Top : in Double; Near_Val : in Double; Far_Val : in Double ) with Import => True, Convention => StdCall, External_Name => "glFrustum"; procedure Viewport (X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI ) with Import => True, Convention => StdCall, External_Name => "glViewport"; procedure Push_Matrix with Import => True, Convention => StdCall, External_Name => "glPushMatrix"; procedure Pop_Matrix with Import => True, Convention => StdCall, External_Name => "glPopMatrix"; procedure Load_Identity with Import => True, Convention => StdCall, External_Name => "glLoadIdentity"; procedure Load_Matrix (M : in Float_Matrix) with Import => True, Convention => StdCall, External_Name => "glLoadMatrixf"; procedure Load_Matrix (M : in Double_Matrix) with Import => True, Convention => StdCall, External_Name => "glLoadMatrixd"; procedure Mult_Matrix (M : in Float_Matrix) with Import => True, Convention => StdCall, External_Name => "glMultMatrixf"; procedure Mult_Matrix (M : in Double_Matrix) with Import => True, Convention => StdCall, External_Name => "glMultMatrixd"; procedure Load_Transpose_Matrix (M : in Double_Matrix) with Import => True, Convention => StdCall, External_Name => "glLoadTransposeMatrixd"; procedure Load_Transpose_Matrix (M : in Float_Matrix) with Import => True, Convention => StdCall, External_Name => "glLoadTransposeMatrixf"; procedure Mult_Transpose_Matrix (M : in Double_Matrix) with Import => True, Convention => StdCall, External_Name => "glMultTransposeMatrixd"; procedure Mult_Transpose_Matrix (M : in Float_Matrix) with Import => True, Convention => StdCall, External_Name => "glMultTransposeMatrixf"; procedure Rotate (Angle : in Double; X : in Double; Y : in Double; Z : in Double ) with Import => True, Convention => StdCall, External_Name => "glRotated"; procedure Rotate (Angle : in Float; X : in Float; Y : in Float; Z : in Float ) with Import => True, Convention => StdCall, External_Name => "glRotatef"; procedure Scale (X : in Double; Y : in Double; Z : in Double ) with Import => True, Convention => StdCall, External_Name => "glScaled"; procedure Scale (X : in Float; Y : in Float; Z : in Float ) with Import => True, Convention => StdCall, External_Name => "glScalef"; procedure Translate (X : in Double; Y : in Double; Z : in Double ) with Import => True, Convention => StdCall, External_Name => "glTranslated"; procedure Translate (X : in Float; Y : in Float; Z : in Float ) with Import => True, Convention => StdCall, External_Name => "glTranslatef"; -- Display Lists function Is_List (List : in UInt) return Bool with Import => True, Convention => StdCall, External_Name => "glIsList"; procedure Delete_Lists (List : in UInt; SRange : in SizeI ) with Import => True, Convention => StdCall, External_Name => "glDeleteLists"; function Gen_Lists (SRange : in SizeI) return UInt with Import => True, Convention => StdCall, External_Name => "glGenLists"; procedure New_List (List : in UInt; Mode : in Enum ) with Import => True, Convention => StdCall, External_Name => "glNewList"; procedure End_List with Import => True, Convention => StdCall, External_Name => "glEndList"; procedure Call_List (List : in UInt) with Import => True, Convention => StdCall, External_Name => "glCallList"; procedure Call_Lists (N : in SizeI; SType : in Enum; Lists : in Pointer ) with Import => True, Convention => StdCall, External_Name => "glCallLists"; procedure List_Base (Base : in UInt) with Import => True, Convention => StdCall, External_Name => "glListBase"; -- Drawing Functions procedure Begin_Primitive (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glBegin"; procedure End_Primitive with Import => True, Convention => StdCall, External_Name => "glEnd"; procedure Vertex (X : in Double; Y : in Double ) with Import => True, Convention => StdCall, External_Name => "glVertex2d"; procedure Vertex (X : in Float; Y : in Float ) with Import => True, Convention => StdCall, External_Name => "glVertex2f"; procedure Vertex (X : in Int; Y : in Int ) with Import => True, Convention => StdCall, External_Name => "glVertex2i"; procedure Vertex (X : in Short; Y : in Short ) with Import => True, Convention => StdCall, External_Name => "glVertex2s"; procedure Vertex (X : in Double; Y : in Double; Z : in Double ) with Import => True, Convention => StdCall, External_Name => "glVertex3d"; procedure Vertex (X : in Float; Y : in Float; Z : in Float ) with Import => True, Convention => StdCall, External_Name => "glVertex3f"; procedure Vertex (X : in Int; Y : in Int; Z : in Int ) with Import => True, Convention => StdCall, External_Name => "glVertex3i"; procedure Vertex (X : in Short; Y : in Short; Z : in Short ) with Import => True, Convention => StdCall, External_Name => "glVertex3s"; procedure Vertex (X : in Double; Y : in Double; Z : in Double; W : in Double ) with Import => True, Convention => StdCall, External_Name => "glVertext4d"; procedure Vertex (X : in Float; Y : in Float; Z : in Float; W : in Float ) with Import => True, Convention => StdCall, External_Name => "glVertex4f"; procedure Vertex (X : in Int; Y : in Int; Z : in Int; W : in Int ) with Import => True, Convention => StdCall, External_Name => "glVertex4i"; procedure Vertex (X : in Short; Y : in Short; Z : in Short; W : in Short ) with Import => True, Convention => StdCall, External_Name => "glVertex4s"; procedure Vertex (V : in Doubles_2) with Import => True, Convention => StdCall, External_Name => "glVertex2dv"; procedure Vertex (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glVertex3dv"; procedure Vertex (V : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glVertex4dv"; procedure Vertex (V : in Floats_2) with Import => True, Convention => StdCall, External_Name => "glVertex2fv"; procedure Vertex (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glVertex3fv"; procedure Vertex (V : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glVertex4fv"; procedure Vertex (V : in Ints_2) with Import => True, Convention => StdCall, External_Name => "glVertex2iv"; procedure Vertex (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glVertex3iv"; procedure Vertex (V : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glVertex4iv"; procedure Vertex (V : in Shorts_2) with Import => True, Convention => StdCall, External_Name => "glVertex2sv"; procedure Vertex (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glVertex3sv"; procedure Vertex (V : in Shorts_4) with Import => True, Convention => StdCall, External_Name => "glVertex4sv"; procedure Normal (X : in Byte; Y : in Byte; Z : in Byte ) with Import => True, Convention => StdCall, External_Name => "glNormal3b"; procedure Normal (X : in Double; Y : in Double; Z : in Double ) with Import => True, Convention => StdCall, External_Name => "glNormal3d"; procedure Normal (X : in Float; Y : in Float; Z : in Float ) with Import => True, Convention => StdCall, External_Name => "glNormal3f"; procedure Normal (X : in Int; Y : in Int; Z : in Int ) with Import => True, Convention => StdCall, External_Name => "glNormal3i"; procedure Normal (X : in Short; Y : in Short; Z : in Short ) with Import => True, Convention => StdCall, External_Name => "glNormal3s"; procedure Normal (V : in Bytes_3) with Import => True, Convention => StdCall, External_Name => "glNormal3bv"; procedure Normal (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glNormal3dv"; procedure Normal (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glNormal3fv"; procedure Normal (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glNormal3iv"; procedure Normal (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glNormal3sv"; procedure Index (C : in Double) with Import => True, Convention => StdCall, External_Name => "glIndexd"; procedure Index (C : in Float) with Import => True, Convention => StdCall, External_Name => "glIndexf"; procedure Index (C : in Int) with Import => True, Convention => StdCall, External_Name => "glIndexi"; procedure Index (C : in Short) with Import => True, Convention => StdCall, External_Name => "glIndexs"; procedure Index (C : in Doubles) with Import => True, Convention => StdCall, External_Name => "glIndexdv"; procedure Index (C : in Floats) with Import => True, Convention => StdCall, External_Name => "glIndexfv"; procedure Index (C : in Ints) with Import => True, Convention => StdCall, External_Name => "glIndexiv"; procedure Index (C : in Shorts) with Import => True, Convention => StdCall, External_Name => "glIndexsv"; --------------------------------------------------------------------------- -- Component color procedure Color (Red : in Byte; Green : in Byte; Blue : in Byte) with Import => True, Convention => StdCall, External_Name => "glColor3b"; procedure Color (Red : in Short; Green : in Short; Blue : in Short) with Import => True, Convention => StdCall, External_Name => "glColor3s"; procedure Color (Red : in Int; Green : in Int; Blue : in Int) with Import => True, Convention => StdCall, External_Name => "glColor3i"; procedure Color (Red : in Float; Green : in Float; Blue : in Float) with Import => True, Convention => StdCall, External_Name => "glColor3f"; procedure Color (Red : in Double; Green : in Double; Blue : in Double) with Import => True, Convention => StdCall, External_Name => "glColor3d"; procedure Color (Red : in UByte; Green : in UByte; Blue : in UByte) with Import => True, Convention => StdCall, External_Name => "glColor3ub"; procedure Color (Red : in UShort; Green : in UShort; Blue : in UShort) with Import => True, Convention => StdCall, External_Name => "glColor3us"; procedure Color (Red : in UInt; Green : in UInt; Blue : in UInt) with Import => True, Convention => StdCall, External_Name => "glColor3ui"; procedure Color (Red : in Byte; Green : in Byte; Blue : in Byte; Alpha : in Byte) with Import => True, Convention => StdCall, External_Name => "glColor4b"; procedure Color (Red : in Short; Green : in Short; Blue : in Short; Alpha : in Short) with Import => True, Convention => StdCall, External_Name => "glColor4s"; procedure Color (Red : in Int; Green : in Int; Blue : in Int; Alpha : in Int) with Import => True, Convention => StdCall, External_Name => "glColor4i"; procedure Color (Red : in Float; Green : in Float; Blue : in Float; Alpha : in Float) with Import => True, Convention => StdCall, External_Name => "glColor4f"; procedure Color (Red : in Double; Green : in Double; Blue : in Double; Alpha : in Double) with Import => True, Convention => StdCall, External_Name => "glColor4d"; procedure Color (Red : in UByte; Green : in UByte; Blue : in UByte; Alpha : in UByte) with Import => True, Convention => StdCall, External_Name => "glColor4ub"; procedure Color (Red : in UShort; Green : in UShort; Blue : in UShort; Alpha : in UShort) with Import => True, Convention => StdCall, External_Name => "glColor4us"; procedure Color (Red : in UInt; Green : in UInt; Blue : in UInt; Alpha : in UInt) with Import => True, Convention => StdCall, External_Name => "glColor4ui"; procedure Color (V : in Bytes_3) with Import => True, Convention => StdCall, External_Name => "glColor3bv"; procedure Color (V : in Bytes_4) with Import => True, Convention => StdCall, External_Name => "glColor4bv"; procedure Color (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glColor3sv"; procedure Color (V : in Shorts_4) with Import => True, Convention => StdCall, External_Name => "glColor4sv"; procedure Color (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glColor3iv"; procedure Color (V : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glColor4iv"; procedure Color (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glColor3fv"; procedure Color (V : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glColor4fv"; procedure Color (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glColor3dv"; procedure Color (V : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glColor4dv"; procedure Color (V : in UBytes_3) with Import => True, Convention => StdCall, External_Name => "glColor3ubv"; procedure Color (V : in UBytes_4) with Import => True, Convention => StdCall, External_Name => "glColor4ubv"; procedure Color (V : in UShorts_3) with Import => True, Convention => StdCall, External_Name => "glColor3usv"; procedure Color (V : in UShorts_4) with Import => True, Convention => StdCall, External_Name => "glColor4usv"; procedure Color (V : in UInts_3) with Import => True, Convention => StdCall, External_Name => "glColor3uiv"; procedure Color (V : in UInts_4) with Import => True, Convention => StdCall, External_Name => "glColor4uiv"; procedure Secondary_Color (Red : in Byte; Green : in Byte; Blue : in Byte) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3b"; procedure Secondary_Color (V : in Bytes_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3bv"; procedure Secondary_Color (Red : in Double; Green : in Double; Blue : in Double) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3d"; procedure Secondary_Color (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3dv"; procedure Secondary_Color (Red : in Float; Green : in Float; Blue : in Float) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3f"; procedure Secondary_Color (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3fv"; procedure Secondary_Color (Red : in Int; Green : in Int; Blue : in Int) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3i"; procedure Secondary_Color (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3iv"; procedure Secondary_Color (Red : in Short; Green : in Short; Blue : in Short) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3s"; procedure Secondary_Color (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3sv"; procedure Secondary_Color (Red : in UByte; Green : in UByte; Blue : in UByte) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3ub"; procedure Secondary_Color (V : in UBytes_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3ubv"; procedure Secondary_Color (Red : in UInt; Green : in UInt; Blue : in UInt) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3ui"; procedure Secondary_Color (V : in UInts_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3uiv"; procedure Secondary_Color (Red : in UShort; Green : in UShort; Blue : in UShort) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3us"; procedure Secondary_Color (V : in UShorts_3) with Import => True, Convention => StdCall, External_Name => "glSecondaryColor3usv"; procedure Secondary_Color_Pointer (Size : in Int; Type_Of : in Enum; Stride : in SizeI; Colors : in Pointer) with Import => True, Convention => StdCall, External_Name => "glSecondaryPointer"; --------------------------------------------------------------------------- -- Texture coordinates procedure Tex_Coord (S : in Short) with Import => True, Convention => StdCall, External_Name => "glTexCoord1s"; procedure Tex_Coord (S : in Int) with Import => True, Convention => StdCall, External_Name => "glTexCoord1i"; procedure Tex_Coord (S : in Float) with Import => True, Convention => StdCall, External_Name => "glTexCoord1f"; procedure Tex_Coord (S : in Double) with Import => True, Convention => StdCall, External_Name => "glTexCoord1d"; procedure Tex_Coord (S : in Short; T : in Short) with Import => True, Convention => StdCall, External_Name => "glTexCoord2s"; procedure Tex_Coord (S : in Int; T : in Int) with Import => True, Convention => StdCall, External_Name => "glTexCoord2i"; procedure Tex_Coord (S : in Float; T : in Float) with Import => True, Convention => StdCall, External_Name => "glTexCoord2f"; procedure Tex_Coord (S : in Double; T : in Double) with Import => True, Convention => StdCall, External_Name => "glTexCoord2d"; procedure Tex_Coord (S : in Short; T : in Short; R : in Short) with Import => True, Convention => StdCall, External_Name => "glTexCoord3s"; procedure Tex_Coord (S : in Int; T : in Int; R : in Int) with Import => True, Convention => StdCall, External_Name => "glTexCoord3i"; procedure Tex_Coord (S : in Float; T : in Float; R : in Float) with Import => True, Convention => StdCall, External_Name => "glTexCoord3f"; procedure Tex_Coord (S : in Double; T : in Double; R : in Double) with Import => True, Convention => StdCall, External_Name => "glTexCoord3d"; procedure Tex_Coord (S : in Short; T : in Short; R : in Short; Q : in Short) with Import => True, Convention => StdCall, External_Name => "glTexCoord4s"; procedure Tex_Coord (S : in Int; T : in Int; R : in Int; Q : in Int) with Import => True, Convention => StdCall, External_Name => "glTexCoord4i"; procedure Tex_Coord (S : in Float; T : in Float; R : in Float; Q : in Float) with Import => True, Convention => StdCall, External_Name => "glTexCoord4f"; procedure Tex_Coord (S : in Double; T : in Double; R : in Double; Q : in Double) with Import => True, Convention => StdCall, External_Name => "glTexCoord4d"; procedure Tex_Coord (V : in Shorts_1) with Import => True, Convention => StdCall, External_Name => "glTexCoord1sv"; procedure Tex_Coord (V : in Shorts_2) with Import => True, Convention => StdCall, External_Name => "glTexCoord2sv"; procedure Tex_Coord (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glTexCoord3sv"; procedure Tex_Coord (V : in Shorts_4) with Import => True, Convention => StdCall, External_Name => "glTexCoord4sv"; procedure Tex_Coord (V : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glTexCoord1iv"; procedure Tex_Coord (V : in Ints_2) with Import => True, Convention => StdCall, External_Name => "glTexCoord2iv"; procedure Tex_Coord (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glTexCoord3iv"; procedure Tex_Coord (V : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glTexCoord4iv"; procedure Tex_Coord (V : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glTexCoord1fv"; procedure Tex_Coord (V : in Floats_2) with Import => True, Convention => StdCall, External_Name => "glTexCoord2fv"; procedure Tex_Coord (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glTexCoord3fv"; procedure Tex_Coord (V : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glTexCoord4fv"; procedure Tex_Coord (V : in Doubles_1) with Import => True, Convention => StdCall, External_Name => "glTexCoord1dv"; procedure Tex_Coord (V : in Doubles_2) with Import => True, Convention => StdCall, External_Name => "glTexCoord2dv"; procedure Tex_Coord (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glTexCoord3dv"; procedure Tex_Coord (V : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glTexCoord4dv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Double) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1d"; procedure Multi_Tex_Coord (Target : in Enum; V : in Doubles) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1dv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Float) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1f"; procedure Multi_Tex_Coord (Target : in Enum; V : in Floats) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1fv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Int) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1i"; procedure Multi_Tex_Coord (Target : in Enum; V : in Ints) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1iv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Short) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1s"; procedure Multi_Tex_Coord (Target : in Enum; V : in Shorts) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord1sv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Double; T : in Double) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2d"; procedure Multi_Tex_Coord_2 (Target : in Enum; V : in Double) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2dv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Float; T : in Float) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2f"; procedure Multi_Tex_Coord_2 (Target : in Enum; V : in Floats) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2fv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Int; T : in Int) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2i"; procedure Multi_Tex_Coord_2 (Target : in Enum; S : in Ints) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2iv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Short; T : in Short) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2s"; procedure Multi_Tex_Coord_2 (Target : in Enum; V : in Shorts) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord2sv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Double; T : in Double; R : in Double) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3d"; procedure Multi_Tex_Coord_3 (Target : in Enum; V : in Doubles) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3dv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Float; T : in Float; R : in Float) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3f"; procedure Multi_Tex_Coord_3 (Target : in Enum; V : in Floats) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3fv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Int; T : in Int; R : in Int) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3i"; procedure Multi_Tex_Coord_3 (Target : in Enum; V : in Ints) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3iv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Short; T : in Short; R : in Short) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3s"; procedure Multi_Tex_Coord_3 (Target : in Enum; V : in Shorts) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord3sv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Double; T : in Double; R : in Double; Q : in Double) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4d"; procedure Multi_Tex_Coord_4 (Target : in Enum; V : in Doubles) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4dv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Float; T : in Float; R : in Float; Q : in Float) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4f"; procedure Multi_Tex_Coord_4 (Target : in Enum; V : in Floats) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4fv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Int; T : in Int; R : in Int; Q : in Int) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4i"; procedure Multi_Tex_Coord_4 (Target : in Enum; V : in Ints) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4iv"; procedure Multi_Tex_Coord (Target : in Enum; S : in Short; T : in Short; R : in Short; Q : in Short) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4s"; procedure Multi_Tex_Coord_4 (Target : in Enum; V : in Shorts) with Import => True, Convention => StdCall, External_Name => "glMultiTexCoord4sv"; --------------------------------------------------------------------------- procedure Raster_Pos (X : in Short; Y : in Short) with Import => True, Convention => StdCall, External_Name => "glRasterPos2s"; procedure Raster_Pos (X : in Int; Y : in Int) with Import => True, Convention => StdCall, External_Name => "glRasterPos2i"; procedure Raster_Pos (X : in Float; Y : in Float) with Import => True, Convention => StdCall, External_Name => "glRasterPos2f"; procedure Raster_Pos (X : in Double; Y : in Double) with Import => True, Convention => StdCall, External_Name => "glRasterPos2d"; procedure Raster_Pos (X : in Short; Y : in Short; Z : in Short) with Import => True, Convention => StdCall, External_Name => "glRasterPos3s"; procedure Raster_Pos (X : in Int; Y : in Int; Z : in Int) with Import => True, Convention => StdCall, External_Name => "glRasterPos3i"; procedure Raster_Pos (X : in Float; Y : in Float; Z : in Float) with Import => True, Convention => StdCall, External_Name => "glRasterPos3f"; procedure Raster_Pos (X : in Double; Y : in Double; Z : in Double) with Import => True, Convention => StdCall, External_Name => "glRasterPos3d"; procedure Raster_Pos (X : in Short; Y : in Short; Z : in Short; W : in Short) with Import => True, Convention => StdCall, External_Name => "glRasterPos4s"; procedure Raster_Pos (X : in Int; Y : in Int; Z : in Int; W : in Int) with Import => True, Convention => StdCall, External_Name => "glRasterPos4i"; procedure Raster_Pos (X : in Float; Y : in Float; Z : in Float; W : in Float) with Import => True, Convention => StdCall, External_Name => "glRasterPos4f"; procedure Raster_Pos (X : in Double; Y : in Double; Z : in Double; W : in Double) with Import => True, Convention => StdCall, External_Name => "glRasterPos4d"; procedure Raster_Pos (V : in Shorts_2) with Import => True, Convention => StdCall, External_Name => "glRasterPos2sv"; procedure Raster_Pos (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glRasterPos3sv"; procedure Raster_Pos (V : in Shorts_4) with Import => True, Convention => StdCall, External_Name => "glRasterPos4sv"; procedure Raster_Pos (V : in Ints_2) with Import => True, Convention => StdCall, External_Name => "glRasterPos2iv"; procedure Raster_Pos (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glRasterPos3iv"; procedure Raster_Pos (V : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glRasterPos4fv"; procedure Raster_Pos (V : in Floats_2) with Import => True, Convention => StdCall, External_Name => "glRasterPos2fv"; procedure Raster_Pos (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glRasterPos3fv"; procedure Raster_Pos (V : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glRasterPos4fv"; procedure Raster_Pos (V : in Doubles_2) with Import => True, Convention => StdCall, External_Name => "glRasterPos2dv"; procedure Raster_Pos (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glRasterPos3dv"; procedure Raster_Pos (V : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glRasterPos4dv"; procedure Window_Pos (X : in Double; Y : in Double) with Import => True, Convention => StdCall, External_Name => "glWindowPos2d"; procedure Window_Pos (V : in Doubles_2) with Import => True, Convention => StdCall, External_Name => "glWindowPos2dv"; procedure Window_Pos (X : in Float; Y : in Float) with Import => True, Convention => StdCall, External_Name => "glWindowPos2f"; procedure Window_Pos (V : in Floats_2) with Import => True, Convention => StdCall, External_Name => "glWindowPos2fv"; procedure Window_Pos (X : in Int; Y : in Int) with Import => True, Convention => StdCall, External_Name => "glWindowPos2i"; procedure Window_Pos (V : in Ints_2) with Import => True, Convention => StdCall, External_Name => "glWindowPos2iv"; procedure Window_Pos (X : in Short; Y : in Short) with Import => True, Convention => StdCall, External_Name => "glWindowPos2s"; procedure Window_Pos (V : in Shorts_2) with Import => True, Convention => StdCall, External_Name => "glWindowPos2sv"; procedure Window_Pos (X : in Double; Y : in Double; Z : in Double) with Import => True, Convention => StdCall, External_Name => "glWindowPos3d"; procedure Window_Pos (V : in Doubles_3) with Import => True, Convention => StdCall, External_Name => "glWindowPos3dv"; procedure Window_Pos (X : in Float; Y : in Float; Z : in Float) with Import => True, Convention => StdCall, External_Name => "glWindowPos3f"; procedure Window_Pos (V : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glWindowPos3fv"; procedure Window_Pos (X : in Int; Y : in Int; Z : in Int) with Import => True, Convention => StdCall, External_Name => "glWindowPos3i"; procedure Window_Pos (V : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glWindowPos3iv"; procedure Window_Pos (X : in Short; Y : in Short; Z : in Short) with Import => True, Convention => StdCall, External_Name => "glWindowPos3s"; procedure Window_Pos (V : in Shorts_3) with Import => True, Convention => StdCall, External_Name => "glWindowPos3sv"; --------------------------------------------------------------------------- procedure Rect (X1 : in Short; Y1 : in Short; X2 : in Short; Y2 : in Short) with Import => True, Convention => StdCall, External_Name => "glRects"; procedure Rect (X1 : in Int; Y1 : in Int; X2 : in Int; Y2 : in Int) with Import => True, Convention => StdCall, External_Name => "glRecti"; procedure Rect (X1 : in Float; Y1 : in Float; X2 : in Float; Y2 : in Float) with Import => True, Convention => StdCall, External_Name => "glRectf"; procedure Rect (X1 : in Double; Y1 : in Double; X2 : in Double; Y2 : in Double) with Import => True, Convention => StdCall, External_Name => "glRectd"; procedure Rect (V1 : in Shorts_2; V2 : in Shorts_2) with Import => True, Convention => StdCall, External_Name => "glRectsv"; procedure Rect (V1 : in Ints_2; V2 : in Ints_2) with Import => True, Convention => StdCall, External_Name => "glRectiv"; procedure Rect (V1 : in Floats_2; V2 : in Floats_2) with Import => True, Convention => StdCall, External_Name => "glRectfv"; procedure Rect (V1 : in Doubles_2; V2 : in Doubles_2) with Import => True, Convention => StdCall, External_Name => "glRectdv"; --------------------------------------------------------------------------- -- OpenGL 1.1 vertex subprograms procedure Vertex_Pointer (Size : in SizeI; Type_Of : in Enum; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glVertexPointer"; procedure Normal_Pointer (Size : in SizeI; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glNormalPointer"; procedure Color_Pointer (Size : in SizeI; Type_Of : in Enum; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glColorPointer"; procedure Index_Pointer (Type_Of : in Enum; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glIndexPointer"; procedure Tex_Coord_Pointer (Size : in SizeI; Type_Of : in Enum; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexCoordPointer"; procedure Edge_Flag_Pointer (Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glEdgeFlagPointer"; procedure Get_Pointer (PName : in Enum; Data_Pointer : out Pointer) with Import => True, Convention => StdCall, External_Name => "glGetPointerv"; procedure Array_Element (I : in Int) with Import => True, Convention => StdCall, External_Name => "glArrayElement"; procedure Draw_Arrays (Mode : in Enum; First : in Int; Count : in SizeI) with Import => True, Convention => StdCall, External_Name => "glDrawArrays"; procedure Multi_Draw_Arrays (Mode : in Enum; First : in Ints; Count : in SizeI; Draw_Count : in SizeI) with Import => True, Convention => StdCall, External_Name => "glMultiDrawArrays"; procedure Draw_Elements (Mode : in Enum; Count : in SizeI; Index_Type : in Enum; Indices : in Pointer) with Import => True, Convention => StdCall, External_Name => "glDrawElements"; procedure Draw_Range_Elements (Mode : in Enum; Start : in UInt; End_Of : in UInt; Count : in SizeI; Type_Of : in Enum; Indices : in Pointer) with Import => True, Convention => StdCall, External_Name => "glDrawRangeElements"; procedure Multi_Draw_Elements (Mode : in Enum; Count : in SizeIs; Type_Of : in Enum; Indices : in Pointer; Draw_Count : in SizeI) with Import => True, Convention => StdCall, External_Name => "glMultiDrawElements"; procedure Interleaved_Arrays (Format : in Enum; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glInterleavedArrays"; --------------------------------------------------------------------------- -- Lighting and materials procedure Light (Light : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glLightf"; procedure Light (Light : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glLightfv"; procedure Light (Light : in Enum; PName : in Enum; Params : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glLightfv"; procedure Light (Light : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glLightfv"; procedure Light (Light : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glLighti"; procedure Light (Light : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glLightiv"; procedure Light (Light : in Enum; PName : in Enum; Params : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glLightiv"; procedure Light (Light : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glLightiv"; procedure Get_Light (Light : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glGetLightiv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glGetLightiv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glGetLightiv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glGetLightiv"; procedure Get_Light (Light : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glGetLightfv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glGetLightfv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glGetLightfv"; procedure Get_Light (Light : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glGetLightfv"; procedure Light_Model (PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glLightModeli"; procedure Light_Model (PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glLightModeliv"; procedure Light_Model (PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glLightModeliv"; procedure Light_Model (PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glLightModelf"; procedure Light_Model (PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glLightModelfv"; procedure Light_Model (PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glLightModelfv"; procedure Material (Face : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glMateriali"; procedure Material (Face : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glMaterialiv"; procedure Material (Face : in Enum; PName : in Enum; Params : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glMaterialiv"; procedure Material (Face : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glMaterialiv"; procedure Material (Face : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glMaterialf"; procedure Material (Face : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glMaterialfv"; procedure Material (Face : in Enum; PName : in Enum; Params : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glMaterialfv"; procedure Material (Face : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glMaterialfv"; procedure Get_Material (Face : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glGetMaterialiv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glGetMaterialiv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Ints_3) with Import => True, Convention => StdCall, External_Name => "glGetMaterialiv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glGetMaterialiv"; procedure Get_Material (Face : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glGetMaterialfv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glGetMaterialfv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Floats_3) with Import => True, Convention => StdCall, External_Name => "glGetMaterialfv"; procedure Get_Material (Face : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glGetMaterialfv"; procedure Color_Material (Face : in Enum; Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glColorMaterial"; --------------------------------------------------------------------------- -- Raster functions procedure Pixel_Zoom (X_Factor : in Float; Y_Factor : in Float) with Import => True, Convention => StdCall, External_Name => "glPixelZoom"; procedure Pixel_Store (PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glPixelStorei"; procedure Pixel_Store (PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glPixelStoref"; procedure Pixel_Transfer (PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glPixelTransferi"; procedure Pixel_Transfer (PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glPixelTransferf"; procedure Pixel_Map (Map : in Enum; Values : in UShorts) with Import => True, Convention => StdCall, External_Name => "glPixelMapusv"; procedure Pixel_Map (Map : in Enum; Values : in UInts) with Import => True, Convention => StdCall, External_Name => "glPixelMapuiv"; procedure Pixel_Map (Map : in Enum; Values : in Floats) with Import => True, Convention => StdCall, External_Name => "glPixelMapfv"; procedure Get_Pixel_Map (Map : in Enum; Values : in UShorts) with Import => True, Convention => StdCall, External_Name => "glGetPixelMapusv"; procedure Get_Pixel_Map (Map : in Enum; Values : in UInts) with Import => True, Convention => StdCall, External_Name => "glGetPixelMapuiv"; procedure Get_Pixel_Map (Map : in Enum; Values : in Floats) with Import => True, Convention => StdCall, External_Name => "glGetPixelMapfv"; procedure Bit_Map (Width : in SizeI; Height : in SizeI; X_Orig : in Float; Y_Orig : in Float; X_Move : in Float; Y_Move : in Float; Bitmap : in UBytes) with Import => True, Convention => StdCall, External_Name => "glBitMap"; procedure Read_Pixels (X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI; Format : in Enum; C_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glReadPixels"; procedure Draw_Pixels (Width : in SizeI; Height : in SizeI; Format : in Enum; Type_Of : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glDrawPixels"; procedure Copy_Pixels (X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI; Type_Of : in Enum) with Import => True, Convention => StdCall, External_Name => "glCopyPixels"; --------------------------------------------------------------------------- -- Stenciling procedure Stencil_Func (Func : in Enum; Ref : in Int; Mask : in UInt) with Import => True, Convention => StdCall, External_Name => "glStencilFunc"; procedure Stencil_Mask (Mask : in UInt) with Import => True, Convention => StdCall, External_Name => "glStencilMask"; procedure Stencil_Op (Fail : in Enum; Z_Fail : in Enum; Z_Pass : in Enum) with Import => True, Convention => StdCall, External_Name => "glStencilOp"; procedure Clear_Stencil (S : in Int) with Import => True, Convention => StdCall, External_Name => "glClearStencil"; --------------------------------------------------------------------------- function Get_String (Name : Enum; Index : Int) return String; -- Blending procedure Blend_Color (Red : in ClampF; Green : in ClampF; Blue : in ClampF; Alpha : in ClampF) with Import => True, Convention => StdCall, External_Name => "glBlendColor"; procedure Blend_Equation (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glBlendEquation"; procedure Shade_Model (Mode : in Enum) with Import => True, Convention => StdCall, External_Name => "glShadeModel"; -- Texturing procedure Active_Texture (Texture : in Enum) -- v1.3 with Import => True, Convention => StdCall, External_Name => "glActiveTexture"; procedure Client_Active_Texture (Texture : in Enum) with Import => True, Convention => StdCall, External_Name => "glClientActiveTexture"; procedure Bind_Texture (Target : in Enum; Texture : in UInt) with Import => True, Convention => StdCall, External_Name => "glBindTexture"; procedure Gen_Textures (N : in SizeI; Textures : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGenTextures"; procedure Delete_Textures (N : in SizeI; Textures : in Pointer) with Import => True, Convention => StdCall, External_Name => "glDeleteTextures"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glTexGeni"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glTexGenf"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Param : in Double) with Import => True, Convention => StdCall, External_Name => "glTexGend"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glTexGeniv"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glTexGeniv"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glTexGenfv"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glTexGenfv"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Doubles_1) with Import => True, Convention => StdCall, External_Name => "glTexGendv"; procedure Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glTexGendv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glGetTexGeniv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glGetTexGeniv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glGetTexGenfv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glGetTexGenfv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Doubles_1) with Import => True, Convention => StdCall, External_Name => "glGetTexGendv"; procedure Get_Tex_Gen (Coord : in Enum; PName : in Enum; Params : in Doubles_4) with Import => True, Convention => StdCall, External_Name => "glGetTexGen"; procedure Tex_Env (Target : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glTexEnvi"; procedure Tex_Env (Target : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glTexEnvf"; procedure Tex_Env (Target : in Enum; PName : in Enum; Params : in Ints_1) with Import => True, Convention => StdCall, External_Name => "glTexEnviv"; procedure Tex_Env (Target : in Enum; PName : in Enum; Params : in Ints_4) with Import => True, Convention => StdCall, External_Name => "glTexEnviv"; procedure Tex_Env (Target : in Enum; PName : in Enum; Params : in Floats_1) with Import => True, Convention => StdCall, External_Name => "glTexEnvif"; procedure Tex_Env (Target : in Enum; PName : in Enum; Params : in Floats_4) with Import => True, Convention => StdCall, External_Name => "glTexEnvif"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Float) with Import => True, Convention => StdCall, External_Name => "glGetTexEnvfv"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Floats_1) with Import => True, Convention => StdCall, External_Name => "glGetTexEnvfv"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Floats_4) with Import => True, Convention => StdCall, External_Name => "glGetTexEnvfv"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Int) with Import => True, Convention => StdCall, External_Name => "glGetTexEnviv"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Ints_1) with Import => True, Convention => StdCall, External_Name => "glGetTexEnviv"; procedure Get_Tex_Env (Target : in Enum; PName : in Enum; Params : out Ints_4) with Import => True, Convention => StdCall, External_Name => "glGetTexEnviv"; procedure Tex_Parameter (Target : in Enum; PName : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glTexParameteri"; procedure Tex_Parameter (Target : in Enum; PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glTexParameterf"; procedure Tex_Parameter (Target : in Enum; PName : in Enum; Param : in Floats) with Import => True, Convention => StdCall, External_Name => "glTexParameterfv"; procedure Tex_Parameter (Target : in Enum; PName : in Enum; Param : in Ints) with Import => True, Convention => StdCall, External_Name => "glTexParameteriv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Float) with Import => True, Convention => StdCall, External_Name => "glGetTexParameterfv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Floats_1) with Import => True, Convention => StdCall, External_Name => "glGetTexParameterfv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Floats_4) with Import => True, Convention => StdCall, External_Name => "glGetTexParameterfv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Int) with Import => True, Convention => StdCall, External_Name => "glGetTexParameteriv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Ints_1) with Import => True, Convention => StdCall, External_Name => "glGetTexParameteriv"; procedure Get_Tex_Parameter (Target : in Enum; PName : in Enum; Params : out Ints_4) with Import => True, Convention => StdCall, External_Name => "glGetTexParameteriv"; procedure Get_Tex_Level_Parameter (Target : in Enum; PName : in Enum; Params : out Floats) with Import => True, Convention => StdCall, External_Name => "glGetTexLevelParameterfv"; procedure Get_Tex_Level_Parameter (Target : in Enum; PName : in Enum; Params : out Ints) with Import => True, Convention => StdCall, External_Name => "glGetTexLevelParameteriv"; -- Texture images procedure Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; Width : in SizeI; Border : in Int; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexImage1D"; procedure Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; Width : in SizeI; Height : in SizeI; Border : in Int; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexImage2D"; procedure Get_Tex_Image (Target : in Enum; Level : in Int; Format : in Enum; Type_Of : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetTexImage"; procedure Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Int; Width : in SizeI; Height : in SizeI; Depth : in SizeI; Border : in Int; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexImage3D"; procedure Prioritize_Textures (N : in SizeI; Textures : in UInts; Priorities : in ClampFs) with Import => True, Convention => StdCall, External_Name => "glPrioritizeTextures"; procedure Are_Textures_Resident (N : in SizeI; Textures : in UInts; Residences : out Bools) with Import => True, Convention => StdCall, External_Name => "glAreTexturesResident"; function Is_Texture (Texture : in UInt) return Bool with Import => True, Convention => StdCall, External_Name => "glIsTexture"; procedure Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Width : in SizeI; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexSubImage1D"; procedure Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Y_Offset : in Int; Width : in SizeI; Height : in SizeI; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexSubImage2D"; procedure Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Y_Offset : in Int; Z_Offset : in Int; Width : in SizeI; Height : in SizeI; Depth : in SizeI; Format : in Enum; Pixel_Type : in Enum; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glTexSubImage3D"; procedure Copy_Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; X : in Int; Y : in Int; Width : in SizeI; Border : in Int) with Import => True, Convention => StdCall, External_Name => "glCopyTexImage1D"; procedure Copy_Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI; Border : in Int) with Import => True, Convention => StdCall, External_Name => "glCopyTexImage2D"; procedure Copy_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; X : in Int; Y : in Int; Width : in SizeI) with Import => True, Convention => StdCall, External_Name => "glCopySubTexImage1D"; procedure Copy_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in SizeI; Y_Offset : in SizeI; X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI) with Import => True, Convention => StdCall, External_Name => "glCopySubTexImage2D"; procedure Copy_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Y_Offset : in Int; Z_Offset : in Int; X : in Int; Y : in Int; Width : in SizeI; Height : in SizeI) with Import => True, Convention => StdCall, External_Name => "glCopyTexSubImage3D"; procedure Compressed_Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; Width : in SizeI; Border : in Int; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexImage1D"; procedure Compressed_Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; Width : in SizeI; Height : in SizeI; Border : in Int; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexImage2D"; procedure Compressed_Tex_Image (Target : in Enum; Level : in Int; Internal_Format : in Enum; Width : in SizeI; Height : in SizeI; Depth : in SizeI; Border : in Int; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexImage3D"; procedure Compressed_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Width : in SizeI; Format : in Enum; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexSubImage1D"; procedure Compressed_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Y_Offset : in Int; Width : in SizeI; Height : in SizeI; Format : in Enum; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexSubImage2D"; procedure Compressed_Tex_Sub_Image (Target : in Enum; Level : in Int; X_Offset : in Int; Y_Offset : in Int; Z_Offset : in Int; Width : in SizeI; Height : in SizeI; Depth : in SizeI; Format : in Enum; Image_Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glCompressedTexSubImage3D"; procedure Get_Compressed_Tex_Image (Target : in Enum; LOD : in Int; Pixels : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetCompressedTexImage"; procedure Tex_Coord_Pointer (Size : in SizeI; Type_Of : in Enum; Stride : in SizeI; Offset : in SizeI) with Import => True, Convention => StdCall, External_Name => "glTexCoordPointer"; -- Evaluators procedure Map (Target : in Enum; U1 : in Float; U2 : in Float; Stride : in Int; Order : in Int; Points : in Pointer) with Import => True, Convention => StdCall, External_Name => "glMap1f"; procedure Map (Target : in Enum; U1 : in Double; U2 : in Double; Stride : in Int; Order : in Int; Points : in Pointer) with Import => True, Convention => StdCall, External_Name => "glMap1d"; procedure Map (Target : in Enum; U1 : in Float; U2 : in Float; UStride : in Int; UOrder : in Int; V1 : in Float; V2 : in Float; VStride : in Int; VOrder : in Int; Points : in Pointer) with Import => True, Convention => StdCall, External_Name => "glMap2f"; procedure Map (Target : in Enum; U1 : in Double; U2 : in Double; UStride : in Int; UOrder : in Int; V1 : in Double; V2 : in Double; VStride : in Int; VOrder : in Int; Points : in Pointer) with Import => True, Convention => StdCall, External_Name => "glMap2d"; procedure Get_Map (Target : in Enum; Query : in Enum; V : out Doubles) with Import => True, Convention => StdCall, External_Name => "glGetMapdv"; procedure Get_Map (Target : in Enum; Query : in Enum; V : out Floats) with Import => True, Convention => StdCall, External_Name => "glGetMapfv"; procedure Get_Map (Target : in Enum; Query : in Enum; V : out Ints) with Import => True, Convention => StdCall, External_Name => "glGetMapiv"; procedure Eval_Coord (U : in Double) with Import => True, Convention => StdCall, External_Name => "glEvalCoord1d"; procedure Eval_Coord (U : in Float) with Import => True, Convention => StdCall, External_Name => "glEvalCoord1f"; procedure Eval_Coord (U : in Doubles) with Import => True, Convention => StdCall, External_Name => "glEvalCoord1dv"; procedure Eval_Coord (U : in Floats) with Import => True, Convention => StdCall, External_Name => "glEvalCoord1fv"; procedure Eval_Coord (U : in Double; V : in Double) with Import => True, Convention => StdCall, External_Name => "glEvalCoord2d"; procedure Eval_Coord (U : in Float; V : in Float) with Import => True, Convention => StdCall, External_Name => "glEvalCoord2f"; procedure Eval_Coord_2 (U : in Doubles) with Import => True, Convention => StdCall, External_Name => "glEvalCoord2dv"; procedure Eval_Coord_2 (U : in Floats) with Import => True, Convention => StdCall, External_Name => "glEvalCoord2fv"; procedure Map_Grid (Un : in Int; U1 : in Float; U2 : in Float) with Import => True, Convention => StdCall, External_Name => "glMapGrid1f"; procedure Map_Grid (Un : in Int; U1 : in Double; U2 : in Double) with Import => True, Convention => StdCall, External_Name => "glMapGrid1d"; procedure Map_Grid (Un : in Int; U1 : in Float; U2 : in Float; Vn : in Int; V1 : in Float; V2 : in Float) with Import => True, Convention => StdCall, External_Name => "glMapGrid2f"; procedure Map_Grid (Un : in Int; U1 : in Double; U2 : in Double; Vn : in Int; V1 : in Double; V2 : in Double) with Import => True, Convention => StdCall, External_Name => "glMapGrid2d"; procedure Eval_Point (I : in Int) with Import => True, Convention => StdCall, External_Name => "glEvalPoint1"; procedure Eval_Point (I : in Int; J : in Int) with Import => True, Convention => StdCall, External_Name => "glEvalPoint2"; procedure Eval_Mesh (Mode : in Enum; I1 : in Int; I2 : in Int) with Import => True, Convention => StdCall, External_Name => "glEvalMesh1"; procedure Eval_Mesh (Mode : in Enum; I1 : in Int; I2 : in Int; J1 : in Int; J2 : in Int) with Import => True, Convention => StdCall, External_Name => "glEvalMesh2"; -- Fog procedure Fog (PName : in Enum; Param : in Float) with Import => True, Convention => StdCall, External_Name => "glFogf"; procedure Fog (Pname : in Enum; Param : in Int) with Import => True, Convention => StdCall, External_Name => "glFogi"; procedure Fog (PName : in Enum; Params : in Floats) with Import => True, Convention => StdCall, External_Name => "glFogfv"; procedure Fog (PName : in Enum; Params : in Ints) with Import => True, Convention => StdCall, External_Name => "glFogiv"; procedure Fog_Coord (Coord : in Float) with Import => True, Convention => StdCall, External_Name => "glFogCoordf"; procedure Fog_Coord (Coord : in Floats) with Import => True, Convention => StdCall, External_Name => "glFogCoordfv"; procedure Fog_Coord (Coord : in Int) with Import => True, Convention => StdCall, External_Name => "glFogCoordi"; procedure Fog_Coord (Coord : in Ints) with Import => True, Convention => StdCall, External_Name => "glFogCoordiv"; procedure Fog_Coord_Pointer (Type_Of : in Enum; Stride : in SizeI; Coords : in Pointer) with Import => True, Convention => StdCall, External_Name => "glFogCoordPointer"; -- Selection and Feedback procedure Feedback_Buffer (Size : in SizeI; Type_Of : in Enum; Buffer : out Floats) with Import => True, Convention => StdCall, External_Name => "glFeedbackBuffer"; procedure Pass_Through (Token : in Float) with Import => True, Convention => StdCall, External_Name => "glPassThrough"; procedure Select_Buffer (Size : in SizeI; Buffer : out UInts) with Import => True, Convention => StdCall, External_Name => "glSelectBuffer"; procedure Init_Name with Import => True, Convention => StdCall, External_Name => "glInitNames"; procedure Load_Name (Name : in UInt) with Import => True, Convention => StdCall, External_Name => "glLoadName"; procedure Push_Name (Name : in UInt) with Import => True, Convention => StdCall, External_Name => "glPushName"; procedure Pop_Name with Import => True, Convention => StdCall, External_Name => "glPopName"; -- Buffer objects v2.1??? procedure Gen_Framebuffers (N : in SizeI; FBOs : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGenFramebuffers"; procedure Bind_Framebuffer (Target : in Enum; FBO : in UInt) with Import => True, Convention => StdCall, External_Name => "glBindFramebuffer"; -- Vertex buffer stuff: procedure Gen_Buffers (N : in SizeI; VBO : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGenBuffers"; procedure Delete_Buffers (N : in SizeI; Buffers : in Pointer) with Import => True, Convention => StdCall, External_Name => "glDeleteBuffers"; procedure Bind_Buffer (Target : in Enum; VBO : in UInt) with Import => True, Convention => StdCall, External_Name => "glBindBuffer"; procedure Buffer_Data (Target : in Enum; Size : in SizeI; Data : in Pointer; Usage : in Enum) with Import => True, Convention => StdCall, External_Name => "glBufferData"; procedure Buffer_Sub_Data (Target: in Enum; Offset: in SizeI; Size : in SizeI; Data : in Pointer) with Import => True, Convention => StdCall, External_Name => "glBufferSubData"; procedure Enable_Client_State (Target : in Enum) with Import => True, Convention => StdCall, External_Name => "glEnableClientState"; procedure Disable_Client_State (Target : in Enum) with Import => True, Convention => StdCall, External_Name => "glDisableClientState"; procedure Enable_Vertex_Attrib_Array (Index : in UInt) with Import => True, Convention => StdCall, External_Name => "glEnableVertexAttribArray"; procedure Disable_Vertex_Attrib_Array (Index : in UInt) with Import => True, Convention => StdCall, External_Name => "glDisableVertexAttribArray"; procedure Vertex_Attrib_Pointer (Index : in UInt; Size : in Int; Attr_Type : in Enum; Normalized : in Bool; Stride : in SizeI; Data_Pointer : in Pointer) with Import => True, Convention => StdCall, External_Name => "glVertexAttribPointer"; -- Vertex array objects procedure Gen_Vertex_Arrays (N : in SizeI; VAOs : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGenVertexArrays"; procedure Bind_Vertex_Array (VAO : in UInt) with Import => True, Convention => StdCall, External_Name => "glBindVertexArray"; -- Shaders function Create_Shader (Shader_Type : in Enum) return UInt with Import => True, Convention => StdCall, External_Name => "glCreateShader"; procedure Delete_Shader (Shader_ID : in UInt) with Import => True, Convention => StdCall, External_Name => "glDeleteShader"; procedure Shader_Source (Shader : in UInt; Count : in SizeI; Source_String : in Pointer; Length : in Pointer) with Import => True, Convention => StdCall, External_Name => "glShaderSource"; procedure Compile_Shader (Shader : in UInt) with Import => True, Convention => StdCall, External_Name => "glCompileShader"; procedure Attach_Shader (Program : in UInt; Shader : in UInt) with Import => True, Convention => StdCall, External_Name => "glAttachShader"; procedure Link_Program (Program : in UInt) with Import => True, Convention => StdCall, External_Name => "glLinkProgram"; procedure Use_Program (Program : in UInt) with Import => True, Convention => StdCall, External_Name => "glUseProgram"; function Create_Program return UInt with Import => True, Convention => StdCall, External_Name => "glCreateProgram"; procedure Get_Shader (Shader : in UInt; PName : in Enum; Params : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetShaderiv"; procedure Get_Shader_Info_Log (Shader : in UInt; MaxLength : in SizeI; Length : in Pointer; InfoLog : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetShaderInfoLog"; procedure Get_Program (Program : in UInt; PName : in Enum; Params : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetProgramiv"; procedure Get_Program_Info_Log (Progarm : in UInt; MaxLength : in SizeI; Length : in Pointer; InfoLog : in Pointer) with Import => True, Convention => StdCall, External_Name => "glGetProgramInfoLog"; procedure Validate_Program (Program : in GL.UInt) with Import => True, Convention => StdCall, External_Name => "glValidateProgram"; function Get_Uniform_Location (Program : in UInt; Name : in String) return Int; procedure Uniform (Location : in Int; V0 : in Float) with Import => True, Convention => StdCall, External_Name => "glUniform1f"; procedure Uniform (Location : in Int; V0 : in Float; V1 : in Float) with Import => True, Convention => StdCall, External_Name => "glUniform2f"; procedure Uniform (Location : in Int; V0 : in Float; V1 : in Float; V2 : in Float) with Import => True, Convention => StdCall, External_Name => "glUniform3f"; procedure Uniform (Location : in Int; V0 : in Float; V1 : in Float; V2 : in Float; V3 : in Float) with Import => True, Convention => StdCall, External_Name => "glUniform4f"; procedure Uniform (Location : in Int; V0 : in Int) with Import => True, Convention => StdCall, External_Name => "glUniform1i"; procedure Uniform (Location : in Int; V0 : in Int; V1 : in Int) with Import => True, Convention => StdCall, External_Name => "glUniform2i"; procedure Uniform (Location : in Int; V0 : in Int; V1 : in Int; V2 : in Int) with Import => True, Convention => StdCall, External_Name => "glUniform3i"; procedure Uniform (Location : in Int; V0 : in Int; V1 : in Int; V2 : in Int; V3 : in Int) with Import => True, Convention => StdCall, External_Name => "glUniform4i"; procedure Uniform (Location : in Int; V0 : in UInt) with Import => True, Convention => StdCall, External_Name => "glUniform1ui"; procedure Uniform (Location : in Int; V0 : in UInt; V1 : in UInt) with Import => True, Convention => StdCall, External_Name => "glUniform2ui"; procedure Uniform (Location : in Int; V0 : in UInt; V1 : in UInt; V2 : in UInt) with Import => True, Convention => StdCall, External_Name => "glUniform3ui"; procedure Uniform (Location : in Int; V0 : in UInt; V1 : in UInt; V2 : in UInt; V3 : in UInt) with Import => True, Convention => StdCall, External_Name => "glUniform4ui"; procedure Uniform (Location : in Int; Count : in SizeI; Transpose : in Bool; Value : in Float_Matrix) with Import => True, Convention => StdCall, External_Name => "glUniformMatrix4fv"; function Get_Attribute_Location (Program : in UInt; Name : in String) return Int; procedure Vertex_Attrib (Index : in UInt; X : in Float) with Import => True, Convention => StdCall, External_Name => "glVertexAttrib1f"; procedure Vertex_Attrib (Index : in UInt; X : in Float; Y : in Float) with Import => True, Convention => StdCall, External_Name => "glVertexAttrib2f"; procedure Vertex_Attrib (Index : in UInt; X : in Float; Y : in Float; Z : in Float) with Import => True, Convention => StdCall, External_Name => "glVertexAttrib3f"; procedure Vertex_Attrib (Index : in UInt; X : in Float; Y : in Float; Z : in Float; W : in Float) with Import => True, Convention => StdCall, External_Name => "glVertexAttrib4f"; procedure Get_Double (Pname : in Enum; Params : out Double_Matrix) with Import => True, Convention => StdCall, External_Name => "glGetDoublev"; --------------------------------------------------------------------------- end Lumen.GL;
-------------------------------------------------------------------------------- -- Copyright (c) 2013, Felix Krause <contact@flyx.org> -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- with CL.API; with CL.Enumerations; package body CL.Queueing is function Execute_Kernel (Target_Queue : Command_Queues.Queue'Class; Kernel : Kernels.Kernel'Class; Dimension : Kernel_Dimension; Global_Work_Size : access constant Size_List; Local_Work_Size : access constant Size_List; Wait_For : access Events.Event_List) return Events.Event is Local_Work_Size_Ptr : access constant Size; Ret_Event : aliased System.Address; Error : Enumerations.Error_Code; begin if Global_Work_Size = null or else Global_Work_Size.all'First /= 1 or else Global_Work_Size.all'Last /= Integer (Dimension) then raise Invalid_Global_Work_Size; end if; if Local_Work_Size /= null then if Local_Work_Size.all'First /= 1 or Local_Work_Size.all'Last /= Integer (Dimension) then raise Invalid_Local_Work_Size; end if; Local_Work_Size_Ptr := Local_Work_Size.all (Local_Work_Size.all'First)'Access; else Local_Work_Size_Ptr := null; end if; if Wait_For /= null and then Wait_For.all'Length > 0 then declare Raw_List : Address_List := Raw_Event_List (Wait_For.all); begin Error := API.Enqueue_NDRange_Kernel (CL_Object (Target_Queue).Location, CL_Object (Kernel).Location, Dimension, null, Global_Work_Size.all (1)'Access, Local_Work_Size_Ptr, Raw_List'Length, Raw_List (1)'Unchecked_Access, Ret_Event'Unchecked_Access); end; else Error := API.Enqueue_NDRange_Kernel (CL_Object (Target_Queue).Location, CL_Object (Kernel).Location, Dimension, null, Global_Work_Size.all (1)'Access, Local_Work_Size_Ptr, 0, null, Ret_Event'Unchecked_Access); end if; Helpers.Error_Handler (Error); return Events.Event'(Ada.Finalization.Controlled with Location => Ret_Event); end Execute_Kernel; function Execute_Task (Target_Queue : Command_Queues.Queue'Class; Kernel : Kernels.Kernel'Class; Wait_For : access Events.Event_List) return Events.Event is Error : Enumerations.Error_Code; Ret_Event : aliased System.Address; begin if Wait_For /= null and then Wait_For.all'Length > 0 then declare Raw_List : Address_List := Raw_Event_List (Wait_For.all); begin Error := API.Enqueue_Task (CL_Object (Target_Queue).Location, CL_Object (Kernel).Location, Raw_List'Length, Raw_List (1)'Unchecked_Access, Ret_Event'Unchecked_Access); end; else Error := API.Enqueue_Task (CL_Object (Target_Queue).Location, CL_Object (Kernel).Location, 0, null, Ret_Event'Unchecked_Access); end if; Helpers.Error_Handler (Error); return Events.Event'(Ada.Finalization.Controlled with Location => Ret_Event); end Execute_Task; function Marker (Target_Queue : Command_Queues.Queue'Class) return Events.Event is Ret_Event : aliased System.Address; Error : Enumerations.Error_Code; begin Error := API.Enqueue_Marker (CL_Object (Target_Queue).Location, Ret_Event'Unchecked_Access); Helpers.Error_Handler (Error); return Events.Event'(Ada.Finalization.Controlled with Location => Ret_Event); end Marker; procedure Wait_For_Events (Target_Queue : Command_Queues.Queue'Class; Event_List : Events.Event_List) is Raw_List : Address_List := Raw_Event_List (Event_List); Error : Enumerations.Error_Code; begin Error := API.Enqueue_Wait_For_Events (CL_Object (Target_Queue).Location, Raw_List'Length, Raw_List (1)'Unchecked_Access); Helpers.Error_Handler (Error); end Wait_For_Events; procedure Barrier (Target_Queue : Command_Queues.Queue'Class) is Error : Enumerations.Error_Code; begin Error := API.Enqueue_Barrier (CL_Object (Target_Queue).Location); Helpers.Error_Handler (Error); end Barrier; end CL.Queueing;
------------------------------------------------------------------------------ -- -- -- GNAT 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 := 11; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; EPERM : constant := 1; ETIMEDOUT : constant := 110; ------------- -- 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 := 7; -- 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 SIGUSR1 : constant := 10; -- user defined signal 1 SIGUSR2 : constant := 12; -- user defined signal 2 SIGCLD : constant := 17; -- alias for SIGCHLD SIGCHLD : constant := 17; -- child status change SIGPWR : constant := 30; -- power-fail restart SIGWINCH : constant := 28; -- window size change SIGURG : constant := 23; -- urgent condition on IO channel SIGPOLL : constant := 29; -- pollable event occurred SIGIO : constant := 29; -- I/O now possible (4.2 BSD) SIGLOST : constant := 29; -- File lock lost SIGSTOP : constant := 19; -- stop (cannot be caught or ignored) SIGTSTP : constant := 20; -- user stop requested from tty SIGCONT : constant := 18; -- stopped process has been continued SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGVTALRM : constant := 26; -- virtual timer expired SIGPROF : constant := 27; -- profiling timer expired SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGUNUSED : constant := 31; -- unused signal (GNU/Linux) SIGSTKFLT : constant := 16; -- coprocessor stack fault (Linux) 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. 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 := -- I am not sure why the following two signals are reserved. -- I guess they are not supported by this version of GNU/Linux. (SIGVTALRM, SIGUNUSED); 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; sa_restorer : System.Address; end record; pragma Convention (C, struct_sigaction); type struct_sigaction_ptr is access all struct_sigaction; type Machine_State is record eip : unsigned_long; ebx : unsigned_long; esp : unsigned_long; ebp : unsigned_long; esi : unsigned_long; edi : unsigned_long; end record; type Machine_State_Ptr is access all Machine_State; SA_SIGINFO : constant := 16#04#; 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 array (0 .. 127) of unsigned_char; 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 detachstate : int; schedpolicy : int; schedparam : struct_sched_param; inheritsched : int; scope : int; guardsize : size_t; stackaddr_set : int; stackaddr : System.Address; stacksize : size_t; 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 struct_pthread_fast_lock is record status : long; spinlock : int; end record; pragma Convention (C, struct_pthread_fast_lock); type pthread_mutex_t is record m_reserved : int; m_count : int; m_owner : System.Address; m_kind : int; m_lock : struct_pthread_fast_lock; end record; pragma Convention (C, pthread_mutex_t); type pthread_cond_t is array (0 .. 47) of unsigned_char; pragma Convention (C, pthread_cond_t); type pthread_key_t is new unsigned; end System.OS_Interface;
with Ada.Text_IO; package body MathUtils is function rand01 return Float is begin return Ada.Numerics.Float_Random.Random(gen); end rand01; function rand(min, max: Float) return Float is begin return (max - min)*rand01 + min; end rand; function mse(a, b: in Vector) return Float is result: Float := 0.0; ib: Positive := b.First_Index; begin for x of a loop result := result + (x - b(ib)) * (x - b(ib)); ib := ib + 1; end loop; return result / Float(a.Length); end mse; function logLoss(target, predictions: in Vector) return Float is result: Float := 0.0; tmp: Float; ib: Positive := predictions.First_Index; begin for y of target loop tmp := y * F.Log(predictions(ib) + 0.00001) + (1.0 - y) * F.Log(1.00001 - predictions(ib)); result := result - tmp; ib := ib + 1; end loop; return result / Float(target.Length); end logLoss; procedure multiply(vec: in out MathUtils.Vector; value: Float) is begin for x of vec loop x := x * value; end loop; end multiply; procedure softmax(vec: in out MathUtils.Vector) is total: Float := 0.0; begin for x of vec loop declare xp: constant Float := MathUtils.F.Exp(x); begin x := xp; total := total + xp; end; end loop; for x of vec loop x := x / total; end loop; end softmax; procedure print(vec: in MathUtils.Vector) is x: Float; begin for i in vec.First_Index .. vec.Last_Index loop x := vec(i); Ada.Text_IO.Put(x'Image & ", "); end loop; end print; begin Ada.Numerics.Float_Random.Reset(gen); end MathUtils;
-- C32001A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT IN MULTIPLE OBJECT DECLARATIONS FOR SCALAR TYPES, THE -- SUBTYPE INDICATION AND THE INITIALIZATION EXPRESSIONS ARE EVALUATED -- ONCE FOR EACH NAMED OBJECT THAT IS DECLARED AND THE SUBTYPE -- INDICATION IS EVALUATED FIRST. ALSO, CHECK THAT THE EVALUATIONS -- YIELD THE SAME RESULT AS A SEQUENCE OF SINGLE OBJECT DECLARATIONS. -- RJW 7/16/86 WITH REPORT; USE REPORT; PROCEDURE C32001A IS BUMP : ARRAY (1 .. 8) OF INTEGER := (OTHERS => 0); FUNCTION F (I : INTEGER) RETURN INTEGER IS BEGIN BUMP (I) := BUMP (I) + 1; RETURN BUMP (I); END F; BEGIN TEST ("C32001A", "CHECK THAT IN MULTIPLE OBJECT DECLARATION " & "FOR SCALAR TYPES, THE SUBTYPE INDICATION " & "AND THE INITIALIZATION EXPRESSIONS ARE " & "EVALUATED ONCE FOR EACH NAMED OBJECT THAT " & "IS DECLARED AND THE SUBTYPE INDICATION IS " & "EVALUATED FIRST. ALSO, CHECK THAT THE " & "EVALUATIONS YIELD THE SAME RESULT AS A " & "SEQUENCE OF SINGLE OBJECT DECLARATIONS" ); DECLARE TYPE DAY IS (MON, TUES, WED, THURS, FRI); D1, D2 : DAY RANGE MON .. DAY'VAL (F (1)) := DAY'VAL (F (1) - 1); CD1, CD2 : CONSTANT DAY RANGE MON .. DAY'VAL (F (2)) := DAY'VAL (F (2) - 1); I1, I2 : INTEGER RANGE 0 .. F (3) := F (3) - 1; CI1, CI2 : CONSTANT INTEGER RANGE 0 .. F (4) := F (4) - 1; TYPE FLT IS DIGITS 3 RANGE -5.0 .. 5.0; FL1, FL2 : FLT RANGE 0.0 .. FLT (F (5)) := FLT (F (5) - 1); CFL1, CFL2 : CONSTANT FLT RANGE 0.0 .. FLT (F (6)) := FLT (F (6) - 1); TYPE FIX IS DELTA 1.0 RANGE -5.0 .. 5.0; FI1, FI2 : FIX RANGE 0.0 .. FIX (F (7)) := FIX (F (7) - 1); CFI1, CFI2 : CONSTANT FIX RANGE 0.0 .. FIX (F (8)) := FIX (F (8) - 1); BEGIN IF D1 /= TUES THEN FAILED ( "D1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF D2 /= THURS THEN FAILED ( "D2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CD1 /= TUES THEN FAILED ( "CD1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CD2 /= THURS THEN FAILED ( "CD2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF I1 /= 1 THEN FAILED ( "I1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF I2 /= 3 THEN FAILED ( "I2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CI1 /= 1 THEN FAILED ( "CI1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CI2 /= 3 THEN FAILED ( "CI2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF FL1 /= 1.0 THEN FAILED ( "FL1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF FL2 /= 3.0 THEN FAILED ( "FL2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CFL1 /= 1.0 THEN FAILED ( "CFL1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CFL2 /= 3.0 THEN FAILED ( "CFL2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF FI1 /= 1.0 THEN FAILED ( "FI1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF FI2 /= 3.0 THEN FAILED ( "FI2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CFI1 /= 1.0 THEN FAILED ( "CFI1 NOT INITIALIZED TO CORRECT VALUE" ); END IF; IF CFI2 /= 3.0 THEN FAILED ( "CFI2 NOT INITIALIZED TO CORRECT VALUE" ); END IF; END; RESULT; END C32001A;
procedure @_Main_Name_@ is begin -- Insert code here. null; end @_Main_Name_@;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- -- * Neither the name of the 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 LSC.Internal.Byteswap32; package body LSC.Internal.Byteorder32 is function Native_To_BE (Item : Types.Word32) return Types.Word32 is begin return Item; end Native_To_BE; --------------------------------------------------------------------------- function Native_To_LE (Item : Types.Word32) return Types.Word32 is begin return Byteswap32.Swap (Item); end Native_To_LE; --------------------------------------------------------------------------- function BE_To_Native (Item : Types.Word32) return Types.Word32 is begin return Item; end BE_To_Native; --------------------------------------------------------------------------- function LE_To_Native (Item : Types.Word32) return Types.Word32 is begin return Byteswap32.Swap (Item); end LE_To_Native; end LSC.Internal.Byteorder32;
with Ada.Real_Time; use Ada.Real_Time; package body Solar_System.Graphics is procedure Draw_Body(Object : Body_Type; Canvas : Canvas_ID) is begin if Object.Visible then Draw_Sphere(Canvas => Canvas, Position => (Object.Pos.X, Object.Pos.Y, 0.0), Radius => Object.Radius, Color => Object.Color); if Object.With_Tail then for I in T_Tail'Range loop Draw_Sphere(Canvas => Canvas, Position => (Object.Tail(I).X, Object.Tail(I).Y, 0.0), Radius => Object.Radius, Color => Object.Color); end loop; end if; end if; end Draw_Body; protected body Graphic_Context is procedure Set_Window(W : Window_ID) is begin Window := W; Canvas := Get_Canvas(W); Is_Set := True; end Set_Window; entry Get_Window(W : out Window_ID; C : out Canvas_ID) when Is_Set is begin W := Window; C := Canvas; end Get_Window; end Graphic_Context; task body T_Display is -- declare a variable Now of type Time to record current time Now : Time; -- declare a constant Period of 40 milliseconds of type Time_Span defining the loop period Period : constant Time_Span := Milliseconds (30); Canvas : Canvas_ID; Window : Window_ID; begin Graphic_Context.Get_Window(Window, Canvas); loop Now := Clock; for B of Bodies loop Draw_Body(Object => B.Get_Data, Canvas => Canvas); end loop; Swap_Buffers (Window); delay until Now + Period; end loop; end T_Display; end Solar_System.Graphics;
----------------------------------------------------------------------- -- AWA.Sysadmin.Models -- AWA.Sysadmin.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.Basic.Lists; with Util.Beans.Methods; pragma Warnings (On); package AWA.Sysadmin.Models is pragma Style_Checks ("-mr"); -- -------------------- -- The information about a wiki page. -- -------------------- type User_Info is new Util.Beans.Basic.Bean with record -- the user page identifier. Id : ADO.Identifier; -- the wiki page name. Name : Ada.Strings.Unbounded.Unbounded_String; -- the wiki page title. Title : Ada.Strings.Unbounded.Unbounded_String; -- whether the wiki is public. Is_Public : Boolean; -- the last version. Last_Version : Integer; -- the read count. Read_Count : Integer; -- the wiki creation date. Create_Date : Ada.Calendar.Time; -- the wiki page author. Author : Ada.Strings.Unbounded.Unbounded_String; end record; -- Get the bean attribute identified by the name. overriding function Get_Value (From : in User_Info; Name : in String) return Util.Beans.Objects.Object; -- Set the bean attribute identified by the name. overriding procedure Set_Value (Item : in out User_Info; Name : in String; Value : in Util.Beans.Objects.Object); package User_Info_Beans is new Util.Beans.Basic.Lists (Element_Type => User_Info); package User_Info_Vectors renames User_Info_Beans.Vectors; subtype User_Info_List_Bean is User_Info_Beans.List_Bean; type User_Info_List_Bean_Access is access all User_Info_List_Bean; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out User_Info_List_Bean'Class; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); subtype User_Info_Vector is User_Info_Vectors.Vector; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out User_Info_Vector; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); Query_Sysadmin_User_List : constant ADO.Queries.Query_Definition_Access; -- -------------------- -- authenticate the sysadmin user -- -------------------- type Authenticate_Bean is abstract limited new Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with record -- the password. Password : Ada.Strings.Unbounded.Unbounded_String; end record; -- This bean provides some methods that can be used in a Method_Expression. overriding function Get_Method_Bindings (From : in Authenticate_Bean) return Util.Beans.Methods.Method_Binding_Array_Access; -- Get the bean attribute identified by the name. overriding function Get_Value (From : in Authenticate_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the bean attribute identified by the name. overriding procedure Set_Value (Item : in out Authenticate_Bean; Name : in String; Value : in Util.Beans.Objects.Object); procedure Authenticate (Bean : in out Authenticate_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is abstract; private package File_1 is new ADO.Queries.Loaders.File (Path => "sysadmin-users.xml", Sha1 => "54186E969C872FD5295A3FA31BA701F514B38284"); package Def_Userinfo_Sysadmin_User_List is new ADO.Queries.Loaders.Query (Name => "sysadmin-user-list", File => File_1.File'Access); Query_Sysadmin_User_List : constant ADO.Queries.Query_Definition_Access := Def_Userinfo_Sysadmin_User_List.Query'Access; end AWA.Sysadmin.Models;
with Ada.Finalization; with ACO.CANopen; with ACO.States; with ACO.Messages; with ACO.OD; with ACO.OD_Types; private with Ada.Real_Time; private with ACO.Events; package ACO.Nodes is type Node_Base (Id : ACO.Messages.Node_Nr; Handler : not null access ACO.CANopen.Handler; Od : not null access ACO.OD.Object_Dictionary'Class) is abstract new Ada.Finalization.Limited_Controlled with private; procedure Set_State (This : in out Node_Base; State : in ACO.States.State) is abstract; -- Local: Set state in OD, maybe send boot -- Remote: Set state in OD, send nmt command to node id of remote function Get_State (This : Node_Base) return ACO.States.State is abstract; -- Local: Get state from OD -- Remote: Get state from OD procedure Start (This : in out Node_Base) is abstract; procedure Write (This : in out Node_Base; Index : in ACO.OD_Types.Object_Index; Subindex : in ACO.OD_Types.Object_Subindex; An_Entry : in ACO.OD_Types.Entry_Base'Class) is abstract; procedure Read (This : in out Node_Base; Index : in ACO.OD_Types.Object_Index; Subindex : in ACO.OD_Types.Object_Subindex; To_Entry : out ACO.OD_Types.Entry_Base'Class) is abstract; private procedure On_Message_Dispatch (This : in out Node_Base; Msg : in ACO.Messages.Message) is null; procedure Periodic_Actions (This : in out Node_Base; T_Now : in Ada.Real_Time.Time) is null; type Tick_Subscriber (Node_Ref : not null access Node_Base'Class) is new ACO.Events.Handler_Event_Listener (ACO.Events.Tick) with null record; overriding procedure On_Event (This : in out Tick_Subscriber; Data : in ACO.Events.Handler_Event_Data); type Message_Subscriber (Node_Ref : not null access Node_Base'Class) is new ACO.Events.Handler_Event_Listener (ACO.Events.Received_Message) with null record; overriding procedure On_Event (This : in out Message_Subscriber; Data : in ACO.Events.Handler_Event_Data); type Node_Base (Id : ACO.Messages.Node_Nr; Handler : not null access ACO.CANopen.Handler; Od : not null access ACO.OD.Object_Dictionary'Class) is abstract new Ada.Finalization.Limited_Controlled with record Periodic_Action_Indication : aliased Tick_Subscriber (Node_Base'Access); New_Message_Indication : aliased Message_Subscriber (Node_Base'Access); end record; overriding procedure Initialize (This : in out Node_Base); overriding procedure Finalize (This : in out Node_Base); end ACO.Nodes;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000-2008,2009 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000 -- Version Control -- $Revision: 1.9 $ -- $Date: 2009/12/26 17:38:58 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- Windows and scrolling tester. -- Demonstrate windows with Ada.Strings.Fixed; with Ada.Strings; with ncurses2.util; use ncurses2.util; with ncurses2.genericPuts; with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Terminal_Interface.Curses.Mouse; use Terminal_Interface.Curses.Mouse; with Terminal_Interface.Curses.PutWin; use Terminal_Interface.Curses.PutWin; with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO; with Ada.Streams; use Ada.Streams; procedure ncurses2.acs_and_scroll is Macro_Quit : constant Key_Code := Character'Pos ('Q') mod 16#20#; Macro_Escape : constant Key_Code := Character'Pos ('[') mod 16#20#; Quit : constant Key_Code := CTRL ('Q'); Escape : constant Key_Code := CTRL ('['); Botlines : constant Line_Position := 4; type pair is record y : Line_Position; x : Column_Position; end record; type Frame; type FrameA is access Frame; f : File_Type; dumpfile : constant String := "screendump"; procedure Outerbox (ul, lr : pair; onoff : Boolean); function HaveKeyPad (w : Window) return Boolean; function HaveScroll (w : Window) return Boolean; procedure newwin_legend (curpw : Window); procedure transient (curpw : Window; msg : String); procedure newwin_report (win : Window := Standard_Window); procedure selectcell (uli : Line_Position; ulj : Column_Position; lri : Line_Position; lrj : Column_Position; p : out pair; b : out Boolean); function getwindow return Window; procedure newwin_move (win : Window; dy : Line_Position; dx : Column_Position); function delete_framed (fp : FrameA; showit : Boolean) return FrameA; -- A linked list -- I wish there was a standard library linked list. Oh well. type Frame is record next, last : FrameA; do_scroll : Boolean; do_keypad : Boolean; wind : Window; end record; current : FrameA; c : Key_Code; procedure Outerbox (ul, lr : pair; onoff : Boolean) is begin if onoff then -- Note the fix of an obscure bug -- try making a 1x1 box then enlarging it, the is a blank -- upper left corner! Add (Line => ul.y - 1, Column => ul.x - 1, Ch => ACS_Map (ACS_Upper_Left_Corner)); Add (Line => ul.y - 1, Column => lr.x + 1, Ch => ACS_Map (ACS_Upper_Right_Corner)); Add (Line => lr.y + 1, Column => lr.x + 1, Ch => ACS_Map (ACS_Lower_Right_Corner)); Add (Line => lr.y + 1, Column => ul.x - 1, Ch => ACS_Map (ACS_Lower_Left_Corner)); Move_Cursor (Line => ul.y - 1, Column => ul.x); Horizontal_Line (Line_Symbol => ACS_Map (ACS_Horizontal_Line), Line_Size => Integer (lr.x - ul.x) + 1); Move_Cursor (Line => ul.y, Column => ul.x - 1); Vertical_Line (Line_Symbol => ACS_Map (ACS_Vertical_Line), Line_Size => Integer (lr.y - ul.y) + 1); Move_Cursor (Line => lr.y + 1, Column => ul.x); Horizontal_Line (Line_Symbol => ACS_Map (ACS_Horizontal_Line), Line_Size => Integer (lr.x - ul.x) + 1); Move_Cursor (Line => ul.y, Column => lr.x + 1); Vertical_Line (Line_Symbol => ACS_Map (ACS_Vertical_Line), Line_Size => Integer (lr.y - ul.y) + 1); else Add (Line => ul.y - 1, Column => ul.x - 1, Ch => ' '); Add (Line => ul.y - 1, Column => lr.x + 1, Ch => ' '); Add (Line => lr.y + 1, Column => lr.x + 1, Ch => ' '); Add (Line => lr.y + 1, Column => ul.x - 1, Ch => ' '); Move_Cursor (Line => ul.y - 1, Column => ul.x); Horizontal_Line (Line_Symbol => Blank2, Line_Size => Integer (lr.x - ul.x) + 1); Move_Cursor (Line => ul.y, Column => ul.x - 1); Vertical_Line (Line_Symbol => Blank2, Line_Size => Integer (lr.y - ul.y) + 1); Move_Cursor (Line => lr.y + 1, Column => ul.x); Horizontal_Line (Line_Symbol => Blank2, Line_Size => Integer (lr.x - ul.x) + 1); Move_Cursor (Line => ul.y, Column => lr.x + 1); Vertical_Line (Line_Symbol => Blank2, Line_Size => Integer (lr.y - ul.y) + 1); end if; end Outerbox; function HaveKeyPad (w : Window) return Boolean is begin return Get_KeyPad_Mode (w); exception when Curses_Exception => return False; end HaveKeyPad; function HaveScroll (w : Window) return Boolean is begin return Scrolling_Allowed (w); exception when Curses_Exception => return False; end HaveScroll; procedure newwin_legend (curpw : Window) is package p is new genericPuts (200); use p; use p.BS; type string_a is access String; type rrr is record msg : string_a; code : Integer range 0 .. 3; end record; legend : constant array (Positive range <>) of rrr := ( ( new String'("^C = create window"), 0 ), ( new String'("^N = next window"), 0 ), ( new String'("^P = previous window"), 0 ), ( new String'("^F = scroll forward"), 0 ), ( new String'("^B = scroll backward"), 0 ), ( new String'("^K = keypad(%s)"), 1 ), ( new String'("^S = scrollok(%s)"), 2 ), ( new String'("^W = save window to file"), 0 ), ( new String'("^R = restore window"), 0 ), ( new String'("^X = resize"), 0 ), ( new String'("^Q%s = exit"), 3 ) ); buf : Bounded_String; do_keypad : constant Boolean := HaveKeyPad (curpw); do_scroll : constant Boolean := HaveScroll (curpw); pos : Natural; mypair : pair; use Ada.Strings.Fixed; begin Move_Cursor (Line => Lines - 4, Column => 0); for n in legend'Range loop pos := Ada.Strings.Fixed.Index (Source => legend (n).msg.all, Pattern => "%s"); -- buf := (others => ' '); buf := To_Bounded_String (legend (n).msg.all); case legend (n).code is when 0 => null; when 1 => if do_keypad then Replace_Slice (buf, pos, pos + 1, "yes"); else Replace_Slice (buf, pos, pos + 1, "no"); end if; when 2 => if do_scroll then Replace_Slice (buf, pos, pos + 1, "yes"); else Replace_Slice (buf, pos, pos + 1, "no"); end if; when 3 => if do_keypad then Replace_Slice (buf, pos, pos + 1, "/ESC"); else Replace_Slice (buf, pos, pos + 1, ""); end if; end case; Get_Cursor_Position (Line => mypair.y, Column => mypair.x); if Columns < mypair.x + 3 + Column_Position (Length (buf)) then Add (Ch => newl); elsif n /= 1 then -- n /= legen'First Add (Str => ", "); end if; myAdd (Str => buf); end loop; Clear_To_End_Of_Line; end newwin_legend; procedure transient (curpw : Window; msg : String) is begin newwin_legend (curpw); if msg /= "" then Add (Line => Lines - 1, Column => 0, Str => msg); Refresh; Nap_Milli_Seconds (1000); end if; Move_Cursor (Line => Lines - 1, Column => 0); if HaveKeyPad (curpw) then Add (Str => "Non-arrow"); else Add (Str => "All other"); end if; Add (Str => " characters are echoed, window should "); if not HaveScroll (curpw) then Add (Str => "not "); end if; Add (Str => "scroll"); Clear_To_End_Of_Line; end transient; procedure newwin_report (win : Window := Standard_Window) is y : Line_Position; x : Column_Position; use Int_IO; tmp2a : String (1 .. 2); tmp2b : String (1 .. 2); begin if win /= Standard_Window then transient (win, ""); end if; Get_Cursor_Position (win, y, x); Move_Cursor (Line => Lines - 1, Column => Columns - 17); Put (tmp2a, Integer (y)); Put (tmp2b, Integer (x)); Add (Str => "Y = " & tmp2a & " X = " & tmp2b); if win /= Standard_Window then Refresh; else Move_Cursor (win, y, x); end if; end newwin_report; procedure selectcell (uli : Line_Position; ulj : Column_Position; lri : Line_Position; lrj : Column_Position; p : out pair; b : out Boolean) is c : Key_Code; res : pair; i : Line_Position := 0; j : Column_Position := 0; si : constant Line_Position := lri - uli + 1; sj : constant Column_Position := lrj - ulj + 1; begin res.y := uli; res.x := ulj; loop Move_Cursor (Line => uli + i, Column => ulj + j); newwin_report; c := Getchar; case c is when Macro_Quit | Macro_Escape => -- on the same line macro calls interfere due to the # comment -- this is needed because keypad off affects all windows. -- try removing the ESCAPE and see what happens. b := False; return; when KEY_UP => i := i + si - 1; -- same as i := i - 1 because of Modulus arithetic, -- on Line_Position, which is a Natural -- the C version uses this form too, interestingly. when KEY_DOWN => i := i + 1; when KEY_LEFT => j := j + sj - 1; when KEY_RIGHT => j := j + 1; when Key_Mouse => declare event : Mouse_Event; y : Line_Position; x : Column_Position; Button : Mouse_Button; State : Button_State; begin event := Get_Mouse; Get_Event (Event => event, Y => y, X => x, Button => Button, State => State); if y > uli and x > ulj then i := y - uli; j := x - ulj; -- same as when others => res.y := uli + i; res.x := ulj + j; p := res; b := True; return; else Beep; end if; end; when others => res.y := uli + i; res.x := ulj + j; p := res; b := True; return; end case; i := i mod si; j := j mod sj; end loop; end selectcell; function getwindow return Window is rwindow : Window; ul, lr : pair; result : Boolean; begin Move_Cursor (Line => 0, Column => 0); Clear_To_End_Of_Line; Add (Str => "Use arrows to move cursor, anything else to mark corner 1"); Refresh; selectcell (2, 1, Lines - Botlines - 2, Columns - 2, ul, result); if not result then return Null_Window; end if; Add (Line => ul.y - 1, Column => ul.x - 1, Ch => ACS_Map (ACS_Upper_Left_Corner)); Move_Cursor (Line => 0, Column => 0); Clear_To_End_Of_Line; Add (Str => "Use arrows to move cursor, anything else to mark corner 2"); Refresh; selectcell (ul.y, ul.x, Lines - Botlines - 2, Columns - 2, lr, result); if not result then return Null_Window; end if; rwindow := Sub_Window (Number_Of_Lines => lr.y - ul.y + 1, Number_Of_Columns => lr.x - ul.x + 1, First_Line_Position => ul.y, First_Column_Position => ul.x); Outerbox (ul, lr, True); Refresh; Refresh (rwindow); Move_Cursor (Line => 0, Column => 0); Clear_To_End_Of_Line; return rwindow; end getwindow; procedure newwin_move (win : Window; dy : Line_Position; dx : Column_Position) is cur_y, max_y : Line_Position; cur_x, max_x : Column_Position; begin Get_Cursor_Position (win, cur_y, cur_x); Get_Size (win, max_y, max_x); cur_x := Column_Position'Min (Column_Position'Max (cur_x + dx, 0), max_x - 1); cur_y := Line_Position'Min (Line_Position'Max (cur_y + dy, 0), max_y - 1); Move_Cursor (win, Line => cur_y, Column => cur_x); end newwin_move; function delete_framed (fp : FrameA; showit : Boolean) return FrameA is np : FrameA; begin fp.last.next := fp.next; fp.next.last := fp.last; if showit then Erase (fp.wind); Refresh (fp.wind); end if; Delete (fp.wind); if fp = fp.next then np := null; else np := fp.next; end if; -- TODO free(fp); return np; end delete_framed; Mask : Event_Mask := No_Events; Mask2 : Event_Mask; usescr : Window; begin if Has_Mouse then Register_Reportable_Event ( Button => Left, State => Clicked, Mask => Mask); Mask2 := Start_Mouse (Mask); end if; c := CTRL ('C'); Set_Raw_Mode (SwitchOn => True); loop transient (Standard_Window, ""); case c is when Character'Pos ('c') mod 16#20# => -- Ctrl('c') declare neww : constant FrameA := new Frame'(null, null, False, False, Null_Window); begin neww.wind := getwindow; if neww.wind = Null_Window then exit; -- was goto breakout; ha ha ha else if current = null then neww.next := neww; neww.last := neww; else neww.next := current.next; neww.last := current; neww.last.next := neww; neww.next.last := neww; end if; current := neww; Set_KeyPad_Mode (current.wind, True); current.do_keypad := HaveKeyPad (current.wind); current.do_scroll := HaveScroll (current.wind); end if; end; when Character'Pos ('N') mod 16#20# => -- Ctrl('N') if current /= null then current := current.next; end if; when Character'Pos ('P') mod 16#20# => -- Ctrl('P') if current /= null then current := current.last; end if; when Character'Pos ('F') mod 16#20# => -- Ctrl('F') if current /= null and then HaveScroll (current.wind) then Scroll (current.wind, 1); end if; when Character'Pos ('B') mod 16#20# => -- Ctrl('B') if current /= null and then HaveScroll (current.wind) then -- The C version of Scroll may return ERR which is ignored -- we need to avoid the exception -- with the 'and HaveScroll(current.wind)' Scroll (current.wind, -1); end if; when Character'Pos ('K') mod 16#20# => -- Ctrl('K') if current /= null then current.do_keypad := not current.do_keypad; Set_KeyPad_Mode (current.wind, current.do_keypad); end if; when Character'Pos ('S') mod 16#20# => -- Ctrl('S') if current /= null then current.do_scroll := not current.do_scroll; Allow_Scrolling (current.wind, current.do_scroll); end if; when Character'Pos ('W') mod 16#20# => -- Ctrl('W') if current /= current.next then Create (f, Name => dumpfile); -- TODO error checking if not Is_Open (f) then raise Curses_Exception; end if; Put_Window (current.wind, f); Close (f); current := delete_framed (current, True); end if; when Character'Pos ('R') mod 16#20# => -- Ctrl('R') declare neww : FrameA := new Frame'(null, null, False, False, Null_Window); begin Open (f, Mode => In_File, Name => dumpfile); neww := new Frame'(null, null, False, False, Null_Window); neww.next := current.next; neww.last := current; neww.last.next := neww; neww.next.last := neww; neww.wind := Get_Window (f); Close (f); Refresh (neww.wind); end; when Character'Pos ('X') mod 16#20# => -- Ctrl('X') if current /= null then declare tmp, ul, lr : pair; mx : Column_Position; my : Line_Position; tmpbool : Boolean; begin Move_Cursor (Line => 0, Column => 0); Clear_To_End_Of_Line; Add (Str => "Use arrows to move cursor, anything else " & "to mark new corner"); Refresh; Get_Window_Position (current.wind, ul.y, ul.x); selectcell (ul.y, ul.x, Lines - Botlines - 2, Columns - 2, tmp, tmpbool); if not tmpbool then -- the C version had a goto. I refuse gotos. Beep; else Get_Size (current.wind, lr.y, lr.x); lr.y := lr.y + ul.y - 1; lr.x := lr.x + ul.x - 1; Outerbox (ul, lr, False); Refresh_Without_Update; Get_Size (current.wind, my, mx); if my > tmp.y - ul.y then Get_Cursor_Position (current.wind, lr.y, lr.x); Move_Cursor (current.wind, tmp.y - ul.y + 1, 0); Clear_To_End_Of_Screen (current.wind); Move_Cursor (current.wind, lr.y, lr.x); end if; if mx > tmp.x - ul.x then for i in 0 .. my - 1 loop Move_Cursor (current.wind, i, tmp.x - ul.x + 1); Clear_To_End_Of_Line (current.wind); end loop; end if; Refresh_Without_Update (current.wind); lr := tmp; -- The C version passes invalid args to resize -- which returns an ERR. For Ada we avoid the exception. if lr.y /= ul.y and lr.x /= ul.x then Resize (current.wind, lr.y - ul.y + 0, lr.x - ul.x + 0); end if; Get_Window_Position (current.wind, ul.y, ul.x); Get_Size (current.wind, lr.y, lr.x); lr.y := lr.y + ul.y - 1; lr.x := lr.x + ul.x - 1; Outerbox (ul, lr, True); Refresh_Without_Update; Refresh_Without_Update (current.wind); Move_Cursor (Line => 0, Column => 0); Clear_To_End_Of_Line; Update_Screen; end if; end; end if; when Key_F10 => declare tmp : pair; tmpbool : Boolean; begin -- undocumented --- use this to test area clears selectcell (0, 0, Lines - 1, Columns - 1, tmp, tmpbool); Clear_To_End_Of_Screen; Refresh; end; when Key_Cursor_Up => newwin_move (current.wind, -1, 0); when Key_Cursor_Down => newwin_move (current.wind, 1, 0); when Key_Cursor_Left => newwin_move (current.wind, 0, -1); when Key_Cursor_Right => newwin_move (current.wind, 0, 1); when Key_Backspace | Key_Delete_Char => declare y : Line_Position; x : Column_Position; tmp : Line_Position; begin Get_Cursor_Position (current.wind, y, x); -- x := x - 1; -- I got tricked by the -1 = Max_Natural - 1 result -- y := y - 1; if not (x = 0 and y = 0) then if x = 0 then y := y - 1; Get_Size (current.wind, tmp, x); end if; x := x - 1; Delete_Character (current.wind, y, x); end if; end; when others => -- TODO c = '\r' ? if current /= null then declare begin Add (current.wind, Ch => Code_To_Char (c)); exception when Curses_Exception => null; -- this happens if we are at the -- lower right of a window and add a character. end; else Beep; end if; end case; newwin_report (current.wind); if current /= null then usescr := current.wind; else usescr := Standard_Window; end if; Refresh (usescr); c := Getchar (usescr); exit when c = Quit or (c = Escape and HaveKeyPad (usescr)); -- TODO when does c = ERR happen? end loop; -- TODO while current /= null loop -- current := delete_framed(current, False); -- end loop; Allow_Scrolling (Mode => True); End_Mouse (Mask2); Set_Raw_Mode (SwitchOn => True); Erase; End_Windows; end ncurses2.acs_and_scroll;
-- With in my Text io package for put/get With Text_IO; Use Text_IO; -- With in Random float package for my random number generator With Ada.Numerics.Float_Random; Use Ada.Numerics.Float_Random; -- With in Unbounded strings for my string monipulation With Ada.Strings.Unbounded; Use Ada.Strings.Unbounded; -- Begining of lamport_algorithm code Procedure zo is type type_message is (req, ack, rel); -- Instantiating integer IO. Package INT_IO is new Integer_IO(Integer); Use INT_IO; Package MSG_IO is new Enumeration_IO(type_message); Use MSG_IO; -- This is my random variable. G: Generator; -- random seed seed: Integer; type receiver; -- This is the type for my pointer variable for my receiver process. type rec is Access receiver; type rec_array_type is array (0..20) of rec; all_systems_go, all_dead: boolean := false; -- This is the declaration for my receiver type task. task type receiver(id: Integer; n: Integer) is Entry start(friend_array: rec_array_type); Entry RX(dest: Integer; msg: type_message; k: Integer; j: Integer); Entry kill; end receiver; -- This is the intialization or body of the receiver type and -- this is the code that the processeses will be excuting. task Body receiver is type message; type message is record mestype: type_message := rel; clock: Integer := 0; id: Integer; end record; task type transmit(dest: Integer; mess: type_message; clock: Integer; i: Integer) is end transmit; friends: rec_array_type; st: Unbounded_String := Null_Unbounded_String; --mestype: type_message; type TX is access transmit; tsk_TX: TX; osn, local_clock: Integer := 0; q: array (0 .. n) of message; temp1, temp2: message; for_all: boolean := true; dead: boolean := false; task algorithm; task body algorithm is begin loop for index in 0 .. n loop q(index).id := index; end loop; exit when (all_systems_go = true); end loop; loop --broadcast for I in 0..n loop if(I /= id)then tsk_TX := new transmit(I, req, local_clock, id); end if; end loop; q(id) := (req, local_clock, id); osn := osn + 1; local_clock := osn; wait: loop for j in 0..n loop if j /= id then if((q(id).clock < q(j).clock)or((q(id).clock = q(j).clock)and(q(id).id < q(j).id)))then null; else for_all := false; end if; end if; end loop; exit wait when (for_all = true); for_all := true; end loop wait; exit when dead = true; -- This is my CS. Which ever process made it to this section will -- get to do all of this wonderful stuff. I am cating my string for -- printing. After that small section I basicly do the samething -- again but this time i print process # " out CS". I also have a -- delay in there just to add more randomness. st := (((80/(n+1))*id) * " ") & Integer'Image(id) & " in CS."; Put(To_String(st)); New_line; delay Duration(float(random(G)) + float(10)); st := (((80/(n+1))*id) * " ") & Integer'Image(id) & " out CS."; Put_line(To_String(st)); -- broadcast local_clock := osn; for I in 0..n loop if(I /= id)then tsk_TX := new transmit(I, rel, local_clock, id); end if; end loop; q(id) := (rel, local_clock, id); osn := osn + 1; local_clock := osn; exit when dead = true; end loop; end algorithm; task body transmit is Begin friends(dest).RX(dest, mess, clock, i); st := ((((80/(n+1))*id)* " ") & Integer'Image(i) & "TX " & type_message'image(mess) & integer'image(dest)); Put_line(to_string(st)); end transmit; Begin loop select accept start(friend_array: rec_array_type)do friends := friend_array; end start; or accept RX (dest: Integer; msg: type_message; k: Integer; j:Integer) do if(dest /= id)then st := ((((80/(n+1))*id)*" ")&integer'image(id)&"FWD " &type_message'image(msg) & integer'image(dest)&" FROM "&integer'image(j)); put_line(to_string(st)); tsk_TX := new transmit(dest, msg, k, j); else if(osn < k)then osn := k; end if; osn := osn + 1; if(msg = req)then q(j) := (req, k, j); tsk_TX := new transmit(j, ack, osn, id); elsif (msg = rel)then q(j) := (rel, k, j); elsif(msg = ack)then if (q(j).mestype /= req) then q(j) := (ack, k, j); end if; end if; st := ((((80/(n+1))*id)*" ")&integer'image(id) & "RX " & type_message'image(msg) & integer'image(j)); put_line(to_string(st)); end if; end RX; or accept kill do st := ((((80/(n+1))*id)*" ")&integer'image(id)&" DIE"); put_line(to_string(st)); dead := true; -- broadcast local_clock := osn; for I in 0..n loop if(I /= id)then tsk_TX := new transmit(I, rel, local_clock, id); end if; end loop; st := (((80/(n+1))*id*" ")&integer'image(id)&" DED"); put_line(to_string(st)); end kill; end select; exit when all_dead = true; end loop; end receiver; ------------------------------------------------------------------------------- type FILE_MODE is (IN_FILE, OUT_FILE); -- This variable is used to send the number of processes. p_count: Integer; pro_array: array(0..20) of rec; friend_array: rec_array_type; friend_file: FILE_TYPE; -- number to keep the for loops correct n: Integer; index, victim, buddy: Integer; clock: Integer := 0; toKill : Integer; --assigned a random ID to determine which process to kill next dead : ARRAY (0..20) of Boolean := (Others => FALSE); --keeps track of which processes have been slain, so we dont try to kill a --process twice , which would raise an exception -- to hold number of victim --victim: Integer; -- This is the start of my main section of code that does the prompt for how -- many loops, what process to turn is set to and how many processes. This -- is also the section for the process calls. Begin -- lamport_algorithm open(friend_file, IN_FILE, "star1"); seed := 997; get(friend_file, p_count); skip_line(friend_file); reset(G, seed); n := p_count - 1; -- Loop to create the total number of processes that were put in. for pid in 0 .. n loop pro_array(pid) := new receiver(pid, n); end loop; for I in 0 .. n loop while (not(END_OF_LINE(friend_file))) loop get(friend_file, index); get(friend_file, buddy); friend_array(index) := pro_array(buddy); end loop; skip_line(friend_file); pro_array(I).start(friend_array); end loop; all_systems_go := true; FOR kill_index IN 1 .. (p_count) --for as many as there are tasks LOOP delay (60.0); Put ("Going to kill random process ... "); toKill := (Integer(random(g)) MOD p_count); WHILE (dead(toKill)) LOOP --iterate until process toKill isn't one that is already dead! toKill := (toKill + 1) MOD p_count; --random didnt cut it, try the next one END LOOP; Put (toKill); new_line; pro_Array(toKill).kill; --kill off our random process dead(toKill) := TRUE; END LOOP; --end loop to kill out all processes all_dead := true; close(friend_file); end zo; -- lamport_algorithm
-- This spec has been automatically generated from STM32F0xx.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; package STM32_SVD.DBGMCU is pragma Preelaborate; --------------- -- Registers -- --------------- subtype IDCODE_DEV_ID_Field is STM32_SVD.UInt12; subtype IDCODE_DIV_ID_Field is STM32_SVD.UInt4; subtype IDCODE_REV_ID_Field is STM32_SVD.UInt16; -- MCU Device ID Code Register type IDCODE_Register is record -- Read-only. Device Identifier DEV_ID : IDCODE_DEV_ID_Field; -- Read-only. Division Identifier DIV_ID : IDCODE_DIV_ID_Field; -- Read-only. Revision Identifier REV_ID : IDCODE_REV_ID_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IDCODE_Register use record DEV_ID at 0 range 0 .. 11; DIV_ID at 0 range 12 .. 15; REV_ID at 0 range 16 .. 31; end record; subtype CR_DBG_STOP_Field is STM32_SVD.Bit; subtype CR_DBG_STANDBY_Field is STM32_SVD.Bit; -- Debug MCU Configuration Register type CR_Register is record -- unspecified Reserved_0_0 : STM32_SVD.Bit := 16#0#; -- Debug Stop Mode DBG_STOP : CR_DBG_STOP_Field := 16#0#; -- Debug Standby Mode DBG_STANDBY : CR_DBG_STANDBY_Field := 16#0#; -- unspecified Reserved_3_31 : STM32_SVD.UInt29 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record Reserved_0_0 at 0 range 0 .. 0; DBG_STOP at 0 range 1 .. 1; DBG_STANDBY at 0 range 2 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype APBLFZ_DBG_TIMER2_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_TIMER3_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_TIMER6_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_TIMER14_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_RTC_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_WWDG_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_DBG_IWDG_STOP_Field is STM32_SVD.Bit; subtype APBLFZ_I2C1_SMBUS_TIMEOUT_Field is STM32_SVD.Bit; -- APB Low Freeze Register type APBLFZ_Register is record -- Debug Timer 2 stopped when Core is halted DBG_TIMER2_STOP : APBLFZ_DBG_TIMER2_STOP_Field := 16#0#; -- Debug Timer 3 stopped when Core is halted DBG_TIMER3_STOP : APBLFZ_DBG_TIMER3_STOP_Field := 16#0#; -- unspecified Reserved_2_3 : STM32_SVD.UInt2 := 16#0#; -- Debug Timer 6 stopped when Core is halted DBG_TIMER6_STOP : APBLFZ_DBG_TIMER6_STOP_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- Debug Timer 14 stopped when Core is halted DBG_TIMER14_STOP : APBLFZ_DBG_TIMER14_STOP_Field := 16#0#; -- unspecified Reserved_9_9 : STM32_SVD.Bit := 16#0#; -- Debug RTC stopped when Core is halted DBG_RTC_STOP : APBLFZ_DBG_RTC_STOP_Field := 16#0#; -- Debug Window Wachdog stopped when Core is halted DBG_WWDG_STOP : APBLFZ_DBG_WWDG_STOP_Field := 16#0#; -- Debug Independent Wachdog stopped when Core is halted DBG_IWDG_STOP : APBLFZ_DBG_IWDG_STOP_Field := 16#0#; -- unspecified Reserved_13_20 : STM32_SVD.Byte := 16#0#; -- SMBUS timeout mode stopped when Core is halted I2C1_SMBUS_TIMEOUT : APBLFZ_I2C1_SMBUS_TIMEOUT_Field := 16#0#; -- unspecified Reserved_22_31 : STM32_SVD.UInt10 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APBLFZ_Register use record DBG_TIMER2_STOP at 0 range 0 .. 0; DBG_TIMER3_STOP at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; DBG_TIMER6_STOP at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; DBG_TIMER14_STOP at 0 range 8 .. 8; Reserved_9_9 at 0 range 9 .. 9; DBG_RTC_STOP at 0 range 10 .. 10; DBG_WWDG_STOP at 0 range 11 .. 11; DBG_IWDG_STOP at 0 range 12 .. 12; Reserved_13_20 at 0 range 13 .. 20; I2C1_SMBUS_TIMEOUT at 0 range 21 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; subtype APBHFZ_DBG_TIMER1_STOP_Field is STM32_SVD.Bit; subtype APBHFZ_DBG_TIMER15_STO_Field is STM32_SVD.Bit; subtype APBHFZ_DBG_TIMER16_STO_Field is STM32_SVD.Bit; subtype APBHFZ_DBG_TIMER17_STO_Field is STM32_SVD.Bit; -- APB High Freeze Register type APBHFZ_Register is record -- unspecified Reserved_0_10 : STM32_SVD.UInt11 := 16#0#; -- Debug Timer 1 stopped when Core is halted DBG_TIMER1_STOP : APBHFZ_DBG_TIMER1_STOP_Field := 16#0#; -- unspecified Reserved_12_15 : STM32_SVD.UInt4 := 16#0#; -- Debug Timer 15 stopped when Core is halted DBG_TIMER15_STO : APBHFZ_DBG_TIMER15_STO_Field := 16#0#; -- Debug Timer 16 stopped when Core is halted DBG_TIMER16_STO : APBHFZ_DBG_TIMER16_STO_Field := 16#0#; -- Debug Timer 17 stopped when Core is halted DBG_TIMER17_STO : APBHFZ_DBG_TIMER17_STO_Field := 16#0#; -- unspecified Reserved_19_31 : STM32_SVD.UInt13 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APBHFZ_Register use record Reserved_0_10 at 0 range 0 .. 10; DBG_TIMER1_STOP at 0 range 11 .. 11; Reserved_12_15 at 0 range 12 .. 15; DBG_TIMER15_STO at 0 range 16 .. 16; DBG_TIMER16_STO at 0 range 17 .. 17; DBG_TIMER17_STO at 0 range 18 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Debug support type DBGMCU_Peripheral is record -- MCU Device ID Code Register IDCODE : aliased IDCODE_Register; -- Debug MCU Configuration Register CR : aliased CR_Register; -- APB Low Freeze Register APBLFZ : aliased APBLFZ_Register; -- APB High Freeze Register APBHFZ : aliased APBHFZ_Register; end record with Volatile; for DBGMCU_Peripheral use record IDCODE at 16#0# range 0 .. 31; CR at 16#4# range 0 .. 31; APBLFZ at 16#8# range 0 .. 31; APBHFZ at 16#C# range 0 .. 31; end record; -- Debug support DBGMCU_Periph : aliased DBGMCU_Peripheral with Import, Address => System'To_Address (16#40015800#); end STM32_SVD.DBGMCU;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 2 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1999 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-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. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 12 package System.Pack_12 is pragma Preelaborate (Pack_12); Bits : constant := 12; type Bits_12 is mod 2 ** Bits; for Bits_12'Size use Bits; function Get_12 (Arr : System.Address; N : Natural) return Bits_12; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_12 (Arr : System.Address; N : Natural; E : Bits_12); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_12 (Arr : System.Address; N : Natural) return Bits_12; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_12 (Arr : System.Address; N : Natural; E : Bits_12); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_12;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . W I D _ W C H A R -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.Wid_WChar is -------------------------- -- Width_Wide_Character -- -------------------------- function Width_Wide_Character (Lo, Hi : Wide_Character) return Natural is W : Natural; P : Natural; begin W := 0; for C in Lo .. Hi loop P := Wide_Character'Pos (C); -- Here if we find a character in wide character range -- Width is max value (12) for Hex_hhhhhhhh if P > 16#FF# then return 12; -- If we are in character range then use length of character image else declare S : constant String := Character'Image (Character'Val (P)); begin W := Natural'Max (W, S'Length); end; end if; end loop; return W; end Width_Wide_Character; ------------------------------- -- Width_Wide_Wide_Character -- ------------------------------- function Width_Wide_Wide_Character (Lo, Hi : Wide_Wide_Character) return Natural is W : Natural; P : Natural; begin W := 0; for C in Lo .. Hi loop P := Wide_Wide_Character'Pos (C); -- Here if we find a character in wide wide character range. -- Width is max value (12) for Hex_hhhhhhhh if P > 16#FF# then W := 12; -- If we are in character range then use length of character image else declare S : constant String := Character'Image (Character'Val (P)); begin W := Natural'Max (W, S'Length); end; end if; end loop; return W; end Width_Wide_Wide_Character; end System.Wid_WChar;
------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------ package body Asis.Gela.Elements.Clause is function Clause_Names (Element : Named_Clause_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List is begin return Primary_Expression_Lists.To_Element_List (Element.Clause_Names, Include_Pragmas); end Clause_Names; procedure Set_Clause_Names (Element : in out Named_Clause_Node; Value : in Asis.Element) is begin Element.Clause_Names := Primary_Expression_Lists.List (Value); end Set_Clause_Names; function Clause_Names_List (Element : Named_Clause_Node) return Asis.Element is begin return Asis.Element (Element.Clause_Names); end Clause_Names_List; function Children (Element : access Named_Clause_Node) return Traverse_List is begin return (1 => (True, Asis.Element (Element.Clause_Names))); end Children; function New_Use_Package_Clause_Node (The_Context : ASIS.Context) return Use_Package_Clause_Ptr is Result : Use_Package_Clause_Ptr := new Use_Package_Clause_Node; begin Set_Enclosing_Compilation_Unit (Result.all, Current_Unit (The_Context.all)); return Result; end New_Use_Package_Clause_Node; function Clause_Kind (Element : Use_Package_Clause_Node) return Asis.Clause_Kinds is begin return A_Use_Package_Clause; end; function Clone (Element : Use_Package_Clause_Node; Parent : Asis.Element) return Asis.Element is Result : constant Use_Package_Clause_Ptr := new Use_Package_Clause_Node; begin Result.Enclosing_Element := Parent; Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit; Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited; Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance; Result.Start_Position := Element.Start_Position; Result.End_Position := Element.End_Position; Result.Enclosing_Compilation_Unit := Enclosing_Compilation_Unit (Parent.all); Result.Hash := Element.Hash; Result.Place := Element.Place; return Asis.Element (Result); end Clone; procedure Copy (Source : in Asis.Element; Target : access Use_Package_Clause_Node; Cloner : in Cloner_Class; Parent : in Asis.Element) is begin Set_Clause_Names (Target.all, Primary_Expression_Lists.Deep_Copy (Clause_Names (Source.all), Cloner, Asis.Element (Target))); end Copy; function New_Use_Type_Clause_Node (The_Context : ASIS.Context) return Use_Type_Clause_Ptr is Result : Use_Type_Clause_Ptr := new Use_Type_Clause_Node; begin Set_Enclosing_Compilation_Unit (Result.all, Current_Unit (The_Context.all)); return Result; end New_Use_Type_Clause_Node; function Clause_Kind (Element : Use_Type_Clause_Node) return Asis.Clause_Kinds is begin return A_Use_Type_Clause; end; function Clone (Element : Use_Type_Clause_Node; Parent : Asis.Element) return Asis.Element is Result : constant Use_Type_Clause_Ptr := new Use_Type_Clause_Node; begin Result.Enclosing_Element := Parent; Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit; Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited; Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance; Result.Start_Position := Element.Start_Position; Result.End_Position := Element.End_Position; Result.Enclosing_Compilation_Unit := Enclosing_Compilation_Unit (Parent.all); Result.Hash := Element.Hash; Result.Place := Element.Place; return Asis.Element (Result); end Clone; procedure Copy (Source : in Asis.Element; Target : access Use_Type_Clause_Node; Cloner : in Cloner_Class; Parent : in Asis.Element) is begin Set_Clause_Names (Target.all, Primary_Expression_Lists.Deep_Copy (Clause_Names (Source.all), Cloner, Asis.Element (Target))); end Copy; function Has_Limited (Element : With_Clause_Node) return Boolean is begin return Element.Has_Limited; end Has_Limited; procedure Set_Has_Limited (Element : in out With_Clause_Node; Value : in Boolean) is begin Element.Has_Limited := Value; end Set_Has_Limited; function Has_Private (Element : With_Clause_Node) return Boolean is begin return Element.Has_Private; end Has_Private; procedure Set_Has_Private (Element : in out With_Clause_Node; Value : in Boolean) is begin Element.Has_Private := Value; end Set_Has_Private; function New_With_Clause_Node (The_Context : ASIS.Context) return With_Clause_Ptr is Result : With_Clause_Ptr := new With_Clause_Node; begin Set_Enclosing_Compilation_Unit (Result.all, Current_Unit (The_Context.all)); return Result; end New_With_Clause_Node; function Clause_Kind (Element : With_Clause_Node) return Asis.Clause_Kinds is begin return A_With_Clause; end; function Clone (Element : With_Clause_Node; Parent : Asis.Element) return Asis.Element is Result : constant With_Clause_Ptr := new With_Clause_Node; begin Result.Enclosing_Element := Parent; Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit; Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited; Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance; Result.Start_Position := Element.Start_Position; Result.End_Position := Element.End_Position; Result.Enclosing_Compilation_Unit := Enclosing_Compilation_Unit (Parent.all); Result.Hash := Element.Hash; Result.Place := Element.Place; Result.Has_Limited := Element.Has_Limited; Result.Has_Private := Element.Has_Private; return Asis.Element (Result); end Clone; procedure Copy (Source : in Asis.Element; Target : access With_Clause_Node; Cloner : in Cloner_Class; Parent : in Asis.Element) is begin Set_Clause_Names (Target.all, Primary_Expression_Lists.Deep_Copy (Clause_Names (Source.all), Cloner, Asis.Element (Target))); end Copy; function Representation_Clause_Name (Element : Representation_Clause_Node) return Asis.Name is begin return Element.Representation_Clause_Name; end Representation_Clause_Name; procedure Set_Representation_Clause_Name (Element : in out Representation_Clause_Node; Value : in Asis.Name) is begin Element.Representation_Clause_Name := Value; end Set_Representation_Clause_Name; function Clause_Kind (Element : Representation_Clause_Node) return Asis.Clause_Kinds is begin return A_Representation_Clause; end; function Children (Element : access Representation_Clause_Node) return Traverse_List is begin return (1 => (False, Element.Representation_Clause_Name'Access)); end Children; function Component_Clause_Position (Element : Component_Clause_Node) return Asis.Expression is begin return Element.Component_Clause_Position; end Component_Clause_Position; procedure Set_Component_Clause_Position (Element : in out Component_Clause_Node; Value : in Asis.Expression) is begin Element.Component_Clause_Position := Value; end Set_Component_Clause_Position; function Component_Clause_Range (Element : Component_Clause_Node) return Asis.Discrete_Range is begin return Element.Component_Clause_Range; end Component_Clause_Range; procedure Set_Component_Clause_Range (Element : in out Component_Clause_Node; Value : in Asis.Discrete_Range) is begin Element.Component_Clause_Range := Value; end Set_Component_Clause_Range; function Representation_Clause_Name (Element : Component_Clause_Node) return Asis.Name is begin return Element.Representation_Clause_Name; end Representation_Clause_Name; procedure Set_Representation_Clause_Name (Element : in out Component_Clause_Node; Value : in Asis.Name) is begin Element.Representation_Clause_Name := Value; end Set_Representation_Clause_Name; function New_Component_Clause_Node (The_Context : ASIS.Context) return Component_Clause_Ptr is Result : Component_Clause_Ptr := new Component_Clause_Node; begin Set_Enclosing_Compilation_Unit (Result.all, Current_Unit (The_Context.all)); return Result; end New_Component_Clause_Node; function Clause_Kind (Element : Component_Clause_Node) return Asis.Clause_Kinds is begin return A_Component_Clause; end; function Children (Element : access Component_Clause_Node) return Traverse_List is begin return ((False, Element.Representation_Clause_Name'Access), (False, Element.Component_Clause_Position'Access), (False, Element.Component_Clause_Range'Access)); end Children; function Clone (Element : Component_Clause_Node; Parent : Asis.Element) return Asis.Element is Result : constant Component_Clause_Ptr := new Component_Clause_Node; begin Result.Enclosing_Element := Parent; Result.Is_Part_Of_Implicit := Element.Is_Part_Of_Implicit; Result.Is_Part_Of_Inherited := Element.Is_Part_Of_Inherited; Result.Is_Part_Of_Instance := Element.Is_Part_Of_Instance; Result.Start_Position := Element.Start_Position; Result.End_Position := Element.End_Position; Result.Enclosing_Compilation_Unit := Enclosing_Compilation_Unit (Parent.all); Result.Hash := Element.Hash; Result.Place := Element.Place; return Asis.Element (Result); end Clone; procedure Copy (Source : in Asis.Element; Target : access Component_Clause_Node; Cloner : in Cloner_Class; Parent : in Asis.Element) is begin Target.Representation_Clause_Name := Copy (Cloner, Representation_Clause_Name (Source.all), Asis.Element (Target)); Target.Component_Clause_Position := Copy (Cloner, Component_Clause_Position (Source.all), Asis.Element (Target)); Target.Component_Clause_Range := Copy (Cloner, Component_Clause_Range (Source.all), Asis.Element (Target)); end Copy; end Asis.Gela.Elements.Clause;
with Main; use Main; with Ada.Exceptions; with Reporter; with RASCAL.TaskManager; package body Controller_Internet is -- package TaskManager renames RASCAL.TaskManager; -- procedure Handle (The : in TEL_ViewHomePage_Type) is Child : Integer; begin Child := TaskManager.Start_Task ("URIdispatch http://www.arcsite.de/hp/bracke/"); exception when e: others => Report_Error("HOMEPAGE",Ada.Exceptions.Exception_Information (e)); end Handle; -- procedure Handle (The : in TEL_SendEmail_Type) is Child : Integer; begin Child := TaskManager.Start_Task ("URIdispatch mailto:bbracke@web.de"); exception when e: others => Report_Error("SENDEMAIL",Ada.Exceptions.Exception_Information (e)); end Handle; -- end Controller_Internet;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Testsuite Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- Checks whether type of property is not null when it imported from UML2.3 -- metamodel. ------------------------------------------------------------------------------ with League.Application; with AMF.Facility; with AMF.UML.Properties; with AMF.UML.Types; with AMF.URI_Stores; with AMF.Visitors.UML_Visitors; with AMF.Visitors.UML_Containment; with XMI.Reader; with AMF.Internals.Modules.MOFEXT_Module; pragma Unreferenced (AMF.Internals.Modules.MOFEXT_Module); with AMF.Internals.Modules.UML_Module; pragma Unreferenced (AMF.Internals.Modules.UML_Module); procedure Test_227 is type Test_227_Visitor is limited new AMF.Visitors.UML_Visitors.UML_Visitor with record Found : Boolean := False; end record; overriding procedure Enter_Property (Self : in out Test_227_Visitor; Element : not null AMF.UML.Properties.UML_Property_Access; Control : in out AMF.Visitors.Traverse_Control); -------------------- -- Enter_Property -- -------------------- overriding procedure Enter_Property (Self : in out Test_227_Visitor; Element : not null AMF.UML.Properties.UML_Property_Access; Control : in out AMF.Visitors.Traverse_Control) is pragma Unreferenced (Control); use type AMF.UML.Types.UML_Type_Access; The_Type : constant AMF.UML.Types.UML_Type_Access := Element.Get_Type; begin Self.Found := True; if The_Type = null then raise Program_Error; end if; end Enter_Property; Store : AMF.URI_Stores.URI_Store_Access; Iterator : AMF.Visitors.UML_Containment.UML_Containment_Iterator; Test : Test_227_Visitor; begin AMF.Facility.Initialize; Store := XMI.Reader.Read_URI (League.Application.Arguments.Element (1)); Iterator.Visit (Test, Store); if not Test.Found then raise Program_Error; end if; end Test_227;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_vendor_private_with_reply_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; vendor_code : aliased Interfaces.Unsigned_32; context_tag : aliased xcb.xcb_glx_context_tag_t; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_glx_vendor_private_with_reply_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_vendor_private_with_reply_request_t.Item, Element_Array => xcb.xcb_glx_vendor_private_with_reply_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb .xcb_glx_vendor_private_with_reply_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_vendor_private_with_reply_request_t.Pointer, Element_Array => xcb.xcb_glx_vendor_private_with_reply_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_vendor_private_with_reply_request_t;
with GID.Buffering; package body GID.Color_tables is procedure Convert(c, d: in U8; rgb: out RGB_color) is begin rgb.red := (d and 127) / 4; rgb.green:= (d and 3) * 8 + c / 32; rgb.blue := c and 31; -- rgb.red := U8((U16(rgb.red ) * 255) / 31); rgb.green:= U8((U16(rgb.green) * 255) / 31); rgb.blue := U8((U16(rgb.blue ) * 255) / 31); end Convert; procedure Load_palette (image: in out Image_descriptor) is c, d: U8; use GID.Buffering; begin if image.palette = null then return; end if; declare palette: Color_table renames image.palette.all; begin for i in palette'Range loop case image.format is when BMP => -- order is BGRx U8'Read(image.stream, palette(i).blue); U8'Read(image.stream, palette(i).green); U8'Read(image.stream, palette(i).red); U8'Read(image.stream, c); -- x discarded when GIF | PNG => -- buffered; order is RGB Get_Byte(image.buffer, palette(i).red); Get_Byte(image.buffer, palette(i).green); Get_Byte(image.buffer, palette(i).blue); when TGA => case image.subformat_id is -- = palette's bit depth when 8 => -- Grey U8'Read(image.stream, c); palette(i).red := c; palette(i).green:= c; palette(i).blue := c; when 15 | 16 => -- RGB, 5 bit per channel U8'Read(image.stream, c); U8'Read(image.stream, d); Convert(c, d, palette(i)); when 24 | 32 => -- RGB | RGBA, 8 bit per channel U8'Read(image.stream, palette(i).blue); U8'Read(image.stream, palette(i).green); U8'Read(image.stream, palette(i).red); when others => null; end case; when others => raise unsupported_image_subformat with "Palette loading not implemented for " & Image_format_type'Image(image.format); end case; end loop; end; end Load_palette; end GID.Color_tables;
----------------------------------------------------------------------- -- AWA.Images.Models -- AWA.Images.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) 2013 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, "unit * is not referenced"); 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.Basic.Lists; with AWA.Storages.Models; pragma Warnings (On, "unit * is not referenced"); package AWA.Images.Models is type Image_Ref is new ADO.Objects.Object_Ref with null record; -- -------------------- -- An image that was uploaded by a user in an image folder. -- -------------------- -- Create an object key for Image. function Image_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Image from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Image_Key (Id : in String) return ADO.Objects.Object_Key; Null_Image : constant Image_Ref; function "=" (Left, Right : Image_Ref'Class) return Boolean; -- Set the image identifier. procedure Set_Id (Object : in out Image_Ref; Value : in ADO.Identifier); -- Get the image identifier. function Get_Id (Object : in Image_Ref) return ADO.Identifier; -- Get the image version. function Get_Version (Object : in Image_Ref) return Integer; -- Set the image width. procedure Set_Width (Object : in out Image_Ref; Value : in Natural); -- Get the image width. function Get_Width (Object : in Image_Ref) return Natural; -- Set the image height. procedure Set_Height (Object : in out Image_Ref; Value : in Natural); -- Get the image height. function Get_Height (Object : in Image_Ref) return Natural; -- Set the image thumbnail height. procedure Set_Thumb_Height (Object : in out Image_Ref; Value : in Natural); -- Get the image thumbnail height. function Get_Thumb_Height (Object : in Image_Ref) return Natural; -- Set the image thumbnail width. procedure Set_Thumb_Width (Object : in out Image_Ref; Value : in Natural); -- Get the image thumbnail width. function Get_Thumb_Width (Object : in Image_Ref) return Natural; -- Set the thumbnail image to display the image is an image selector. procedure Set_Thumbnail (Object : in out Image_Ref; Value : in AWA.Storages.Models.Storage_Ref'Class); -- Get the thumbnail image to display the image is an image selector. function Get_Thumbnail (Object : in Image_Ref) return AWA.Storages.Models.Storage_Ref'Class; -- Set the image storage file. procedure Set_Storage (Object : in out Image_Ref; Value : in AWA.Storages.Models.Storage_Ref'Class); -- Get the image storage file. function Get_Storage (Object : in Image_Ref) return AWA.Storages.Models.Storage_Ref'Class; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Image_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 Image_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 Image_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 Image_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Image_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Image_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition IMAGE_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Image_Ref); -- Copy of the object. procedure Copy (Object : in Image_Ref; Into : in out Image_Ref); package Image_Vectors is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Image_Ref, "=" => "="); subtype Image_Vector is Image_Vectors.Vector; procedure List (Object : in out Image_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class); -- -------------------- -- The list of images for a given folder. -- -------------------- type Image_Info is new Util.Beans.Basic.Readonly_Bean with record -- the storage identifier which contains the image data. Id : ADO.Identifier; -- the image file name. Name : Ada.Strings.Unbounded.Unbounded_String; -- the image file creation date. Create_Date : Ada.Calendar.Time; -- the image file storage URI. Uri : Ada.Strings.Unbounded.Unbounded_String; -- the image file storage URI. Storage : Integer; -- the image file mime type. Mime_Type : Ada.Strings.Unbounded.Unbounded_String; -- the image file size. File_Size : Integer; -- the image width. Width : Integer; -- the image height. Height : Integer; -- the image thumbnail width. Thumb_Width : Integer; -- the image thumbnail height. Thumb_Height : Integer; -- the image thumbnail identifier. Thumbnail_Id : ADO.Identifier; end record; -- Get the bean attribute identified by the given name. overriding function Get_Value (From : in Image_Info; Name : in String) return Util.Beans.Objects.Object; package Image_Info_Beans is new Util.Beans.Basic.Lists (Element_Type => Image_Info); package Image_Info_Vectors renames Image_Info_Beans.Vectors; subtype Image_Info_List_Bean is Image_Info_Beans.List_Bean; type Image_Info_List_Bean_Access is access all Image_Info_List_Bean; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out Image_Info_List_Bean'Class; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); subtype Image_Info_Vector is Image_Info_Vectors.Vector; -- Run the query controlled by <b>Context</b> and append the list in <b>Object</b>. procedure List (Object : in out Image_Info_Vector; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class); Query_Image_List : constant ADO.Queries.Query_Definition_Access; private IMAGE_NAME : aliased constant String := "awa_image"; COL_0_1_NAME : aliased constant String := "id"; COL_1_1_NAME : aliased constant String := "version"; COL_2_1_NAME : aliased constant String := "width"; COL_3_1_NAME : aliased constant String := "height"; COL_4_1_NAME : aliased constant String := "thumb_height"; COL_5_1_NAME : aliased constant String := "thumb_width"; COL_6_1_NAME : aliased constant String := "thumbnail_id"; COL_7_1_NAME : aliased constant String := "storage_id"; IMAGE_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 8, Table => IMAGE_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 ) ); IMAGE_TABLE : constant ADO.Schemas.Class_Mapping_Access := IMAGE_DEF'Access; Null_Image : constant Image_Ref := Image_Ref'(ADO.Objects.Object_Ref with others => <>); type Image_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => IMAGE_DEF'Access) with record Version : Integer; Width : Natural; Height : Natural; Thumb_Height : Natural; Thumb_Width : Natural; Thumbnail : AWA.Storages.Models.Storage_Ref; Storage : AWA.Storages.Models.Storage_Ref; end record; type Image_Access is access all Image_Impl; overriding procedure Destroy (Object : access Image_Impl); overriding procedure Find (Object : in out Image_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Image_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Image_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Image_Ref'Class; Impl : out Image_Access); package File_1 is new ADO.Queries.Loaders.File (Path => "image-list.xml", Sha1 => "6A8E69BE2D48CAE5EEE4093D819F4015C272A10C"); package Def_Imageinfo_Image_List is new ADO.Queries.Loaders.Query (Name => "image-list", File => File_1.File'Access); Query_Image_List : constant ADO.Queries.Query_Definition_Access := Def_Imageinfo_Image_List.Query'Access; end AWA.Images.Models;
with Text_IO; use Text_IO; -- Programme minimal qui affiche juste un message. procedure Premier_Programme is begin Put_Line ("Bravo ! Vous avez réussi à exécuter le programme."); end Premier_Programme;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S W I T C H -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Osint; use Osint; with Output; use Output; package body Switch is ---------------- -- Bad_Switch -- ---------------- procedure Bad_Switch (Switch : Character) is begin Osint.Fail ("invalid switch: " & Switch); end Bad_Switch; procedure Bad_Switch (Switch : String) is begin Osint.Fail ("invalid switch: " & Switch); end Bad_Switch; ------------------------------ -- Check_Version_And_Help_G -- ------------------------------ procedure Check_Version_And_Help_G (Tool_Name : String; Initial_Year : String; Version_String : String := Gnatvsn.Gnat_Version_String) is Version_Switch_Present : Boolean := False; Help_Switch_Present : Boolean := False; Next_Arg : Natural; begin -- First check for --version or --help Next_Arg := 1; while Next_Arg < Arg_Count loop declare Next_Argv : String (1 .. Len_Arg (Next_Arg)); begin Fill_Arg (Next_Argv'Address, Next_Arg); if Next_Argv = Version_Switch then Version_Switch_Present := True; elsif Next_Argv = Help_Switch then Help_Switch_Present := True; end if; Next_Arg := Next_Arg + 1; end; end loop; -- If --version was used, display version and exit if Version_Switch_Present then Set_Standard_Output; Display_Version (Tool_Name, Initial_Year, Version_String); Write_Str (Gnatvsn.Gnat_Free_Software); Write_Eol; Write_Eol; Exit_Program (E_Success); end if; -- If --help was used, display help and exit if Help_Switch_Present then Set_Standard_Output; Usage; Write_Eol; Write_Line ("Report bugs to report@adacore.com"); Exit_Program (E_Success); end if; end Check_Version_And_Help_G; ------------------------------------ -- Display_Usage_Version_And_Help -- ------------------------------------ procedure Display_Usage_Version_And_Help is begin Write_Str (" --version Display version and exit"); Write_Eol; Write_Str (" --help Display usage and exit"); Write_Eol; Write_Eol; end Display_Usage_Version_And_Help; --------------------- -- Display_Version -- --------------------- procedure Display_Version (Tool_Name : String; Initial_Year : String; Version_String : String := Gnatvsn.Gnat_Version_String) is begin Write_Str (Tool_Name); Write_Char (' '); Write_Str (Version_String); Write_Eol; Write_Str ("Copyright (C) "); Write_Str (Initial_Year); Write_Char ('-'); Write_Str (Gnatvsn.Current_Year); Write_Str (", "); Write_Str (Gnatvsn.Copyright_Holder); Write_Eol; end Display_Version; ------------------------- -- Is_Front_End_Switch -- ------------------------- function Is_Front_End_Switch (Switch_Chars : String) return Boolean is Ptr : constant Positive := Switch_Chars'First; begin return Is_Switch (Switch_Chars) and then (Switch_Chars (Ptr + 1) = 'I' or else (Switch_Chars'Length >= 5 and then Switch_Chars (Ptr + 1 .. Ptr + 4) = "gnat") or else (Switch_Chars'Length >= 5 and then Switch_Chars (Ptr + 2 .. Ptr + 4) = "RTS")); end Is_Front_End_Switch; ---------------------------- -- Is_Internal_GCC_Switch -- ---------------------------- function Is_Internal_GCC_Switch (Switch_Chars : String) return Boolean is First : constant Natural := Switch_Chars'First + 1; Last : constant Natural := Switch_Last (Switch_Chars); begin return Is_Switch (Switch_Chars) and then (Switch_Chars (First .. Last) = "-param" or else Switch_Chars (First .. Last) = "dumpdir" or else Switch_Chars (First .. Last) = "dumpbase" or else Switch_Chars (First .. Last) = "dumpbase-ext"); end Is_Internal_GCC_Switch; --------------- -- Is_Switch -- --------------- function Is_Switch (Switch_Chars : String) return Boolean is begin return Switch_Chars'Length > 1 and then Switch_Chars (Switch_Chars'First) = '-'; end Is_Switch; ----------------- -- Switch_Last -- ----------------- function Switch_Last (Switch_Chars : String) return Natural is Last : constant Natural := Switch_Chars'Last; begin if Last >= Switch_Chars'First and then Switch_Chars (Last) = ASCII.NUL then return Last - 1; else return Last; end if; end Switch_Last; ----------------- -- Nat_Present -- ----------------- function Nat_Present (Switch_Chars : String; Max : Integer; Ptr : Integer) return Boolean is begin return (Ptr <= Max and then Switch_Chars (Ptr) in '0' .. '9') or else (Ptr < Max and then Switch_Chars (Ptr) = '=' and then Switch_Chars (Ptr + 1) in '0' .. '9'); end Nat_Present; -------------- -- Scan_Nat -- -------------- procedure Scan_Nat (Switch_Chars : String; Max : Integer; Ptr : in out Integer; Result : out Nat; Switch : Character) is begin Result := 0; if not Nat_Present (Switch_Chars, Max, Ptr) then Osint.Fail ("missing numeric value for switch: " & Switch); end if; if Switch_Chars (Ptr) = '=' then Ptr := Ptr + 1; end if; while Ptr <= Max and then Switch_Chars (Ptr) in '0' .. '9' loop Result := Result * 10 + Character'Pos (Switch_Chars (Ptr)) - Character'Pos ('0'); Ptr := Ptr + 1; if Result > Switch_Max_Value then Osint.Fail ("numeric value out of range for switch: " & Switch); end if; end loop; end Scan_Nat; -------------- -- Scan_Pos -- -------------- procedure Scan_Pos (Switch_Chars : String; Max : Integer; Ptr : in out Integer; Result : out Pos; Switch : Character) is Temp : Nat; begin Scan_Nat (Switch_Chars, Max, Ptr, Temp, Switch); if Temp = 0 then Osint.Fail ("numeric value out of range for switch: " & Switch); end if; Result := Temp; end Scan_Pos; end Switch;
-- CC3224A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT A FORMAL ARRAY TYPE DENOTES ITS ACTUAL -- PARAMETER, AND THAT OPERATIONS OF THE FORMAL TYPE ARE THOSE -- IDENTIFIED WITH THE CORRESPONDING OPERATIONS OF THE ACTUAL TYPE. -- HISTORY: -- DHH 09/19/88 CREATED ORIGINAL TEST. -- EDWARD V. BERARD, 14 AUGUST 1990 ADDED CHECKS FOR MULTI- -- DIMENSIONAL ARRAYS -- PWN 11/30/94 REMOVED 'BASE USE ILLEGAL IN ADA 9X. WITH REPORT ; PROCEDURE CC3224A IS SUBTYPE INT IS INTEGER RANGE 1 .. 3; TYPE ARR IS ARRAY(1 .. 3) OF INTEGER; TYPE B_ARR IS ARRAY(1 .. 3) OF BOOLEAN; Q : ARR; R : B_ARR; GENERIC TYPE T IS ARRAY(INT) OF INTEGER; PACKAGE P IS SUBTYPE SUB_T IS T; X : SUB_T := (1, 2, 3); END P; GENERIC TYPE T IS ARRAY(INT) OF BOOLEAN; PACKAGE BOOL IS SUBTYPE SUB_T IS T; END BOOL; SHORT_START : CONSTANT := -100 ; SHORT_END : CONSTANT := 100 ; TYPE SHORT_RANGE IS RANGE SHORT_START .. SHORT_END ; SUBTYPE REALLY_SHORT IS SHORT_RANGE RANGE -9 .. 0 ; TYPE MONTH_TYPE IS (JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC) ; SUBTYPE FIRST_HALF IS MONTH_TYPE RANGE JAN .. JUN ; TYPE DAY_TYPE IS RANGE 1 .. 31 ; TYPE YEAR_TYPE IS RANGE 1904 .. 2050 ; TYPE DATE IS RECORD MONTH : MONTH_TYPE ; DAY : DAY_TYPE ; YEAR : YEAR_TYPE ; END RECORD ; TODAY : DATE := (MONTH => AUG, DAY => 8, YEAR => 1990) ; FIRST_DATE : DATE := (DAY => 6, MONTH => JUN, YEAR => 1967) ; WALL_DATE : DATE := (MONTH => NOV, DAY => 9, YEAR => 1989) ; SUBTYPE FIRST_FIVE IS CHARACTER RANGE 'A' .. 'E' ; TYPE THREE_DIMENSIONAL IS ARRAY (REALLY_SHORT, FIRST_HALF, FIRST_FIVE) OF DATE ; TD_ARRAY : THREE_DIMENSIONAL ; SECOND_TD_ARRAY : THREE_DIMENSIONAL ; GENERIC TYPE CUBE IS ARRAY (REALLY_SHORT, FIRST_HALF, FIRST_FIVE) OF DATE ; PACKAGE TD_ARRAY_PACKAGE IS SUBTYPE SUB_CUBE IS CUBE ; TEST_3D_ARRAY : SUB_CUBE := (THREE_DIMENSIONAL'RANGE => (THREE_DIMENSIONAL'RANGE (2) => (THREE_DIMENSIONAL'RANGE (3) => TODAY))) ; END TD_ARRAY_PACKAGE ; BEGIN -- CC3224A REPORT.TEST ("CC3224A", "CHECK THAT A FORMAL ARRAY TYPE DENOTES " & "ITS ACTUAL PARAMETER, AND THAT OPERATIONS OF " & "THE FORMAL TYPE ARE THOSE IDENTIFIED WITH THE " & "CORRESPONDING OPERATIONS OF THE ACTUAL TYPE"); ONE_DIMENSIONAL: DECLARE PACKAGE P1 IS NEW P (ARR); TYPE NEW_T IS NEW P1.SUB_T; OBJ_NEWT : NEW_T; BEGIN -- ONE_DIMENSIONAL IF NEW_T'FIRST /= ARR'FIRST THEN REPORT.FAILED("'FIRST ATTRIBUTE REPORT.FAILED"); END IF; IF NEW_T'LAST /= ARR'LAST THEN REPORT.FAILED("'LAST ATTRIBUTE REPORT.FAILED"); END IF; IF NEW_T'FIRST(1) /= ARR'FIRST(1) THEN REPORT.FAILED("'FIRST(N) ATTRIBUTE REPORT.FAILED"); END IF; IF NOT (NEW_T'LAST(1) = ARR'LAST(1)) THEN REPORT.FAILED("'LAST(N) ATTRIBUTE REPORT.FAILED"); END IF; IF 2 NOT IN NEW_T'RANGE THEN REPORT.FAILED("'RANGE ATTRIBUTE REPORT.FAILED"); END IF; IF 3 NOT IN NEW_T'RANGE(1) THEN REPORT.FAILED("'RANGE(N) ATTRIBUTE REPORT.FAILED"); END IF; IF NEW_T'LENGTH /= ARR'LENGTH THEN REPORT.FAILED("'LENGTH ATTRIBUTE REPORT.FAILED"); END IF; IF NEW_T'LENGTH(1) /= ARR'LENGTH(1) THEN REPORT.FAILED("'LENGTH(N) ATTRIBUTE REPORT.FAILED"); END IF; OBJ_NEWT := (1, 2, 3); IF REPORT.IDENT_INT(3) /= OBJ_NEWT(3) THEN REPORT.FAILED("ASSIGNMENT REPORT.FAILED"); END IF; IF NEW_T'(1, 2, 3) NOT IN NEW_T THEN REPORT.FAILED("QUALIFIED EXPRESSION REPORT.FAILED"); END IF; Q := (1, 2, 3); IF NEW_T(Q) /= OBJ_NEWT THEN REPORT.FAILED("EXPLICIT CONVERSION REPORT.FAILED"); END IF; IF Q(1) /= OBJ_NEWT(1) THEN REPORT.FAILED("INDEXING REPORT.FAILED"); END IF; IF (1, 2) /= OBJ_NEWT(1 .. 2) THEN REPORT.FAILED("SLICE REPORT.FAILED"); END IF; IF (1, 2) & OBJ_NEWT(3) /= NEW_T(Q)THEN REPORT.FAILED("CATENATION REPORT.FAILED"); END IF; IF NOT (P1.X IN ARR) THEN REPORT.FAILED ("FORMAL DOES NOT DENOTE ACTUAL"); END IF; END ONE_DIMENSIONAL ; BOOLEAN_ONE_DIMENSIONAL: DECLARE PACKAGE B1 IS NEW BOOL (B_ARR); TYPE NEW_T IS NEW B1.SUB_T; OBJ_NEWT : NEW_T; BEGIN -- BOOLEAN_ONE_DIMENSIONAL OBJ_NEWT := (TRUE, TRUE, TRUE); R := (TRUE, TRUE, TRUE); IF (NEW_T'((TRUE, TRUE, TRUE)) XOR OBJ_NEWT) /= NEW_T'((FALSE, FALSE, FALSE)) THEN REPORT.FAILED("XOR REPORT.FAILED - BOOLEAN") ; END IF; IF (NEW_T'((FALSE, FALSE, TRUE)) AND OBJ_NEWT) /= NEW_T'((FALSE, FALSE, TRUE)) THEN REPORT.FAILED("AND REPORT.FAILED - BOOLEAN") ; END IF; IF (NEW_T'((FALSE, FALSE, FALSE)) OR OBJ_NEWT) /= NEW_T'((TRUE, TRUE, TRUE)) THEN REPORT.FAILED("OR REPORT.FAILED - BOOLEAN") ; END IF ; END BOOLEAN_ONE_DIMENSIONAL ; THREE_DIMENSIONAL_TEST: DECLARE PACKAGE TD IS NEW TD_ARRAY_PACKAGE (CUBE => THREE_DIMENSIONAL) ; TYPE NEW_CUBE IS NEW TD.SUB_CUBE ; NEW_CUBE_OBJECT : NEW_CUBE ; BEGIN -- THREE_DIMENSIONAL_TEST IF (NEW_CUBE'FIRST /= THREE_DIMENSIONAL'FIRST) OR (NEW_CUBE'FIRST (1) /= THREE_DIMENSIONAL'FIRST) OR (NEW_CUBE'FIRST (2) /= THREE_DIMENSIONAL'FIRST (2)) OR (NEW_CUBE'FIRST (3) /= THREE_DIMENSIONAL'FIRST (3)) THEN REPORT.FAILED ("PROBLEMS WITH 'FIRST FOR MULTI-" & "DIMENSIONAL ARRAYS.") ; END IF ; IF (NEW_CUBE'LAST /= THREE_DIMENSIONAL'LAST) OR (NEW_CUBE'LAST (1) /= THREE_DIMENSIONAL'LAST) OR (NEW_CUBE'LAST (2) /= THREE_DIMENSIONAL'LAST (2)) OR (NEW_CUBE'LAST (3) /= THREE_DIMENSIONAL'LAST (3)) THEN REPORT.FAILED ("PROBLEMS WITH 'LAST FOR MULTI-" & "DIMENSIONAL ARRAYS.") ; END IF ; IF (-5 NOT IN NEW_CUBE'RANGE) OR (-3 NOT IN NEW_CUBE'RANGE (1)) OR (FEB NOT IN NEW_CUBE'RANGE (2)) OR ('C' NOT IN NEW_CUBE'RANGE (3)) THEN REPORT.FAILED ("PROBLEMS WITH 'RANGE FOR MULTI-" & "DIMENSIONAL ARRAYS.") ; END IF ; IF (NEW_CUBE'LENGTH /= THREE_DIMENSIONAL'LENGTH) OR (NEW_CUBE'LENGTH (1) /= THREE_DIMENSIONAL'LENGTH) OR (NEW_CUBE'LENGTH (2) /= THREE_DIMENSIONAL'LENGTH (2)) OR (NEW_CUBE'LENGTH (3) /= THREE_DIMENSIONAL'LENGTH (3)) THEN REPORT.FAILED ("PROBLEMS WITH 'LENGTH FOR MULTI-" & "DIMENSIONAL ARRAYS.") ; END IF ; NEW_CUBE_OBJECT := (NEW_CUBE'RANGE => (NEW_CUBE'RANGE (2) => (NEW_CUBE'RANGE (3) => FIRST_DATE))) ; IF FIRST_DATE /= NEW_CUBE_OBJECT (-3, MAR, 'D') THEN REPORT.FAILED ("ASSIGNMENT FOR MULTI-DIMENSIONAL " & "ARRAYS FAILED.") ; END IF ; IF NEW_CUBE'(NEW_CUBE'RANGE => (NEW_CUBE'RANGE (2) => (NEW_CUBE'RANGE (3) => WALL_DATE))) NOT IN NEW_CUBE THEN REPORT.FAILED ("QUALIFIED EXPRESSION FOR MULTI-" & "DIMENSIONAL ARRAYS FAILED.") ; END IF ; SECOND_TD_ARRAY := (NEW_CUBE'RANGE => (NEW_CUBE'RANGE (2) => (NEW_CUBE'RANGE (3) => FIRST_DATE))) ; IF NEW_CUBE (SECOND_TD_ARRAY) /= NEW_CUBE_OBJECT THEN REPORT.FAILED ("EXPLICIT CONVERSION FOR MULTI-" & "DIMENSIONAL ARRAYS FAILED.") ; END IF ; IF SECOND_TD_ARRAY (-2, FEB, 'B') /= NEW_CUBE_OBJECT (-2, FEB, 'B') THEN REPORT.FAILED ("INDEXING FOR MULTI-" & "DIMENSIONAL ARRAYS FAILED.") ; END IF ; IF NOT (TD.TEST_3D_ARRAY IN THREE_DIMENSIONAL) THEN REPORT.FAILED ("FORMAL MULTI-DIMENSIONAL ARRAY " & "DOES NOT DENOTE ACTUAL.") ; END IF ; END THREE_DIMENSIONAL_TEST ; REPORT.RESULT ; END CC3224A ;
-- C34005A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT THE REQUIRED PREDEFINED OPERATIONS ARE DECLARED -- (IMPLICITLY) FOR DERIVED ONE-DIMENSIONAL ARRAY TYPES -- WHOSE COMPONENT TYPE IS A NON-LIMITED, NON-DISCRETE TYPE. -- HISTORY: -- JRK 9/10/86 CREATED ORIGINAL TEST. -- PWN 01/31/95 REMOVED INCONSISTENCIES WITH ADA 9X. WITH SYSTEM; USE SYSTEM; WITH REPORT; USE REPORT; PROCEDURE C34005A IS SUBTYPE COMPONENT IS FLOAT; PACKAGE PKG IS FIRST : CONSTANT := 0; LAST : CONSTANT := 100; SUBTYPE INDEX IS INTEGER RANGE FIRST .. LAST; TYPE PARENT IS ARRAY (INDEX RANGE <>) OF COMPONENT; FUNCTION CREATE ( F, L : INDEX; C : COMPONENT; DUMMY : PARENT -- TO RESOLVE OVERLOADING. ) RETURN PARENT; END PKG; USE PKG; TYPE T IS NEW PARENT (IDENT_INT (5) .. IDENT_INT (7)); TYPE ARRT IS ARRAY (INTEGER RANGE <>) OF COMPONENT; SUBTYPE ARR IS ARRT (2 .. 4); X : T := (OTHERS => 2.0); W : PARENT (5 .. 7) := (OTHERS => 2.0); C : COMPONENT := 1.0; B : BOOLEAN := FALSE; U : ARR := (OTHERS => C); N : CONSTANT := 1; PROCEDURE A (X : ADDRESS) IS BEGIN B := IDENT_BOOL (TRUE); END A; FUNCTION V RETURN T IS BEGIN RETURN (OTHERS => C); END V; PACKAGE BODY PKG IS FUNCTION CREATE ( F, L : INDEX; C : COMPONENT; DUMMY : PARENT ) RETURN PARENT IS A : PARENT (F .. L); B : COMPONENT := C; BEGIN FOR I IN F .. L LOOP A (I) := B; B := B + 1.0; END LOOP; RETURN A; END CREATE; END PKG; FUNCTION IDENT (X : T) RETURN T IS BEGIN IF EQUAL (X'LENGTH, X'LENGTH) THEN RETURN X; -- ALWAYS EXECUTED. END IF; RETURN (OTHERS => -1.0); END IDENT; BEGIN TEST ("C34005A", "CHECK THAT THE REQUIRED PREDEFINED OPERATIONS " & "ARE DECLARED (IMPLICITLY) FOR DERIVED " & "ONE-DIMENSIONAL ARRAY TYPES WHOSE COMPONENT " & "TYPE IS A NON-LIMITED, NON-DISCRETE TYPE"); X := IDENT ((1.0, 2.0, 3.0)); IF X /= (1.0, 2.0, 3.0) THEN FAILED ("INCORRECT :="); END IF; IF T'(X) /= (1.0, 2.0, 3.0) THEN FAILED ("INCORRECT QUALIFICATION"); END IF; IF T (X) /= (1.0, 2.0, 3.0) THEN FAILED ("INCORRECT SELF CONVERSION"); END IF; IF EQUAL (3, 3) THEN W := (1.0, 2.0, 3.0); END IF; IF T (W) /= (1.0, 2.0, 3.0) THEN FAILED ("INCORRECT CONVERSION FROM PARENT"); END IF; BEGIN IF PARENT (X) /= (1.0, 2.0, 3.0) OR PARENT (CREATE (2, 3, 4.0, X)) /= (4.0, 5.0) THEN FAILED ("INCORRECT CONVERSION TO PARENT"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 1"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 1"); END; IF EQUAL (3, 3) THEN U := (1.0, 2.0, 3.0); END IF; IF T (U) /= (1.0, 2.0, 3.0) THEN FAILED ("INCORRECT CONVERSION FROM ARRAY"); END IF; BEGIN IF ARR (X) /= (1.0, 2.0, 3.0) OR ARRT (CREATE (1, 2, 3.0, X)) /= (3.0, 4.0) THEN FAILED ("INCORRECT CONVERSION TO ARRAY"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 2"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 2"); END; IF IDENT ((1.0, 2.0, 3.0)) /= (1.0, 2.0, 3.0) OR X = (1.0, 2.0) THEN FAILED ("INCORRECT AGGREGATE"); END IF; BEGIN IF X (IDENT_INT (5)) /= 1.0 OR CREATE (2, 3, 4.0, X) (3) /= 5.0 THEN FAILED ("INCORRECT INDEX (VALUE)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 3"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 3"); END; X (IDENT_INT (7)) := 4.0; IF X /= (1.0, 2.0, 4.0) THEN FAILED ("INCORRECT INDEX (ASSIGNMENT)"); END IF; BEGIN X := IDENT ((1.0, 2.0, 3.0)); IF X (IDENT_INT (6) .. IDENT_INT (7)) /= (2.0, 3.0) OR CREATE (1, 4, 4.0, X) (1 .. 3) /= (4.0, 5.0, 6.0) THEN FAILED ("INCORRECT SLICE (VALUE)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 4"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 4"); END; X (IDENT_INT (5) .. IDENT_INT (6)) := (4.0, 5.0); IF X /= (4.0, 5.0, 3.0) THEN FAILED ("INCORRECT SLICE (ASSIGNMENT)"); END IF; X := IDENT ((1.0, 2.0, 3.0)); IF X = IDENT ((1.0, 2.0, 4.0)) OR X = (1.0, 2.0) THEN FAILED ("INCORRECT ="); END IF; IF X /= IDENT ((1.0, 2.0, 3.0)) OR NOT (X /= (2.0, 3.0)) THEN FAILED ("INCORRECT /="); END IF; IF NOT (X IN T) OR (1.0, 2.0) IN T THEN FAILED ("INCORRECT ""IN"""); END IF; IF X NOT IN T OR NOT ((1.0, 2.0) NOT IN T) THEN FAILED ("INCORRECT ""NOT IN"""); END IF; BEGIN IF X & (4.0, 5.0, 6.0) /= (1.0, 2.0, 3.0, 4.0, 5.0, 6.0) OR CREATE (2, 3, 2.0, X) & (4.0, 5.0) /= (2.0, 3.0, 4.0, 5.0) THEN FAILED ("INCORRECT & (ARRAY, ARRAY)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 5"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 5"); END; BEGIN IF X & 4.0 /= (1.0, 2.0, 3.0, 4.0) OR CREATE (2, 3, 2.0, X) & 4.0 /= (2.0, 3.0, 4.0) THEN FAILED ("INCORRECT & (ARRAY, COMPONENT)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 6"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 6"); END; BEGIN IF 4.0 & X /= (4.0, 1.0, 2.0, 3.0) OR 2.0 & CREATE (2, 3, 3.0, X) /= (2.0, 3.0, 4.0) THEN FAILED ("INCORRECT & (COMPONENT, ARRAY)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 7"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 7"); END; IF EQUAL (3, 3) THEN C := 2.0; END IF; BEGIN IF C & 3.0 /= CREATE (2, 3, 2.0, X) THEN FAILED ("INCORRECT & (COMPONENT, COMPONENT)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("CALL TO CREATE RAISED CONSTRAINT_ERROR - 8"); WHEN OTHERS => FAILED ("CALL TO CREATE RAISED EXCEPTION - 8"); END; B := FALSE; A (X'ADDRESS); IF NOT B THEN FAILED ("INCORRECT 'ADDRESS"); END IF; IF T'FIRST /= 5 THEN FAILED ("INCORRECT TYPE'FIRST"); END IF; IF X'FIRST /= 5 THEN FAILED ("INCORRECT OBJECT'FIRST"); END IF; IF V'FIRST /= 5 THEN FAILED ("INCORRECT VALUE'FIRST"); END IF; IF T'FIRST (N) /= 5 THEN FAILED ("INCORRECT TYPE'FIRST (N)"); END IF; IF X'FIRST (N) /= 5 THEN FAILED ("INCORRECT OBJECT'FIRST (N)"); END IF; IF V'FIRST (N) /= 5 THEN FAILED ("INCORRECT VALUE'FIRST (N)"); END IF; IF T'LAST /= 7 THEN FAILED ("INCORRECT TYPE'LAST"); END IF; IF X'LAST /= 7 THEN FAILED ("INCORRECT OBJECT'LAST"); END IF; IF V'LAST /= 7 THEN FAILED ("INCORRECT VALUE'LAST"); END IF; IF T'LAST (N) /= 7 THEN FAILED ("INCORRECT TYPE'LAST (N)"); END IF; IF X'LAST (N) /= 7 THEN FAILED ("INCORRECT OBJECT'LAST (N)"); END IF; IF V'LAST (N) /= 7 THEN FAILED ("INCORRECT VALUE'LAST (N)"); END IF; IF T'LENGTH /= 3 THEN FAILED ("INCORRECT TYPE'LENGTH"); END IF; IF X'LENGTH /= 3 THEN FAILED ("INCORRECT OBJECT'LENGTH"); END IF; IF V'LENGTH /= 3 THEN FAILED ("INCORRECT VALUE'LENGTH"); END IF; IF T'LENGTH (N) /= 3 THEN FAILED ("INCORRECT TYPE'LENGTH (N)"); END IF; IF X'LENGTH (N) /= 3 THEN FAILED ("INCORRECT OBJECT'LENGTH (N)"); END IF; IF V'LENGTH (N) /= 3 THEN FAILED ("INCORRECT VALUE'LENGTH (N)"); END IF; DECLARE Y : PARENT (T'RANGE); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT TYPE'RANGE"); END IF; END; DECLARE Y : PARENT (X'RANGE); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT OBJECT'RANGE"); END IF; END; DECLARE Y : PARENT (V'RANGE); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT VALUE'RANGE"); END IF; END; DECLARE Y : PARENT (T'RANGE (N)); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT TYPE'RANGE (N)"); END IF; END; DECLARE Y : PARENT (X'RANGE (N)); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT OBJECT'RANGE (N)"); END IF; END; DECLARE Y : PARENT (V'RANGE (N)); BEGIN IF Y'FIRST /= 5 OR Y'LAST /= 7 THEN FAILED ("INCORRECT VALUE'RANGE (N)"); END IF; END; IF T'SIZE < T'LENGTH * COMPONENT'SIZE THEN FAILED ("INCORRECT TYPE'SIZE"); END IF; IF X'SIZE < X'LENGTH * COMPONENT'SIZE THEN FAILED ("INCORRECT OBJECT'SIZE"); END IF; RESULT; END C34005A;
<?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>MixColumns</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>state</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>state</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>16</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>56</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_2"> <Value> <Obj> <type>0</type> <id>2</id> <name>_ln317</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>317</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>64</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.39</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_3"> <Value> <Obj> <type>0</type> <id>4</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>66</item> <item>67</item> <item>68</item> <item>69</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>5</id> <name>icmp_ln317</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>317</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>70</item> <item>72</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.98</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>7</id> <name>i</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>317</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>73</item> <item>75</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.45</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>8</id> <name>_ln317</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>317</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>76</item> <item>77</item> <item>78</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>11</id> <name>tmp</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>318</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>80</item> <item>81</item> <item>83</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>12</id> <name>zext_ln318</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>318</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>84</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="_9"> <Value> <Obj> <type>0</type> <id>13</id> <name>state_addr</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>318</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>85</item> <item>87</item> <item>88</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="_10"> <Value> <Obj> <type>0</type> <id>14</id> <name>or_ln319</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>89</item> <item>91</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>15</id> <name>tmp_6</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>93</item> <item>95</item> <item>96</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>16</id> <name>state_addr_12</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>97</item> <item>98</item> <item>99</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>17</id> <name>or_ln319_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>100</item> <item>102</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_7</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>103</item> <item>104</item> <item>105</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>19</id> <name>state_addr_13</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>106</item> <item>107</item> <item>108</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>20</id> <name>or_ln319_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>109</item> <item>111</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_8</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>114</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>22</id> <name>state_addr_14</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>115</item> <item>116</item> <item>117</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="_19"> <Value> <Obj> <type>0</type> <id>23</id> <name>t</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>318</second> </item> </second> </item> </inlineStackInfo> <originalName>t</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>118</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>24</id> <name>state_load</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>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>1.76</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>25</id> <name>state_load_11</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>120</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name>state_load_12</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>121</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>27</id> <name>Tm</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName>Tm</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>122</item> <item>123</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.79</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>28</id> <name>xor_ln319_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</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>124</item> <item>125</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.79</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>29</id> <name>Tmp</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName>Tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>126</item> <item>127</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.79</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>30</id> <name>shl_ln311</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>321</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>128</item> <item>130</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>321</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>132</item> <item>133</item> <item>135</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>27</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>32</id> <name>select_ln311</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>321</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>136</item> <item>138</item> <item>140</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>28</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>33</id> <name>xor_ln322</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>322</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>322</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>141</item> <item>142</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>29</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>34</id> <name>xor_ln322_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>322</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>322</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>143</item> <item>144</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>30</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>35</id> <name>xor_ln322_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>322</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>322</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>145</item> <item>146</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>31</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>36</id> <name>state_addr_write_ln322</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>322</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>322</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>147</item> <item>148</item> <item>219</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>37</id> <name>Tm_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>323</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>323</second> </item> </second> </item> </inlineStackInfo> <originalName>Tm</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>149</item> <item>150</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.79</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>38</id> <name>shl_ln311_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>324</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>151</item> <item>152</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>324</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>153</item> <item>154</item> <item>155</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>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>40</id> <name>select_ln311_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>324</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</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>36</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>41</id> <name>xor_ln325</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>325</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>325</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>159</item> <item>160</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>37</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>42</id> <name>xor_ln325_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>325</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>325</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>161</item> <item>162</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>38</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>43</id> <name>xor_ln325_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>325</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>325</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>163</item> <item>164</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.97</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>44</id> <name>state_addr_12_write_ln325</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>325</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>325</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>165</item> <item>166</item> <item>218</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>45</id> <name>Tm_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>326</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>326</second> </item> </second> </item> </inlineStackInfo> <originalName>Tm</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>167</item> <item>168</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.79</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>46</id> <name>shl_ln311_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>327</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>169</item> <item>170</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>327</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>171</item> <item>172</item> <item>173</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>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>48</id> <name>select_ln311_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>327</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>176</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>44</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>49</id> <name>xor_ln328</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>328</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>328</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>177</item> <item>178</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>45</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>50</id> <name>xor_ln328_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>328</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>328</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>179</item> <item>180</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>46</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>51</id> <name>xor_ln328_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>328</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>328</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>181</item> <item>182</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>47</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>52</id> <name>state_addr_13_write_ln328</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>328</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>328</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>183</item> <item>184</item> <item>217</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>53</id> <name>Tm_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName>Tm</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>185</item> <item>186</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.79</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>54</id> <name>shl_ln311_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>330</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>187</item> <item>188</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_4</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>330</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</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>189</item> <item>190</item> <item>191</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>50</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>56</id> <name>select_ln311_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>xtime</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>330</second> </item> <item> <first> <first>c_src/aes.c</first> <second>xtime</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>192</item> <item>193</item> <item>194</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>51</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>57</id> <name>xor_ln331_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>331</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>331</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>195</item> <item>196</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>52</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>58</id> <name>xor_ln331</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>331</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>331</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>197</item> <item>198</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>53</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>59</id> <name>state_addr_14_write_ln331</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>331</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>331</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>199</item> <item>200</item> <item>216</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>60</id> <name>_ln317</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>317</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>201</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>62</id> <name>_ln333</name> <fileName>c_src/aes.c</fileName> <fileDirectory>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</fileDirectory> <lineNumber>333</lineNumber> <contextFuncName>MixColumns</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>MixColumns</second> </first> <second>333</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>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_58"> <Value> <Obj> <type>2</type> <id>65</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="_59"> <Value> <Obj> <type>2</type> <id>71</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>74</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>82</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_63"> <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>5</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_64"> <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>59</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>110</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>129</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_68"> <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>7</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>137</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>27</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>139</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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="_71"> <Obj> <type>3</type> <id>3</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>2</item> </node_objs> </item> <item class_id_reference="18" object_id="_72"> <Obj> <type>3</type> <id>9</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>7</item> <item>8</item> </node_objs> </item> <item class_id_reference="18" object_id="_73"> <Obj> <type>3</type> <id>61</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>50</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> </node_objs> </item> <item class_id_reference="18" object_id="_74"> <Obj> <type>3</type> <id>63</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>62</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>122</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_75"> <id>64</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>2</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>66</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>4</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>67</id> <edge_type>2</edge_type> <source_obj>3</source_obj> <sink_obj>4</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>68</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>4</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>69</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>4</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>70</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>72</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>73</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>75</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>76</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>77</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>78</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>81</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>83</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>84</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>85</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>88</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>89</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>91</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>96</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="_97"> <id>97</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>98</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>99</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="_100"> <id>100</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>104</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>105</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="_104"> <id>106</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>107</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>108</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="_107"> <id>109</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>111</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>113</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>114</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="_111"> <id>115</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>116</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>117</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="_114"> <id>118</id> <edge_type>1</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="_115"> <id>119</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>120</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>121</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>122</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>123</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>124</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>125</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="_122"> <id>126</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>127</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="_124"> <id>128</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>130</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>133</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>136</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>138</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>140</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>141</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>142</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>143</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>144</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>145</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>146</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="_137"> <id>147</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>148</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>149</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>150</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>151</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>152</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>154</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="_144"> <id>155</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>156</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="_146"> <id>157</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>158</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>159</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>160</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="_150"> <id>161</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>162</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>163</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="_153"> <id>164</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>165</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="_155"> <id>166</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>167</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>168</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>169</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="_159"> <id>170</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>172</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>173</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>174</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="_163"> <id>175</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>176</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>177</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>178</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="_167"> <id>179</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>180</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>181</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="_170"> <id>182</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>183</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="_172"> <id>184</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>185</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>186</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>187</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="_176"> <id>188</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>190</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>191</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>192</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="_180"> <id>193</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>194</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>195</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>196</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>197</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="_185"> <id>198</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="_186"> <id>199</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="_187"> <id>200</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>201</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>212</id> <edge_type>2</edge_type> <source_obj>3</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>213</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>214</id> <edge_type>2</edge_type> <source_obj>9</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>215</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>9</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>216</id> <edge_type>4</edge_type> <source_obj>26</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>217</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>218</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>219</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_197"> <mId>1</mId> <mTag>MixColumns</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>17</mMinLatency> <mMaxLatency>17</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_198"> <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>3</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="_199"> <mId>3</mId> <mTag>MixColumns_label0</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>9</item> <item>61</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_200"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>63</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>56</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>2</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>4</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>3</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>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>3</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</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>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>62</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>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>3</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>63</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with GNAT.IO; use GNAT.IO; with GNAT.Serial_Communications; use GNAT.Serial_Communications; -- with Ada.Strings.Fixed; use Ada.Strings.Fixed; -- with Ada.Strings; use Ada.Strings; -- with HK_Data; use HK_Data; with Ada.Exceptions; use Ada.Exceptions; with Ada.IO_Exceptions; package body TTC is COM : aliased Serial_Port; USB : constant Port_Name := "/dev/ttyUSB0"; ------------- -- Receive -- ------------- procedure Receive (Data : out Sensor_Reading) is -- Data : String := Sensor_Reading'Input (COM'Access); begin Data := Sensor_Reading'Input (COM'Access); -- Move (Data'Img, Message, Drop => Right); end Receive; ------------- -- Next_TM -- ------------- function Next_TM return TM_Message is begin return TM_Message'Input (COM'Access); exception when E: Ada.IO_Exceptions.End_Error => return TM_Message'(Kind => Basic, Timestamp => 0, Data => (Value => 0, Timestamp => 0)); -- Put_Line ("Rx error " & Exception_Message (E)); when E : others => return TM_Message'(Kind => Basic, Timestamp => 0, Data => (Value => 1, Timestamp => 0)); -- Put_Line (Exception_Message (E)); end Next_TM; -- Initialization begin COM.Open (USB); COM.Set (Rate => B115200, Block => True); end TTC;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Status -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998,2003 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: Laurent Pautet <pautet@gnat.com> -- Modified by: Juergen Pfeifer, 1997 -- Version Control -- $Revision: 1.8 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- This package has been contributed by Laurent Pautet <pautet@gnat.com> -- -- -- package body Status is protected body Process is procedure Stop is begin Done := True; end Stop; function Continue return Boolean is begin return not Done; end Continue; end Process; end Status;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>axis2xfMat_24_9_2160_3840_1_s</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>imgInput_499</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO_SRL</coreName> <coreId>4294967294</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>AXI_video_strm_V_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>AXI_video_strm_V_keep_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1769566319</coreId> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>AXI_video_strm_V_strb_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>49</coreId> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>AXI_video_strm_V_user_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1735289188</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>AXI_video_strm_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>433</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>AXI_video_strm_V_id_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1702127986</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>AXI_video_strm_V_dest_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>49</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>img_rows</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO_SRL</coreName> <coreId>132</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="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>img_cols</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO_SRL</coreName> <coreId>4227858560</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="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>img_rows_out</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO_SRL</coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>img_cols_out</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO_SRL</coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>rows</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>rows</originalName> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>62</item> <item>63</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>cols</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>cols</originalName> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>64</item> <item>65</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="_15"> <Value> <Obj> <type>0</type> <id>26</id> <name>img_rows_out_write_ln73</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</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>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>28</id> <name>img_cols_out_write_ln74</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>72</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>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>31</id> <name>br_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>73</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>33</id> <name>i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>74</item> <item>75</item> <item>77</item> <item>78</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>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>34</id> <name>i_2</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_2_fu_151_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <coreId>1</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>79</item> <item>81</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>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name>zext_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln80_fu_157_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>82</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name>icmp_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln80_fu_161_p2</rtlName> <control/> <opType>icmp</opType> <implIndex/> <coreName/> <coreId>3578049392</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>83</item> <item>84</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.96</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>38</id> <name>br_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>85</item> <item>86</item> <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>0.00</m_delay> <m_topoIndex>10</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>br_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>43</id> <name>j</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1825</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>89</item> <item>90</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>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>44</id> <name>j_2</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_2_fu_166_p2</rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <coreId>1</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>93</item> <item>94</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.54</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>45</id> <name>zext_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln82_fu_172_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <coreId>3576988648</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>46</id> <name>icmp_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln82_fu_176_p2</rtlName> <control/> <opType>icmp</opType> <implIndex/> <coreName/> <coreId>1825</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>96</item> <item>97</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.96</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>48</id> <name>br_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_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>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>4227858560</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <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="_29"> <Value> <Obj> <type>0</type> <id>52</id> <name>empty</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</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/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <coreId>115</coreId> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>53</id> <name>axi_data_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</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/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>axi.data.V</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>110</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>54</id> <name>imgInput_499_write_ln174</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</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/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>114</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>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>55</id> <name>br_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>57</id> <name>br_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1825</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>59</id> <name>_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>3576286872</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_35"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>49</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>80</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>49</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_37"> <Obj> <type>3</type> <id>32</id> <name>entry</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1768189039</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>26</item> <item>28</item> <item>31</item> </node_objs> </item> <item class_id_reference="18" object_id="_38"> <Obj> <type>3</type> <id>39</id> <name>.lr.ph6.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1768189039</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_39"> <Obj> <type>3</type> <id>42</id> <name>.split2.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1768189039</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_40"> <Obj> <type>3</type> <id>49</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_41"> <Obj> <type>3</type> <id>56</id> <name>.split.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1825</coreId> </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="_42"> <Obj> <type>3</type> <id>58</id> <name>._crit_edge.loopexit.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>0</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_43"> <Obj> <type>3</type> <id>60</id> <name>.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <coreId>1869898593</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>59</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>52</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_44"> <id>63</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>65</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>68</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_47"> <id>69</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>71</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_49"> <id>72</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_50"> <id>73</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_51"> <id>74</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_52"> <id>75</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_53"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_54"> <id>78</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="_55"> <id>79</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="_56"> <id>81</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_57"> <id>82</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="_58"> <id>83</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_59"> <id>84</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_60"> <id>85</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_61"> <id>86</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_62"> <id>87</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_63"> <id>88</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_64"> <id>89</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_65"> <id>90</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_66"> <id>91</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_67"> <id>92</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_68"> <id>93</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="_69"> <id>94</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>95</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="_71"> <id>96</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="_72"> <id>97</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>98</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="_74"> <id>99</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>100</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>103</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>104</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>105</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>106</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>107</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>108</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>109</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>110</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="_84"> <id>113</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>114</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="_86"> <id>115</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>116</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>448</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>449</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>450</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>451</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>452</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>453</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>454</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>49</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>455</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>39</sink_obj> <is_back_edge>1</is_back_edge> </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="_96"> <mId>1</mId> <mTag>axis2xfMat&lt;24, 9, 2160, 3840, 1&gt;</mTag> <mNormTag>axis2xfMat_24_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>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>1</mMinLatency> <mMaxLatency>8300881</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_97"> <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>32</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_98"> <mId>3</mId> <mTag>loop_row_axi2mat</mTag> <mNormTag>loop_row_axi2mat</mNormTag> <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>0</mMinTripCount> <mMaxTripCount>2160</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>8300880</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_99"> <mId>4</mId> <mTag>Region 1</mTag> <mNormTag>Region 1</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>42</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_100"> <mId>5</mId> <mTag>loop_col_zxi2mat</mTag> <mNormTag>loop_col_zxi2mat</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>49</item> <item>56</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>3840</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>3840</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_101"> <mId>6</mId> <mTag>Region 2</mTag> <mNormTag>Region 2</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>58</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_102"> <mId>7</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>60</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_103"> <states class_id="25" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_104"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_105"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_106"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_107"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_108"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_109"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_110"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_111"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_112"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_113"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_114"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_115"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_118"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_119"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_124"> <id>2</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_125"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_126"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_127"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_129"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_130"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_131"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_133"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_134"> <id>3</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_135"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_136"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_138"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_139"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_140"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_141"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_142"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_143"> <id>4</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_144"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_145"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_146"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_147"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_148"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_149"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_150"> <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="_151"> <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>36</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_152"> <inState>5</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_153"> <inState>4</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_154"> <inState>3</inState> <outState>5</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>46</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_155"> <inState>3</inState> <outState>4</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>46</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_156"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>regslice_both_AXI_video_strm_V_data_V_U (colordetect_accel_regslice_both)</first> <second class_id="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_dest_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_id_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_keep_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_last_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_strb_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_user_V_U (colordetect_accel_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_component_resource> <dp_expression_resource> <count>10</count> <item_version>0</item_version> <item> <first>ap_block_pp0_stage0_01001 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter0 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>ap_block_state4_pp0_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>i_2_fu_151_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>12</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>icmp_ln80_fu_161_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>icmp_ln82_fu_176_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>j_2_fu_166_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>12</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> </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>12</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>5</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>i_reg_129</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>12</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>imgInput_499_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>img_cols_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>img_cols_out_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>img_rows_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>img_rows_out_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j_reg_140</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>12</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>real_start</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>src_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>12</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>axi_data_V_reg_213</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>cols_reg_190</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>i_2_reg_195</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>12</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>12</second> </item> </second> </item> <item> <first>i_reg_129</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>12</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>12</second> </item> </second> </item> <item> <first>icmp_ln82_reg_209</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>j_reg_140</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>12</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>12</second> </item> </second> </item> <item> <first>rows_reg_185</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>start_once_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>7</count> <item_version>0</item_version> <item> <first>regslice_both_AXI_video_strm_V_data_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_dest_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_id_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_keep_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_last_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_strb_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_AXI_video_strm_V_user_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>4</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>i_2_fu_151_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>icmp_ln80_fu_161_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>icmp_ln82_fu_176_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>j_2_fu_166_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>23</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>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>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>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>59</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>32</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_157"> <region_name>loop_col_zxi2mat</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>56</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="51" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>161</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>axi_data_V_fu_181</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>i_2_fu_151</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>i_phi_fu_133</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>icmp_ln80_fu_161</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>icmp_ln82_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>j_2_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>j_phi_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>zext_ln80_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>zext_ln82_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>6</count> <item_version>0</item_version> <item> <first>cols_read_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>empty_read_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>rows_read_fu_76</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>write_ln174_write_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>write_ln73_write_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>write_ln74_write_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>9</count> <item_version>0</item_version> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>209</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>9</count> <item_version>0</item_version> <item> <first>axi_data_V_reg_213</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>cols_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>i_2_reg_195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>icmp_ln80_reg_200</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>icmp_ln82_reg_209</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>j_2_reg_204</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>j_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>rows_reg_185</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>j_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>AXI_video_strm_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_dest_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_id_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>imgInput_499</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> </second> </item> <item> <first>img_cols</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> </second> </item> <item> <first>img_cols_out</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> </second> </item> <item> <first>img_rows</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </second> </item> <item> <first>img_rows_out</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core> <count>5</count> <item_version>0</item_version> <item> <first>1</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>9</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>10</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>11</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>12</first> <second> <first>1151</first> <second>10</second> </second> </item> </port2core> <node2core> <count>10</count> <item_version>0</item_version> <item> <first>23</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>24</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>26</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>28</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>34</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>36</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>46</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>54</first> <second> <first>1151</first> <second>10</second> </second> </item> </node2core> </syndb> </boost_serialization>
----------------------------------------------------------------------- -- asf-applications-tests - ASF Application tests using ASFUnit -- Copyright (C) 2011, 2015 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; with Util.Beans.Basic; with Util.Beans.Objects; with Util.Beans.Methods; with Util.Beans.Basic.Lists; with Ada.Strings.Unbounded; package ASF.Applications.Tests is use Ada.Strings.Unbounded; Test_Exception : exception; procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; -- Initialize the test application overriding procedure Set_Up (T : in out Test); -- Test a GET request on a static file served by the File_Servlet. procedure Test_Get_File (T : in out Test); -- Test a GET 404 error on missing static file served by the File_Servlet. procedure Test_Get_404 (T : in out Test); -- Test a GET request on the measure servlet procedure Test_Get_Measures (T : in out Test); -- Test an invalid HTTP request. procedure Test_Invalid_Request (T : in out Test); -- Test a GET+POST request with submitted values and an action method called on the bean. procedure Test_Form_Post (T : in out Test); -- Test a POST request with an invalid submitted value procedure Test_Form_Post_Validation_Error (T : in out Test); -- Test a GET+POST request with form having <h:selectOneMenu> element. procedure Test_Form_Post_Select (T : in out Test); -- Test a POST request to invoke a bean method. procedure Test_Ajax_Action (T : in out Test); -- Test a POST request to invoke a bean method. -- Verify that invalid requests raise an error. procedure Test_Ajax_Action_Error (T : in out Test); -- Test a POST/REDIRECT/GET request with a flash information passed in between. procedure Test_Flash_Object (T : in out Test); -- Test a GET+POST request with the default navigation rule based on the outcome. procedure Test_Default_Navigation_Rule (T : in out Test); -- Test a GET request with meta data and view parameters. procedure Test_View_Params (T : in out Test); -- Test a GET request with meta data and view action. procedure Test_View_Action (T : in out Test); -- Test a GET request with pretty URL and request parameter injection. procedure Test_View_Inject_Parameter (T : in out Test); type Form_Bean is new Util.Beans.Basic.Bean and Util.Beans.Methods.Method_Bean with record Name : Unbounded_String; Password : Unbounded_String; Email : Unbounded_String; Called : Natural := 0; Gender : Unbounded_String; Use_Flash : Boolean := False; Def_Nav : Boolean := False; Perm_Error : Boolean := False; end record; type Form_Bean_Access is access all Form_Bean'Class; -- Get the value identified by the name. overriding function Get_Value (From : in Form_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Form_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- This bean provides some methods that can be used in a Method_Expression overriding function Get_Method_Bindings (From : in Form_Bean) return Util.Beans.Methods.Method_Binding_Array_Access; -- Action to save the form procedure Save (Data : in out Form_Bean; Outcome : in out Unbounded_String); -- Create a form bean. function Create_Form_Bean return Util.Beans.Basic.Readonly_Bean_Access; -- Create a list of forms. package Form_Lists is new Util.Beans.Basic.Lists (Form_Bean); -- Create a list of forms. function Create_Form_List return Util.Beans.Basic.Readonly_Bean_Access; -- Initialize the ASF application for the unit test. procedure Initialize_Test_Application; end ASF.Applications.Tests;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . S T R I N G _ O P S _ C O N C A T _ 4 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- NOTE: This package is obsolescent. It is no longer used by the compiler -- which now generates concatenation inline. It is retained only because -- it may be used during bootstrapping using old versions of the compiler. pragma Compiler_Unit_Warning; package body System.String_Ops_Concat_4 is ------------------ -- Str_Concat_4 -- ------------------ function Str_Concat_4 (S1, S2, S3, S4 : String) return String is begin if S1'Length = 0 then return S2 & S3 & S4; else declare L12 : constant Natural := S1'Length + S2'Length; L13 : constant Natural := L12 + S3'Length; L14 : constant Natural := L13 + S4'Length; R : String (S1'First .. S1'First + L14 - 1); begin R (S1'First .. S1'Last) := S1; R (S1'Last + 1 .. S1'First + L12 - 1) := S2; R (S1'First + L12 .. S1'First + L13 - 1) := S3; R (S1'First + L13 .. R'Last) := S4; return R; end; end if; end Str_Concat_4; end System.String_Ops_Concat_4;
-- Copyright 2010-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 Pack; use Pack; procedure P is begin Print (4, 5); end P;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 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 protected interrupt handler that knows how to -- handle all the DMA interrupts. It is used by clients to await a specific -- interrupt occurrence. It is a reusable package and PO type. -- For example: -- -- Controller : DMA_Controller renames DMA_2; -- -- Stream : constant DMA_Stream_Selector := Stream_0; -- -- IRQ : constant Ada.Interrupts.Interrupt_ID := DMA2_Stream0_Interrupt; -- -- must match that of the selected controller and stream number! -- -- DMA_IRQ_Handler : DMA_Unit_IRQ_Handler (Controller'Access, Stream, IRQ); with Ada.Interrupts; use Ada.Interrupts; with STM32.DMA; use STM32.DMA; package DMA_Interrupt_Handling is protected type DMA_Unit_IRQ_Handler (Controller : access DMA_Controller; Stream : DMA_Stream_Selector; IRQ : Interrupt_ID) is pragma Interrupt_Priority; entry Await_Event (Occurrence : out DMA_Interrupt); -- Blocks the caller until the next interrupt. Returns that interrupt in -- Occurrence. private Event_Occurred : Boolean := False; Event_Kind : DMA_Interrupt; procedure IRQ_Handler; pragma Attach_Handler (IRQ_Handler, IRQ); -- Handles the interrupts and signals the entry, passing the interrupt -- identifier via Event_Kind. end DMA_Unit_IRQ_Handler; end DMA_Interrupt_Handling;
with Configuration; with Ada.Real_Time; private with Unicode_Strings; private with Qweyboard.Languages; private with Logging; private with Output_Backend; package Qweyboard.Emulation is package RT renames Ada.Real_Time; use type RT.Time, RT.Time_Span; task type Timer_Task; protected Softboard is procedure Configure (Settings : Configuration.Settings); procedure Handle (Event : Key_Event); entry Get_Deadline (Time : out RT.Time); procedure Timeout; private Deadline : RT.Time := RT.Time_First; Current_Timeout : RT.Time_Span; Timer : Timer_Task; Pressed : Key_Sets.Set; Released : Key_Sets.Set; Last_Output : Output; procedure Commit; procedure Erase; end Softboard; private use Unbounded; use Logging; procedure Log_Board (Pressed : Key_Sets.Set; Released : Key_Sets.Set); end Qweyboard.Emulation;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- -- * Neither the name of the 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 LSC.Internal.Ops64; with LSC.Internal.Debug; pragma Unreferenced (LSC.Internal.Debug); package body LSC.Internal.HMAC_SHA384 is IPad : constant SHA512.Block_Type := SHA512.Block_Type'(SHA512.Block_Index => 16#36363636_36363636#); OPad : constant SHA512.Block_Type := SHA512.Block_Type'(SHA512.Block_Index => 16#5C5C5C5C_5C5C5C5C#); ---------------------------------------------------------------------------- function Context_Init (Key : SHA512.Block_Type) return Context_Type is Result : Context_Type; Temp : SHA512.Block_Type; begin pragma Debug (Debug.Put_Line ("HMAC.SHA384.Context_Init:")); Result.Key := Key; Result.SHA384_Context := SHA512.SHA384_Context_Init; Ops64.Block_XOR (IPad, Result.Key, Temp); SHA512.Context_Update (Result.SHA384_Context, Temp); return Result; end Context_Init; ---------------------------------------------------------------------------- procedure Context_Update (Context : in out Context_Type; Block : in SHA512.Block_Type) is begin pragma Debug (Debug.Put_Line ("HMAC.SHA384.Context_Update:")); SHA512.Context_Update (Context.SHA384_Context, Block); end Context_Update; ---------------------------------------------------------------------------- procedure Context_Finalize_Outer (Context : in out Context_Type) with Depends => (Context => Context); procedure Context_Finalize_Outer (Context : in out Context_Type) is Hash : SHA512.SHA384_Hash_Type; Temp : SHA512.Block_Type; begin Hash := SHA512.SHA384_Get_Hash (Context.SHA384_Context); Context.SHA384_Context := SHA512.SHA384_Context_Init; Ops64.Block_XOR (OPad, Context.Key, Temp); SHA512.Context_Update (Context.SHA384_Context, Temp); Temp := SHA512.Null_Block; Ops64.Block_Copy (Hash, Temp); SHA512.Context_Finalize (Context.SHA384_Context, Temp, 384); end Context_Finalize_Outer; ---------------------------------------------------------------------------- procedure Context_Finalize (Context : in out Context_Type; Block : in SHA512.Block_Type; Length : in SHA512.Block_Length_Type) is begin pragma Debug (Debug.Put_Line ("HMAC.SHA384.Context_Finalize:")); SHA512.Context_Finalize (Context.SHA384_Context, Block, Length); Context_Finalize_Outer (Context); end Context_Finalize; ---------------------------------------------------------------------------- function Get_Prf (Context : in Context_Type) return SHA512.SHA384_Hash_Type is begin return SHA512.SHA384_Get_Hash (Context.SHA384_Context); end Get_Prf; ---------------------------------------------------------------------------- function Get_Auth (Context : in Context_Type) return Auth_Type is Result : Auth_Type; Prf : SHA512.SHA384_Hash_Type; begin Prf := SHA512.SHA384_Get_Hash (Context.SHA384_Context); for Index in Auth_Index loop Result (Index) := Prf (Index); end loop; return Result; end Get_Auth; ---------------------------------------------------------------------------- function Keyed_Hash (Key : SHA512.Block_Type; Message : SHA512.Message_Type; Length : SHA512.Message_Index) return Context_Type with Pre => Message'First <= Message'Last and Length / SHA512.Block_Size + (if Length mod SHA512.Block_Size = 0 then 0 else 1) <= Message'Length; function Keyed_Hash (Key : SHA512.Block_Type; Message : SHA512.Message_Type; Length : SHA512.Message_Index) return Context_Type is HMAC_Ctx : Context_Type; begin HMAC_Ctx := Context_Init (Key); SHA512.Hash_Context (Message, Length, HMAC_Ctx.SHA384_Context); Context_Finalize_Outer (HMAC_Ctx); return HMAC_Ctx; end Keyed_Hash; ---------------------------------------------------------------------------- function Pseudorandom (Key : SHA512.Block_Type; Message : SHA512.Message_Type; Length : SHA512.Message_Index) return SHA512.SHA384_Hash_Type is begin return Get_Prf (Keyed_Hash (Key, Message, Length)); end Pseudorandom; ---------------------------------------------------------------------------- function Authenticate (Key : SHA512.Block_Type; Message : SHA512.Message_Type; Length : SHA512.Message_Index) return Auth_Type is begin return Get_Auth (Keyed_Hash (Key, Message, Length)); end Authenticate; end LSC.Internal.HMAC_SHA384;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . S E Q U E N T I A L _ I O -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994 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 contains the declaration of the control block used for -- Seqential_IO. This must be declared at the outer library level. It also -- contains code that is shared between instances of Sequential_IO. with System.File_Control_Block; with Ada.Streams; package System.Sequential_IO is package FCB renames System.File_Control_Block; type Sequential_AFCB is new FCB.AFCB with null record; -- No additional fields required for Sequential_IO function AFCB_Allocate (Control_Block : Sequential_AFCB) return FCB.AFCB_Ptr; procedure AFCB_Close (File : access Sequential_AFCB); procedure AFCB_Free (File : access Sequential_AFCB); procedure Read (File : in out Sequential_AFCB; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Required overriding of Read, not actually used for Sequential_IO procedure Write (File : in out Sequential_AFCB; Item : in Ada.Streams.Stream_Element_Array); -- Required overriding of Write, not actually used for Sequential_IO type File_Type is access all Sequential_AFCB; -- File_Type in individual instantiations is derived from this type procedure Create (File : in out File_Type; Mode : in FCB.File_Mode := FCB.Out_File; Name : in String := ""; Form : in String := ""); procedure Open (File : in out File_Type; Mode : in FCB.File_Mode; Name : in String; Form : in String := ""); end System.Sequential_IO;
-- AoC 2020, Day 15 with Ada.Text_IO; with Ada.Containers.Indefinite_Hashed_Maps; with Ada.Containers; use Ada.Containers; package body Day is package TIO renames Ada.Text_IO; function natural_hash(n : in Natural) return Hash_Type is begin return Hash_Type(n); end natural_hash; package Natural_Hashed_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => Natural, Element_Type => Natural, Hash => Natural_Hash, Equivalent_Keys => "="); use Natural_Hashed_Maps; last_age : Natural_Hashed_Maps.Map := Empty_Map; previous_age : Natural_Hashed_Maps.Map := Empty_Map; function sequence(s : in Input_Array; step : in Natural) return Natural is index : Natural := 1; last : Natural; prev : Natural; diff : Natural; begin clear(last_age); clear(previous_age); for e of s loop last_age.insert(e, index); last := e; index := index + 1; end loop; loop if not previous_age.contains(last) then diff := 0; else prev := previous_age(last); last := last_age(last); diff := last - prev; end if; if last_age.contains(diff) then previous_age.include(diff, last_age(diff)); end if; last_age.include(diff, index); last := diff; if index = step then return last; end if; if index mod 100_000 = 0 then TIO.put_line(Natural'Image(index)); end if; index := index + 1; end loop; end sequence; end Day;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M -- -- -- -- S p e c -- -- (VxWorks Version PPC) -- -- -- -- Copyright (C) 1992-2005 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package System is pragma Pure; -- Note that we take advantage of the implementation permission to make -- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada -- 2005, this is Pure in any case (AI-362). type Name is (SYSTEM_NAME_GNAT); System_Name : constant Name := SYSTEM_NAME_GNAT; -- System-Dependent Named Numbers Min_Int : constant := Long_Long_Integer'First; Max_Int : constant := Long_Long_Integer'Last; Max_Binary_Modulus : constant := 2 ** Long_Long_Integer'Size; Max_Nonbinary_Modulus : constant := Integer'Last; Max_Base_Digits : constant := Long_Long_Float'Digits; Max_Digits : constant := Long_Long_Float'Digits; Max_Mantissa : constant := 63; Fine_Delta : constant := 2.0 ** (-Max_Mantissa); Tick : constant := 1.0 / 60.0; -- Storage-related Declarations type Address is private; Null_Address : constant Address; Storage_Unit : constant := 8; Word_Size : constant := 32; Memory_Size : constant := 2 ** 32; -- Address comparison function "<" (Left, Right : Address) return Boolean; function "<=" (Left, Right : Address) return Boolean; function ">" (Left, Right : Address) return Boolean; function ">=" (Left, Right : Address) return Boolean; function "=" (Left, Right : Address) return Boolean; pragma Import (Intrinsic, "<"); pragma Import (Intrinsic, "<="); pragma Import (Intrinsic, ">"); pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, "="); -- Other System-Dependent Declarations type Bit_Order is (High_Order_First, Low_Order_First); Default_Bit_Order : constant Bit_Order := High_Order_First; -- Priority-related Declarations (RM D.1) -- 256 is reserved for the VxWorks kernel -- 248 - 255 correspond to hardware interrupt levels 0 .. 7 -- 247 is a catchall default "interrupt" priority for signals, -- allowing higher priority than normal tasks, but lower than -- hardware priority levels. Protected Object ceilings can -- override these values. -- 246 is used by the Interrupt_Manager task Max_Priority : constant Positive := 245; Max_Interrupt_Priority : constant Positive := 255; subtype Any_Priority is Integer range 0 .. 255; subtype Priority is Any_Priority range 0 .. 245; subtype Interrupt_Priority is Any_Priority range 246 .. 255; Default_Priority : constant Priority := 122; private type Address is mod Memory_Size; Null_Address : constant Address := 0; -------------------------------------- -- System Implementation Parameters -- -------------------------------------- -- These parameters provide information about the target that is used -- by the compiler. They are in the private part of System, where they -- can be accessed using the special circuitry in the Targparm unit -- whose source should be consulted for more detailed descriptions -- of the individual switch values. AAMP : constant Boolean := False; Backend_Divide_Checks : constant Boolean := False; Backend_Overflow_Checks : constant Boolean := False; Command_Line_Args : constant Boolean := False; Compiler_System_Version : constant Boolean := False; Configurable_Run_Time : constant Boolean := False; Denorm : constant Boolean := True; Duration_32_Bits : constant Boolean := False; Exit_Status_Supported : constant Boolean := True; Fractional_Fixed_Ops : constant Boolean := False; Frontend_Layout : constant Boolean := False; Functions_Return_By_DSP : constant Boolean := False; Machine_Overflows : constant Boolean := False; Machine_Rounds : constant Boolean := True; OpenVMS : constant Boolean := False; Preallocated_Stacks : constant Boolean := False; Signed_Zeros : constant Boolean := True; Stack_Check_Default : constant Boolean := False; Stack_Check_Probes : constant Boolean := False; Support_64_Bit_Divides : constant Boolean := True; Support_Aggregates : constant Boolean := True; Support_Composite_Assign : constant Boolean := True; Support_Composite_Compare : constant Boolean := True; Support_Long_Shifts : constant Boolean := True; Suppress_Standard_Library : constant Boolean := False; Use_Ada_Main_Program_Name : constant Boolean := True; ZCX_By_Default : constant Boolean := False; GCC_ZCX_Support : constant Boolean := True; Front_End_ZCX_Support : constant Boolean := False; -- Obsolete entries, to be removed eventually (bootstrap issues!) High_Integrity_Mode : constant Boolean := False; Long_Shifts_Inlined : constant Boolean := False; end System;
------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ with Natools.S_Expressions.Caches; with Natools.S_Expressions.Test_Tools; package body Natools.S_Expressions.Interpreter_Tests is function Test_Interpreter return Test_Interpreters.Interpreter; function Invalid_Commands return Caches.Reference; ------------------------ -- Helper Subprograms -- ------------------------ function Invalid_Commands return Caches.Reference is Cache : Caches.Reference; Short : constant Atom := To_Atom ("not-cmd"); Long : constant Atom := To_Atom ("not-a-command"); begin Cache.Append_Atom (Short); Cache.Open_List; Cache.Append_Atom (Short); Cache.Append_Atom (To_Atom ("arg")); Cache.Close_List; Cache.Append_Atom (Long); Cache.Open_List; Cache.Append_Atom (Long); Cache.Open_List; Cache.Close_List; Cache.Close_List; return Cache; end Invalid_Commands; function Test_Interpreter return Test_Interpreters.Interpreter is Template : Recorder; begin return Inter : Test_Interpreters.Interpreter do Inter.Add ("cmd", Template); Inter.Add ("command", Template); end return; end Test_Interpreter; ---------------------- -- Recorder Command -- ---------------------- overriding procedure Execute (Self : in Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom) is pragma Unreferenced (Self); begin if Context then State.Append_Atom (Name); end if; end Execute; overriding procedure Execute (Self : in Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class) is pragma Unreferenced (Self); begin if not Context then return; end if; declare Buffer : aliased Test_Tools.Memory_Stream; Serializer : Printers.Canonical (Buffer'Access); begin Printers.Transfer (Cmd, Serializer); State.Open_List; State.Append_Atom (Buffer.Get_Data); State.Close_List; end; end Execute; -------------------- -- Raiser Command -- -------------------- overriding procedure Execute (Self : in Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom) is pragma Unreferenced (Self, State, Context, Name); begin raise Special_Exception; end Execute; overriding procedure Execute (Self : in Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class) is pragma Unreferenced (Self, State, Context, Cmd); begin raise Special_Exception; end Execute; ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Test_Basic_Usage (Report); Test_Unknown_Commands (Report); Test_Premanent_Fallback (Report); Test_Local_Fallback (Report); Test_Exception_Fallback (Report); Test_Inspection (Report); end All_Tests; ---------------------- -- Individual Tests -- ---------------------- procedure Test_Basic_Usage (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Basic usage"); begin declare Inter : constant Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference; Cursor : Caches.Cursor; begin Input.Append_Atom (To_Atom ("cmd")); Input.Open_List; Input.Append_Atom (To_Atom ("cmd")); Input.Append_Atom (To_Atom ("foo")); Input.Append_Atom (To_Atom ("bar")); Input.Close_List; Input.Append_Atom (To_Atom ("command")); Input.Open_List; Input.Open_List; Input.Append_Atom (To_Atom ("comment")); Input.Close_List; Input.Close_List; Input.Open_List; Input.Append_Atom (To_Atom ("command")); Input.Open_List; Input.Close_List; Input.Close_List; Cursor := Input.First; Buffer.Set_Expected (To_Atom ("3:cmd(15:3:cmd3:foo3:bar)7:command(11:7:command())")); Inter.Execute (Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Basic_Usage; procedure Test_Exception_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Local fallback raising an exception"); begin declare Inter : constant Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference; Cursor : Caches.Cursor; Fallback : Raiser; begin Input.Append_Atom (To_Atom ("cmd")); Input.Open_List; Input.Append_Atom (To_Atom ("unknown")); Input.Append_Atom (To_Atom ("argument")); Input.Close_List; Input.Close_List; Input.Open_List; Input.Append_Atom (To_Atom ("command")); Input.Close_List; Cursor := Input.First; Buffer.Set_Expected (To_Atom ("3:cmd")); begin Inter.Execute (Fallback, Cursor, Printer, True); Test.Fail ("No exception raised"); exception when Special_Exception => null; when Error : others => Test.Fail ("Wrong exception raised:"); Test.Report_Exception (Error, NT.Fail); end; Buffer.Check_Stream (Test); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("argument"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("command"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.End_Of_Input, 0); end; exception when Error : others => Test.Report_Exception (Error); end Test_Exception_Fallback; procedure Test_Inspection (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Inspection"); begin declare Inter : Test_Interpreters.Interpreter; begin if not Inter.Is_Empty then Test.Fail ("Default interpreter is not empty"); end if; if Inter.Has_Command (To_Atom ("cmd")) then Test.Fail ("Default interpreter has command ""cmd"""); end if; Inter := Test_Interpreter; if Inter.Is_Empty then Test.Fail ("Test interpreter is empty"); end if; if not Inter.Has_Command (To_Atom ("cmd")) then Test.Fail ("Test interpreter has not command ""cmd"""); end if; if Inter.Has_Command (To_Atom ("not-a-cmd")) then Test.Fail ("Test interpreter has command ""not-a-cmd"""); end if; end; exception when Error : others => Test.Report_Exception (Error); end Test_Inspection; procedure Test_Local_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Local fallback"); begin declare Inter : constant Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; Fallback : Recorder; begin Input.Append_Atom (To_Atom ("cmd")); Buffer.Set_Expected (To_Atom ("7:not-cmd(14:7:not-cmd3:arg)13:not-a-command" & "(18:13:not-a-command())3:cmd")); Inter.Execute (Fallback, Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Local_Fallback; procedure Test_Premanent_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Permanent fallback"); begin declare Inter : constant Test_Interpreters.Interpreter := Test_Interpreters.Build ((Test_Interpreters.Item ("cmd", Recorder'(null record)), Test_Interpreters.Item ("command", Recorder'(null record))), Fallback => "cmd"); Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : constant Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; begin Buffer.Set_Expected (To_Atom ("7:not-cmd(14:7:not-cmd3:arg)13:not-a-command" & "(18:13:not-a-command())")); Inter.Execute (Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Premanent_Fallback; procedure Test_Unknown_Commands (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Unknown commands"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : constant Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; begin Inter.Set_Fallback (To_Atom ("cmd")); Inter.Reset_Fallback; begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-cmd"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-cmd"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after (not-cmd)"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after (not-cmd)"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("arg"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("not-a-command"), 0); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-a-command"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-a-command"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-a-command"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-a-command"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 2); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.End_Of_Input, 0); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Unknown_Commands; end Natools.S_Expressions.Interpreter_Tests;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package Servlet.HTTP_Upgrade_Handlers is pragma Preelaborate; type HTTP_Upgrade_Handler is limited interface; type HTTP_Upgrade_Handler_Access is access all HTTP_Upgrade_Handler'Class; end Servlet.HTTP_Upgrade_Handlers;
-- 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. package Linted.Audio with Spark_Mode => Off is pragma Elaborate_Body; end Linted.Audio;