CombinedText stringlengths 4 3.42M |
|---|
-- Abstract :
--
-- Procedural packrat parser, supporting only direct left recursion.
--
-- Coding style, algorithm is the same as generated by
-- wisi-generate_packrat, but in procedural form.
--
-- References:
--
-- See parent.
--
-- Copyright (C) 2018 - 2020 Free Software Foundation, Inc.
--
-- This library is free software; you can redistribute it and/or modify it
-- under terms of the GNU General Public License as published by the Free
-- Software Foundation; either version 3, or (at your option) any later
-- version. This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN-
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-- As a special exception under Section 7 of GPL version 3, you are granted
-- additional permissions described in the GCC Runtime Library Exception,
-- version 3.1, as published by the Free Software Foundation.
pragma License (Modified_GPL);
with WisiToken.Productions;
package WisiToken.Parse.Packrat.Procedural is
-- These types duplicate Packrat.Generated. We keep them separate so
-- we can experiment with ways of implementing indirect left
-- recursion.
type Memo_State is (No_Result, Failure, Success);
subtype Result_States is Memo_State range Failure .. Success;
type Memo_Entry (State : Memo_State := No_Result) is record
case State is
when No_Result =>
null;
when Failure =>
null;
when Success =>
Result : WisiToken.Valid_Node_Index;
Last_Pos : Base_Token_Index;
end case;
end record;
package Memos is new SAL.Gen_Unbounded_Definite_Vectors
(Token_Index, Memo_Entry, Default_Element => (others => <>));
type Derivs is array (Token_ID range <>) of Memos.Vector;
type Parser (First_Nonterminal, Last_Nonterminal : Token_ID) is new Packrat.Parser with
record
Grammar : WisiToken.Productions.Prod_Arrays.Vector;
Start_ID : Token_ID;
Direct_Left_Recursive : Token_ID_Set (First_Nonterminal .. Last_Nonterminal);
Derivs : Procedural.Derivs (First_Nonterminal .. Last_Nonterminal);
end record;
function Create
(Grammar : in WisiToken.Productions.Prod_Arrays.Vector;
Direct_Left_Recursive : in Token_ID_Set;
Start_ID : in Token_ID;
Trace : access WisiToken.Trace'Class;
Lexer : WisiToken.Lexer.Handle;
User_Data : WisiToken.Syntax_Trees.User_Data_Access)
return Procedural.Parser;
overriding procedure Parse (Parser : aliased in out Procedural.Parser);
overriding function Tree (Parser : in Procedural.Parser) return Syntax_Trees.Tree;
overriding function Tree_Var_Ref
(Parser : aliased in out Procedural.Parser)
return Syntax_Trees.Tree_Variable_Reference;
overriding function Any_Errors (Parser : in Procedural.Parser) return Boolean
is (False);
-- All errors are reported by Parse raising Syntax_Error.
overriding procedure Put_Errors (Parser : in Procedural.Parser)
is null;
end WisiToken.Parse.Packrat.Procedural;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ C H A R --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Character'Image
package System.Img_Char is
pragma Pure;
procedure Image_Character
(V : Character;
S : in out String;
P : out Natural);
-- Computes Character'Image (V) and stores the result in S (1 .. P)
-- setting the resulting value of P. The caller guarantees that S is
-- long enough to hold the result, and that S'First is 1.
procedure Image_Character_05
(V : Character;
S : in out String;
P : out Natural);
-- Computes Character'Image (V) and stores the result in S (1 .. P)
-- setting the resulting value of P. The caller guarantees that S is
-- long enough to hold the result, and that S'First is 1. This version
-- is for use in Ada 2005 and beyond, where soft hyphen is a non-graphic
-- and results in "SOFT_HYPHEN" as the output.
end System.Img_Char;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . E X C E P T I O N S --
-- --
-- S p e c --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- This version is used for all Ada 2005 builds. It differs from a-except.ads
-- only with respect to the addition of Wide_[Wide]Exception_Name functions.
-- The additional entities are marked with pragma Ada_05, so this extended
-- unit is also perfectly suitable for use in Ada 95 or Ada 83 mode.
-- The reason for this splitting off of a separate version is that bootstrap
-- compilers often will be used that do not support Ada 2005 features, and
-- Ada.Exceptions is part of the compiler sources.
-- The base version of this unit Ada.Exceptions omits the Wide version of
-- Exception_Name and is used to build the compiler and other basic tools.
pragma Polling (Off);
-- We must turn polling off for this unit, because otherwise we get
-- elaboration circularities with ourself.
with System;
with System.Parameters;
with System.Standard_Library;
with System.Traceback_Entries;
package Ada.Exceptions is
pragma Warnings (Off);
pragma Preelaborate_05;
pragma Warnings (On);
-- In accordance with Ada 2005 AI-362. The warnings pragmas are so that we
-- can compile this using older compiler versions, which will ignore the
-- pragma, which is fine for the bootstrap.
type Exception_Id is private;
Null_Id : constant Exception_Id;
type Exception_Occurrence is limited private;
type Exception_Occurrence_Access is access all Exception_Occurrence;
Null_Occurrence : constant Exception_Occurrence;
function Exception_Name (Id : Exception_Id) return String;
function Exception_Name (X : Exception_Occurrence) return String;
function Wide_Exception_Name
(Id : Exception_Id) return Wide_String;
pragma Ada_05 (Wide_Exception_Name);
function Wide_Exception_Name
(X : Exception_Occurrence) return Wide_String;
pragma Ada_05 (Wide_Exception_Name);
function Wide_Wide_Exception_Name
(Id : Exception_Id) return Wide_Wide_String;
pragma Ada_05 (Wide_Wide_Exception_Name);
function Wide_Wide_Exception_Name
(X : Exception_Occurrence) return Wide_Wide_String;
pragma Ada_05 (Wide_Wide_Exception_Name);
procedure Raise_Exception (E : Exception_Id; Message : String := "");
-- Note: it would be really nice to give a pragma No_Return for this
-- procedure, but it would be wrong, since Raise_Exception does return
-- if given the null exception. However we do special case the name in
-- the test in the compiler for issuing a warning for a missing return
-- after this call. Program_Error seems reasonable enough in such a case.
-- See also the routine Raise_Exception_Always in the private part.
function Exception_Message (X : Exception_Occurrence) return String;
procedure Reraise_Occurrence (X : Exception_Occurrence);
-- Note: it would be really nice to give a pragma No_Return for this
-- procedure, but it would be wrong, since Reraise_Occurrence does return
-- if the argument is the null exception occurrence. See also procedure
-- Reraise_Occurrence_Always in the private part of this package.
function Exception_Identity (X : Exception_Occurrence) return Exception_Id;
function Exception_Information (X : Exception_Occurrence) return String;
-- The format of the exception information is as follows:
--
-- exception name (as in Exception_Name)
-- message (or a null line if no message)
-- PID=nnnn
-- 0xyyyyyyyy 0xyyyyyyyy ...
--
-- The lines are separated by a ASCII.LF character
-- The nnnn is the partition Id given as decimal digits.
-- The 0x... line represents traceback program counter locations,
-- in order with the first one being the exception location.
-- Note on ordering: the compiler uses the Save_Occurrence procedure, but
-- not the function from Rtsfind, so it is important that the procedure
-- come first, since Rtsfind finds the first matching entity.
procedure Save_Occurrence
(Target : out Exception_Occurrence;
Source : Exception_Occurrence);
function Save_Occurrence
(Source : Exception_Occurrence)
return Exception_Occurrence_Access;
private
package SSL renames System.Standard_Library;
package SP renames System.Parameters;
subtype EOA is Exception_Occurrence_Access;
Exception_Msg_Max_Length : constant := SP.Default_Exception_Msg_Max_Length;
------------------
-- Exception_Id --
------------------
subtype Code_Loc is System.Address;
-- Code location used in building exception tables and for call addresses
-- when propagating an exception. Values of this type are created by using
-- Label'Address or extracted from machine states using Get_Code_Loc.
Null_Loc : constant Code_Loc := System.Null_Address;
-- Null code location, used to flag outer level frame
type Exception_Id is new SSL.Exception_Data_Ptr;
function EId_To_String (X : Exception_Id) return String;
function String_To_EId (S : String) return Exception_Id;
pragma Stream_Convert (Exception_Id, String_To_EId, EId_To_String);
-- Functions for implementing Exception_Id stream attributes
Null_Id : constant Exception_Id := null;
-------------------------
-- Private Subprograms --
-------------------------
function Current_Target_Exception return Exception_Occurrence;
pragma Export
(Ada, Current_Target_Exception,
"__gnat_current_target_exception");
-- This routine should return the current raised exception on targets
-- which have built-in exception handling such as the Java Virtual
-- Machine. For other targets this routine is simply ignored. Currently,
-- only JGNAT uses this. See 4jexcept.ads for details. The pragma Export
-- allows this routine to be accessed elsewhere in the run-time, even
-- though it is in the private part of this package (it is not allowed
-- to be in the visible part, since this is set by the reference manual).
function Exception_Name_Simple (X : Exception_Occurrence) return String;
-- Like Exception_Name, but returns the simple non-qualified name of the
-- exception. This is used to implement the Exception_Name function in
-- Current_Exceptions (the DEC compatible unit). It is called from the
-- compiler generated code (using Rtsfind, which does not respect the
-- private barrier, so we can place this function in the private part
-- where the compiler can find it, but the spec is unchanged.)
procedure Raise_Exception_Always (E : Exception_Id; Message : String := "");
pragma No_Return (Raise_Exception_Always);
pragma Export (Ada, Raise_Exception_Always, "__gnat_raise_exception");
-- This differs from Raise_Exception only in that the caller has determined
-- that for sure the parameter E is not null, and that therefore the call
-- to this procedure cannot return. The expander converts Raise_Exception
-- calls to Raise_Exception_Always if it can determine this is the case.
-- The Export allows this routine to be accessed from Pure units.
procedure Raise_From_Signal_Handler
(E : Exception_Id;
M : System.Address);
pragma Export
(Ada, Raise_From_Signal_Handler,
"ada__exceptions__raise_from_signal_handler");
pragma No_Return (Raise_From_Signal_Handler);
-- This routine is used to raise an exception from a signal handler. The
-- signal handler has already stored the machine state (i.e. the state that
-- corresponds to the location at which the signal was raised). E is the
-- Exception_Id specifying what exception is being raised, and M is a
-- pointer to a null-terminated string which is the message to be raised.
-- Note that this routine never returns, so it is permissible to simply
-- jump to this routine, rather than call it. This may be appropriate for
-- systems where the right way to get out of signal handler is to alter the
-- PC value in the machine state or in some other way ask the operating
-- system to return here rather than to the original location.
procedure Reraise_Occurrence_Always (X : Exception_Occurrence);
pragma No_Return (Reraise_Occurrence_Always);
-- This differs from Raise_Occurrence only in that the caller guarantees
-- that for sure the parameter X is not the null occurrence, and that
-- therefore this procedure cannot return. The expander uses this routine
-- in the translation of a raise statement with no parameter (reraise).
procedure Reraise_Occurrence_No_Defer (X : Exception_Occurrence);
pragma No_Return (Reraise_Occurrence_No_Defer);
-- Exactly like Reraise_Occurrence, except that abort is not deferred
-- before the call and the parameter X is known not to be the null
-- occurrence. This is used in generated code when it is known that
-- abort is already deferred.
-----------------------
-- Polling Interface --
-----------------------
-- The GNAT compiler has an option to generate polling calls to the Poll
-- routine in this package. Specifying the -gnatP option for a compilation
-- causes a call to Ada.Exceptions.Poll to be generated on every subprogram
-- entry and on every iteration of a loop, thus avoiding the possibility of
-- a case of unbounded time between calls.
-- This polling interface may be used for instrumentation or debugging
-- purposes (e.g. implementing watchpoints in software or in the debugger).
-- In the GNAT technology itself, this interface is used to implement
-- immediate aynschronous transfer of control and immediate abort on
-- targets which do not provide for one thread interrupting another.
-- Note: this used to be in a separate unit called System.Poll, but that
-- caused horrible circular elaboration problems between System.Poll and
-- Ada.Exceptions. One way of solving such circularities is unification!
procedure Poll;
-- Check for asynchronous abort. Note that we do not inline the body.
-- This makes the interface more useful for debugging purposes.
--------------------------
-- Exception_Occurrence --
--------------------------
package TBE renames System.Traceback_Entries;
Max_Tracebacks : constant := 50;
-- Maximum number of trace backs stored in exception occurrence
type Tracebacks_Array is array (1 .. Max_Tracebacks) of TBE.Traceback_Entry;
-- Traceback array stored in exception occurrence
type Exception_Occurrence is record
Id : Exception_Id;
-- Exception_Identity for this exception occurrence
-- WARNING System.System.Finalization_Implementation.Finalize_List
-- relies on the fact that this field is always first in the exception
-- occurrence
Msg_Length : Natural := 0;
-- Length of message (zero = no message)
Msg : String (1 .. Exception_Msg_Max_Length);
-- Characters of message
Cleanup_Flag : Boolean := False;
-- The cleanup flag is normally False, it is set True for an exception
-- occurrence passed to a cleanup routine, and will still be set True
-- when the cleanup routine does a Reraise_Occurrence call using this
-- exception occurrence. This is used to avoid recording a bogus trace
-- back entry from this reraise call.
Exception_Raised : Boolean := False;
-- Set to true to indicate that this exception occurrence has actually
-- been raised. When an exception occurrence is first created, this is
-- set to False, then when it is processed by Raise_Current_Exception,
-- it is set to True. If Raise_Current_Exception is used to raise an
-- exception for which this flag is already True, then it knows that
-- it is dealing with the reraise case (which is useful to distinguish
-- for exception tracing purposes).
Pid : Natural := 0;
-- Partition_Id for partition raising exception
Num_Tracebacks : Natural range 0 .. Max_Tracebacks := 0;
-- Number of traceback entries stored
Tracebacks : Tracebacks_Array;
-- Stored tracebacks (in Tracebacks (1 .. Num_Tracebacks))
Private_Data : System.Address := System.Null_Address;
-- Field used by low level exception mechanism to store specific data.
-- Currently used by the GCC exception mechanism to store a pointer to
-- a GNAT_GCC_Exception.
end record;
function "=" (Left, Right : Exception_Occurrence) return Boolean
is abstract;
-- Don't allow comparison on exception occurrences, we should not need
-- this, and it would not work right, because of the Msg and Tracebacks
-- fields which have unused entries not copied by Save_Occurrence.
function EO_To_String (X : Exception_Occurrence) return String;
function String_To_EO (S : String) return Exception_Occurrence;
pragma Stream_Convert (Exception_Occurrence, String_To_EO, EO_To_String);
-- Functions for implementing Exception_Occurrence stream attributes
Null_Occurrence : constant Exception_Occurrence := (
Id => null,
Msg_Length => 0,
Msg => (others => ' '),
Cleanup_Flag => False,
Exception_Raised => False,
Pid => 0,
Num_Tracebacks => 0,
Tracebacks => (others => TBE.Null_TB_Entry),
Private_Data => System.Null_Address);
end Ada.Exceptions;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . M O S T _ R E C E N T _ E X C E P T I O N --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-2021, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides routines for accessing the most recently raised
-- exception. This may be useful for certain logging activities. It may
-- also be useful for mimicking implementation dependent capabilities in
-- Ada 83 compilers, but see also GNAT.Current_Exceptions for this usage.
with Ada.Exceptions;
package GNAT.Most_Recent_Exception is
-----------------
-- Subprograms --
-----------------
function Occurrence
return Ada.Exceptions.Exception_Occurrence;
-- Returns the Exception_Occurrence for the most recently raised exception
-- in the current task. If no exception has been raised in the current task
-- prior to the call, returns Null_Occurrence.
function Occurrence_Access
return Ada.Exceptions.Exception_Occurrence_Access;
-- Similar to the above, but returns an access to the occurrence value.
-- This value is in a task specific location, and may be validly accessed
-- as long as no further exception is raised in the calling task.
-- Note: unlike the routines in GNAT.Current_Exception, these functions
-- access the most recently raised exception, regardless of where they
-- are called. Consider the following example:
-- exception
-- when Constraint_Error =>
-- begin
-- ...
-- exception
-- when Tasking_Error => ...
-- end;
--
-- -- Assuming a Tasking_Error was raised in the inner block,
-- -- a call to GNAT.Most_Recent_Exception.Occurrence will
-- -- return information about this Tasking_Error exception,
-- -- not about the Constraint_Error exception being handled
-- -- by the current handler code.
end GNAT.Most_Recent_Exception;
|
package Enum1_Pkg is
type Enum is (One, Two, Three);
subtype Sub_Enum is Enum;
My_N : Sub_Enum := One;
end Enum1_Pkg;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . S O F T _ L I N K S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains a set of subprogram access variables that access
-- some low-level primitives that are different depending whether tasking is
-- involved or not (e.g. the Get/Set_Jmpbuf_Address that needs to provide a
-- different value for each task). To avoid dragging in the tasking runtimes
-- all the time, we use a system of soft links where the links are
-- initialized to non-tasking versions, and then if the tasking support is
-- initialized, they are set to the real tasking versions.
pragma Compiler_Unit_Warning;
with Ada.Exceptions;
with System.Parameters;
with System.Secondary_Stack;
with System.Stack_Checking;
package System.Soft_Links is
pragma Preelaborate;
package SST renames System.Secondary_Stack;
subtype EOA is Ada.Exceptions.Exception_Occurrence_Access;
subtype EO is Ada.Exceptions.Exception_Occurrence;
function Current_Target_Exception return EO;
pragma Import
(Ada, Current_Target_Exception, "__gnat_current_target_exception");
-- Import this subprogram from the private part of Ada.Exceptions
-- First we have the access subprogram types used to establish the links.
-- The approach is to establish variables containing access subprogram
-- values, which by default point to dummy no tasking versions of routines.
type No_Param_Proc is access procedure;
pragma Favor_Top_Level (No_Param_Proc);
pragma Suppress_Initialization (No_Param_Proc);
-- Some uninitialized objects of that type are initialized by the Binder
-- so it is important that such objects are not reset to null during
-- elaboration.
type Addr_Param_Proc is access procedure (Addr : Address);
pragma Favor_Top_Level (Addr_Param_Proc);
type EO_Param_Proc is access procedure (Excep : EO);
pragma Favor_Top_Level (EO_Param_Proc);
type Get_Address_Call is access function return Address;
pragma Favor_Top_Level (Get_Address_Call);
type Set_Address_Call is access procedure (Addr : Address);
pragma Favor_Top_Level (Set_Address_Call);
type Set_Address_Call2 is access procedure
(Self_ID : Address; Addr : Address);
pragma Favor_Top_Level (Set_Address_Call2);
type Get_Integer_Call is access function return Integer;
pragma Favor_Top_Level (Get_Integer_Call);
type Set_Integer_Call is access procedure (Len : Integer);
pragma Favor_Top_Level (Set_Integer_Call);
type Get_EOA_Call is access function return EOA;
pragma Favor_Top_Level (Get_EOA_Call);
type Set_EOA_Call is access procedure (Excep : EOA);
pragma Favor_Top_Level (Set_EOA_Call);
type Set_EO_Call is access procedure (Excep : EO);
pragma Favor_Top_Level (Set_EO_Call);
type Get_Stack_Call is access function return SST.SS_Stack_Ptr;
pragma Favor_Top_Level (Get_Stack_Call);
type Set_Stack_Call is access procedure (Stack : SST.SS_Stack_Ptr);
pragma Favor_Top_Level (Set_Stack_Call);
type Special_EO_Call is access
procedure (Excep : EO := Current_Target_Exception);
pragma Favor_Top_Level (Special_EO_Call);
type Timed_Delay_Call is access
procedure (Time : Duration; Mode : Integer);
pragma Favor_Top_Level (Timed_Delay_Call);
type Get_Stack_Access_Call is access
function return Stack_Checking.Stack_Access;
pragma Favor_Top_Level (Get_Stack_Access_Call);
type Task_Name_Call is access
function return String;
pragma Favor_Top_Level (Task_Name_Call);
-- Suppress checks on all these types, since we know the corresponding
-- values can never be null (the soft links are always initialized).
pragma Suppress (Access_Check, No_Param_Proc);
pragma Suppress (Access_Check, Addr_Param_Proc);
pragma Suppress (Access_Check, EO_Param_Proc);
pragma Suppress (Access_Check, Get_Address_Call);
pragma Suppress (Access_Check, Set_Address_Call);
pragma Suppress (Access_Check, Set_Address_Call2);
pragma Suppress (Access_Check, Get_Integer_Call);
pragma Suppress (Access_Check, Set_Integer_Call);
pragma Suppress (Access_Check, Get_EOA_Call);
pragma Suppress (Access_Check, Set_EOA_Call);
pragma Suppress (Access_Check, Get_Stack_Call);
pragma Suppress (Access_Check, Set_Stack_Call);
pragma Suppress (Access_Check, Timed_Delay_Call);
pragma Suppress (Access_Check, Get_Stack_Access_Call);
pragma Suppress (Access_Check, Task_Name_Call);
-- The following one is not related to tasking/no-tasking but to the
-- traceback decorators for exceptions.
type Traceback_Decorator_Wrapper_Call is access
function (Traceback : System.Address;
Len : Natural)
return String;
pragma Favor_Top_Level (Traceback_Decorator_Wrapper_Call);
-- Declarations for the no tasking versions of the required routines
procedure Abort_Defer_NT;
-- Defer task abort (non-tasking case, does nothing)
procedure Abort_Undefer_NT;
-- Undefer task abort (non-tasking case, does nothing)
procedure Abort_Handler_NT;
-- Handle task abort (non-tasking case, does nothing). Currently, no port
-- makes use of this, but we retain the interface for possible future use.
function Check_Abort_Status_NT return Integer;
-- Returns Boolean'Pos (True) iff abort signal should raise
-- Standard'Abort_Signal.
procedure Task_Lock_NT;
-- Lock out other tasks (non-tasking case, does nothing)
procedure Task_Unlock_NT;
-- Release lock set by Task_Lock (non-tasking case, does nothing)
procedure Task_Termination_NT (Excep : EO);
-- Handle task termination routines for the environment task (non-tasking
-- case, does nothing).
procedure Adafinal_NT;
-- Shuts down the runtime system (non-tasking case)
Abort_Defer : No_Param_Proc := Abort_Defer_NT'Access;
pragma Suppress (Access_Check, Abort_Defer);
-- Defer task abort (task/non-task case as appropriate)
Abort_Undefer : No_Param_Proc := Abort_Undefer_NT'Access;
pragma Suppress (Access_Check, Abort_Undefer);
-- Undefer task abort (task/non-task case as appropriate)
Abort_Handler : No_Param_Proc := Abort_Handler_NT'Access;
-- Handle task abort (task/non-task case as appropriate)
Check_Abort_Status : Get_Integer_Call := Check_Abort_Status_NT'Access;
-- Called when Abort_Signal is delivered to the process. Checks to
-- see if signal should result in raising Standard'Abort_Signal.
Lock_Task : No_Param_Proc := Task_Lock_NT'Access;
-- Locks out other tasks. Preceding a section of code by Task_Lock and
-- following it by Task_Unlock creates a critical region. This is used
-- for ensuring that a region of non-tasking code (such as code used to
-- allocate memory) is tasking safe. Note that it is valid for calls to
-- Task_Lock/Task_Unlock to be nested, and this must work properly, i.e.
-- only the corresponding outer level Task_Unlock will actually unlock.
-- This routine also prevents against asynchronous aborts (abort is
-- deferred).
Unlock_Task : No_Param_Proc := Task_Unlock_NT'Access;
-- Releases lock previously set by call to Lock_Task. In the nested case,
-- all nested locks must be released before other tasks competing for the
-- tasking lock are released.
--
-- In the non nested case, this routine terminates the protection against
-- asynchronous aborts introduced by Lock_Task (unless abort was already
-- deferred before the call to Lock_Task (e.g in a protected procedures).
--
-- Note: the recommended protocol for using Lock_Task and Unlock_Task
-- is as follows:
--
-- Locked_Processing : begin
-- System.Soft_Links.Lock_Task.all;
-- ...
-- System.Soft_Links.Unlock_Task.all;
--
-- exception
-- when others =>
-- System.Soft_Links.Unlock_Task.all;
-- raise;
-- end Locked_Processing;
--
-- This ensures that the lock is not left set if an exception is raised
-- explicitly or implicitly during the critical locked region.
Task_Termination_Handler : EO_Param_Proc := Task_Termination_NT'Access;
-- Handle task termination routines (task/non-task case as appropriate)
Finalize_Library_Objects : No_Param_Proc;
pragma Export (C, Finalize_Library_Objects,
"__gnat_finalize_library_objects");
-- Will be initialized by the binder
Adafinal : No_Param_Proc := Adafinal_NT'Access;
-- Performs the finalization of the Ada Runtime
function Get_Jmpbuf_Address_NT return Address;
procedure Set_Jmpbuf_Address_NT (Addr : Address);
Get_Jmpbuf_Address : Get_Address_Call := Get_Jmpbuf_Address_NT'Access;
Set_Jmpbuf_Address : Set_Address_Call := Set_Jmpbuf_Address_NT'Access;
function Get_Sec_Stack_NT return SST.SS_Stack_Ptr;
procedure Set_Sec_Stack_NT (Stack : SST.SS_Stack_Ptr);
Get_Sec_Stack : Get_Stack_Call := Get_Sec_Stack_NT'Access;
Set_Sec_Stack : Set_Stack_Call := Set_Sec_Stack_NT'Access;
function Get_Current_Excep_NT return EOA;
Get_Current_Excep : Get_EOA_Call := Get_Current_Excep_NT'Access;
function Get_Stack_Info_NT return Stack_Checking.Stack_Access;
Get_Stack_Info : Get_Stack_Access_Call := Get_Stack_Info_NT'Access;
--------------------------
-- Master_Id Soft-Links --
--------------------------
-- Soft-Links are used for procedures that manipulate Master_Ids because
-- a Master_Id must be generated for access to limited class-wide types,
-- whose root may be extended with task components.
function Current_Master_NT return Integer;
procedure Enter_Master_NT;
procedure Complete_Master_NT;
Current_Master : Get_Integer_Call := Current_Master_NT'Access;
Enter_Master : No_Param_Proc := Enter_Master_NT'Access;
Complete_Master : No_Param_Proc := Complete_Master_NT'Access;
----------------------
-- Delay Soft-Links --
----------------------
-- Soft-Links are used for procedures that manipulate time to avoid
-- dragging the tasking run time when using delay statements.
Timed_Delay : Timed_Delay_Call;
--------------------------
-- Task Name Soft-Links --
--------------------------
function Task_Name_NT return String;
Task_Name : Task_Name_Call := Task_Name_NT'Access;
-------------------------------------
-- Exception Tracebacks Soft-Links --
-------------------------------------
Library_Exception : EO;
-- Library-level finalization routines use this common reference to store
-- the first library-level exception which occurs during finalization.
Library_Exception_Set : Boolean := False;
-- Used in conjunction with Library_Exception, set when an exception has
-- been stored.
Traceback_Decorator_Wrapper : Traceback_Decorator_Wrapper_Call;
-- Wrapper to the possible user specified traceback decorator to be
-- called during automatic output of exception data.
-- The null value of this wrapper correspond sto the null value of the
-- current actual decorator. This is ensured first by the null initial
-- value of the corresponding variables, and then by Set_Trace_Decorator
-- in g-exctra.adb.
pragma Atomic (Traceback_Decorator_Wrapper);
-- Since concurrent read/write operations may occur on this variable.
-- See the body of Tailored_Exception_Traceback in Ada.Exceptions for
-- a more detailed description of the potential problems.
procedure Save_Library_Occurrence (E : EOA);
-- When invoked, this routine saves an exception occurrence into a hidden
-- reference. Subsequent calls will have no effect.
------------------------
-- Task Specific Data --
------------------------
-- Here we define a single type that encapsulates the various task
-- specific data. This type is used to store the necessary data into the
-- Task_Control_Block or into a global variable in the non tasking case.
type TSD is record
Pri_Stack_Info : aliased Stack_Checking.Stack_Info;
-- Information on stack (Base/Limit/Size) used by System.Stack_Checking.
-- If this TSD does not belong to the environment task, the Size field
-- must be initialized to the tasks requested stack size before the task
-- can do its first stack check.
Jmpbuf_Address : System.Address;
-- Address of jump buffer used to store the address of the current
-- longjmp/setjmp buffer for exception management. These buffers are
-- threaded into a stack, and the address here is the top of the stack.
-- A null address means that no exception handler is currently active.
Sec_Stack_Ptr : SST.SS_Stack_Ptr;
-- Pointer of the allocated secondary stack
Current_Excep : aliased EO;
-- Exception occurrence that contains the information for the current
-- exception. Note that any exception in the same task destroys this
-- information, so the data in this variable must be copied out before
-- another exception can occur.
--
-- Also act as a list of the active exceptions in the case of the GCC
-- exception mechanism, organized as a stack with the most recent first.
end record;
procedure Create_TSD
(New_TSD : in out TSD;
Sec_Stack : SST.SS_Stack_Ptr;
Sec_Stack_Size : System.Parameters.Size_Type);
pragma Inline (Create_TSD);
-- Called from s-tassta when a new thread is created to perform
-- any required initialization of the TSD.
procedure Destroy_TSD (Old_TSD : in out TSD);
pragma Inline (Destroy_TSD);
-- Called from s-tassta just before a thread is destroyed to perform
-- any required finalization.
function Get_GNAT_Exception return Ada.Exceptions.Exception_Id;
pragma Inline (Get_GNAT_Exception);
-- This function obtains the Exception_Id from the Exception_Occurrence
-- referenced by the Current_Excep field of the task specific data, i.e.
-- the call is equivalent to
-- Exception_Identity (Get_Current_Exception.all)
-- Export the Get/Set routines for the various Task Specific Data (TSD)
-- elements as callable subprograms instead of objects of access to
-- subprogram types.
function Get_Jmpbuf_Address_Soft return Address;
procedure Set_Jmpbuf_Address_Soft (Addr : Address);
pragma Inline (Get_Jmpbuf_Address_Soft);
pragma Inline (Set_Jmpbuf_Address_Soft);
function Get_Sec_Stack_Soft return SST.SS_Stack_Ptr;
procedure Set_Sec_Stack_Soft (Stack : SST.SS_Stack_Ptr);
pragma Inline (Get_Sec_Stack_Soft);
pragma Inline (Set_Sec_Stack_Soft);
-- The following is a dummy record designed to mimic Communication_Block as
-- defined in s-tpobop.ads:
-- type Communication_Block is record
-- Self : Task_Id; -- An access type
-- Enqueued : Boolean := True;
-- Cancelled : Boolean := False;
-- end record;
-- The record is used in the construction of the predefined dispatching
-- primitive _disp_asynchronous_select in order to avoid the import of
-- System.Tasking.Protected_Objects.Operations. Note that this package
-- is always imported in the presence of interfaces since the dispatch
-- table uses entities from here.
type Dummy_Communication_Block is record
Comp_1 : Address; -- Address and access have the same size
Comp_2 : Boolean;
Comp_3 : Boolean;
end record;
private
NT_TSD : TSD;
-- The task specific data for the main task when the Ada tasking run-time
-- is not used. It relies on the default initialization of NT_TSD. It is
-- placed here and not the body to ensure the default initialization does
-- not clobber the secondary stack initialization that occurs as part of
-- System.Soft_Links.Initialization.
end System.Soft_Links;
|
function IsDivisible(x, y: IN Integer) return Integer is
Result : Integer;
begin
Result := 0;
if y = 0 or else x = 0 then
Result := 0;
else
Result := x / y;
end if;
if y = 0 and then x = 0 then
Result := 0;
else
Result := x * (x / y );
end if;
return Result;
end IsDivisible;
|
-- see OpenUxAS\src\Includes\Constants\UxAS_String.h
package UxAS.Common.String_Constant.Content_Type is
Json : constant String := "json";
Lmcp : constant String := "lmcp";
Text : constant String := "text";
Xml : constant String := "xml";
end UxAS.Common.String_Constant.Content_Type;
|
package Error_Handling is
procedure Make_Safe;
-- The inverter is forced into a safe state.
end Error_Handling;
|
-- Copyright 2012-2021 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with System;
package Pck is
type Color is (Black, Red, Green, Blue, White);
type Strength is (None, Low, Medium, High);
type Short is new Natural range 0 .. 2 ** 8 - 1;
type Full_Table is array (Color) of Boolean;
pragma Pack (Full_Table);
subtype Primary_Color is Color range Red .. Blue;
type Primary_Table is array (Primary_Color) of Boolean;
pragma Pack (Primary_Table);
type Cold_Color is new Color range Green .. Blue;
type Cold_Table is array (Cold_Color) of Boolean;
pragma Pack (Cold_Table);
type Small_Table is array (Color range <>) of Boolean;
pragma Pack (Small_Table);
function New_Small_Table (Low: Color; High: Color) return Small_Table;
type Multi_Table is array (Color range <>, Strength range <>) of Boolean;
pragma Pack (Multi_Table);
function New_Multi_Table (Low, High: Color; LS, HS: Strength)
return Multi_Table;
type Multi_Multi_Table is array (Positive range <>, Positive range <>, Positive range <>) of Boolean;
pragma Pack (Multi_Multi_Table);
function New_Multi_Multi_Table (L1, H1, L2, H2, L3, H3: Positive)
return Multi_Multi_Table;
type Multi_Dimension is array (Boolean, Color) of Short;
pragma Pack (Multi_Dimension);
type Multi_Dimension_Access is access all Multi_Dimension;
type My_Enum is (Blue, Red, Green);
type My_Array_Type is array (My_Enum) of Integer;
type Confused_Array_Type is array (Color) of My_Array_Type;
procedure Do_Nothing (A : System.Address);
end Pck;
|
-----------------------------------------------------------------------
-- pinger -- Ping hosts
-- Copyright (C) 2016, 2017 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 Net;
with Net.Interfaces;
with Net.Buffers;
package Pinger is
-- Maximum number of host we can ping.
MAX_PING_HOST : constant Positive := 8;
NO_IP : constant Net.Ip_Addr := (0, 0, 0, 0);
-- Information about a ping request that we sent.
type Ping_Info is record
Ip : Net.Ip_Addr := NO_IP;
Seq : Net.Uint16 := 0;
Received : Natural := 0;
end record;
type Ping_Info_Array is array (Natural range <>) of Ping_Info;
-- Get the list of hosts with their ping counters.
function Get_Hosts return Ping_Info_Array;
-- Add the host to ping list.
procedure Add_Host (Ip : in Net.Ip_Addr);
-- Send the ICMP echo request to each host.
procedure Do_Ping;
procedure Receive (Ifnet : in out Net.Interfaces.Ifnet_Type'Class;
Packet : in out Net.Buffers.Buffer_Type);
end Pinger;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E X P _ C H 2 --
-- --
-- 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 Atree; use Atree;
with Checks; use Checks;
with Debug; use Debug;
with Einfo; use Einfo;
with Elists; use Elists;
with Exp_Smem; use Exp_Smem;
with Exp_Tss; use Exp_Tss;
with Exp_Util; use Exp_Util;
with Namet; use Namet;
with Nmake; use Nmake;
with Opt; use Opt;
with Output; use Output;
with Sem; use Sem;
with Sem_Eval; use Sem_Eval;
with Sem_Res; use Sem_Res;
with Sem_Util; use Sem_Util;
with Sem_Warn; use Sem_Warn;
with Sinfo; use Sinfo;
with Sinput; use Sinput;
with Snames; use Snames;
with Tbuild; use Tbuild;
package body Exp_Ch2 is
-----------------------
-- Local Subprograms --
-----------------------
procedure Expand_Current_Value (N : Node_Id);
-- N is a node for a variable whose Current_Value field is set. If N is
-- node is for a discrete type, replaces node with a copy of the referenced
-- value. This provides a limited form of value propagation for variables
-- which are initialized or assigned not been further modified at the time
-- of reference. The call has no effect if the Current_Value refers to a
-- conditional with condition other than equality.
procedure Expand_Discriminant (N : Node_Id);
-- An occurrence of a discriminant within a discriminated type is replaced
-- with the corresponding discriminal, that is to say the formal parameter
-- of the initialization procedure for the type that is associated with
-- that particular discriminant. This replacement is not performed for
-- discriminants of records that appear in constraints of component of the
-- record, because Gigi uses the discriminant name to retrieve its value.
-- In the other hand, it has to be performed for default expressions of
-- components because they are used in the record init procedure. See Einfo
-- for more details, and Exp_Ch3, Exp_Ch9 for examples of use. For
-- discriminants of tasks and protected types, the transformation is more
-- complex when it occurs within a default expression for an entry or
-- protected operation. The corresponding default_expression_function has
-- an additional parameter which is the target of an entry call, and the
-- discriminant of the task must be replaced with a reference to the
-- discriminant of that formal parameter.
procedure Expand_Entity_Reference (N : Node_Id);
-- Common processing for expansion of identifiers and expanded names
-- Dispatches to specific expansion procedures.
procedure Expand_Entry_Index_Parameter (N : Node_Id);
-- A reference to the identifier in the entry index specification of an
-- entry body is modified to a reference to a constant definition equal to
-- the index of the entry family member being called. This constant is
-- calculated as part of the elaboration of the expanded code for the body,
-- and is calculated from the object-wide entry index returned by Next_
-- Entry_Call.
procedure Expand_Entry_Parameter (N : Node_Id);
-- A reference to an entry parameter is modified to be a reference to the
-- corresponding component of the entry parameter record that is passed by
-- the runtime to the accept body procedure.
procedure Expand_Formal (N : Node_Id);
-- A reference to a formal parameter of a protected subprogram is expanded
-- into the corresponding formal of the unprotected procedure used to
-- represent the operation within the protected object. In other cases
-- Expand_Formal is a no-op.
procedure Expand_Protected_Component (N : Node_Id);
-- A reference to a private component of a protected type is expanded into
-- a reference to the corresponding prival in the current protected entry
-- or subprogram.
procedure Expand_Renaming (N : Node_Id);
-- For renamings, just replace the identifier by the corresponding
-- named expression. Note that this has been evaluated (see routine
-- Exp_Ch8.Expand_N_Object_Renaming.Evaluate_Name) so this gives
-- the correct renaming semantics.
--------------------------
-- Expand_Current_Value --
--------------------------
procedure Expand_Current_Value (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
E : constant Entity_Id := Entity (N);
CV : constant Node_Id := Current_Value (E);
T : constant Entity_Id := Etype (N);
Val : Node_Id;
Op : Node_Kind;
begin
if True
-- No replacement if value raises constraint error
and then Nkind (CV) /= N_Raise_Constraint_Error
-- Do this only for discrete types
and then Is_Discrete_Type (T)
-- Do not replace biased types, since it is problematic to
-- consistently generate a sensible constant value in this case.
and then not Has_Biased_Representation (T)
-- Do not replace lvalues
and then not May_Be_Lvalue (N)
-- Check that entity is suitable for replacement
and then OK_To_Do_Constant_Replacement (E)
-- Do not replace occurrences in pragmas (where names typically
-- appear not as values, but as simply names. If there are cases
-- where values are required, it is only a very minor efficiency
-- issue that they do not get replaced when they could be).
and then Nkind (Parent (N)) /= N_Pragma_Argument_Association
-- Do not replace the prefixes of attribute references, since this
-- causes trouble with cases like 4'Size. Also for Name_Asm_Input and
-- Name_Asm_Output, don't do replacement anywhere, since we can have
-- lvalue references in the arguments.
and then not (Nkind (Parent (N)) = N_Attribute_Reference
and then
(Attribute_Name (Parent (N)) in Name_Asm_Input
| Name_Asm_Output
or else Prefix (Parent (N)) = N))
then
-- Case of Current_Value is a compile time known value
if Nkind (CV) in N_Subexpr then
Val := CV;
-- Case of Current_Value is an if expression reference
else
Get_Current_Value_Condition (N, Op, Val);
if Op /= N_Op_Eq then
return;
end if;
end if;
-- If constant value is an occurrence of an enumeration literal,
-- then we just make another occurrence of the same literal.
if Is_Entity_Name (Val)
and then Ekind (Entity (Val)) = E_Enumeration_Literal
then
Rewrite (N,
Unchecked_Convert_To (T,
New_Occurrence_Of (Entity (Val), Loc)));
-- If constant is of a character type, just make an appropriate
-- character literal, which will get the proper type.
elsif Is_Character_Type (T) then
Rewrite (N,
Make_Character_Literal (Loc,
Chars => Chars (Val),
Char_Literal_Value => Expr_Rep_Value (Val)));
-- If constant is of an integer type, just make an appropriate
-- integer literal, which will get the proper type.
elsif Is_Integer_Type (T) then
Rewrite (N,
Make_Integer_Literal (Loc,
Intval => Expr_Rep_Value (Val)));
-- Otherwise do unchecked conversion of value to right type
else
Rewrite (N,
Unchecked_Convert_To (T,
Make_Integer_Literal (Loc,
Intval => Expr_Rep_Value (Val))));
end if;
Analyze_And_Resolve (N, T);
Set_Is_Static_Expression (N, False);
end if;
end Expand_Current_Value;
-------------------------
-- Expand_Discriminant --
-------------------------
procedure Expand_Discriminant (N : Node_Id) is
Scop : constant Entity_Id := Scope (Entity (N));
P : Node_Id := N;
Parent_P : Node_Id := Parent (P);
In_Entry : Boolean := False;
begin
-- The Incomplete_Or_Private_Kind happens while resolving the
-- discriminant constraint involved in a derived full type,
-- such as:
-- type D is private;
-- type D(C : ...) is new T(C);
if Ekind (Scop) = E_Record_Type
or Ekind (Scop) in Incomplete_Or_Private_Kind
then
-- Find the origin by walking up the tree till the component
-- declaration
while Present (Parent_P)
and then Nkind (Parent_P) /= N_Component_Declaration
loop
P := Parent_P;
Parent_P := Parent (P);
end loop;
-- If the discriminant reference was part of the default expression
-- it has to be "discriminalized"
if Present (Parent_P) and then P = Expression (Parent_P) then
Set_Entity (N, Discriminal (Entity (N)));
end if;
elsif Is_Concurrent_Type (Scop) then
while Present (Parent_P)
and then Nkind (Parent_P) /= N_Subprogram_Body
loop
P := Parent_P;
if Nkind (P) = N_Entry_Declaration then
In_Entry := True;
end if;
Parent_P := Parent (Parent_P);
end loop;
-- If the discriminant occurs within the default expression for a
-- formal of an entry or protected operation, replace it with a
-- reference to the discriminant of the formal of the enclosing
-- operation.
if Present (Parent_P)
and then Present (Corresponding_Spec (Parent_P))
then
declare
Loc : constant Source_Ptr := Sloc (N);
D_Fun : constant Entity_Id := Corresponding_Spec (Parent_P);
Formal : constant Entity_Id := First_Formal (D_Fun);
New_N : Node_Id;
Disc : Entity_Id;
begin
-- Verify that we are within the body of an entry or protected
-- operation. Its first formal parameter is the synchronized
-- type itself.
if Present (Formal)
and then Etype (Formal) = Scope (Entity (N))
then
Disc := CR_Discriminant (Entity (N));
New_N :=
Make_Selected_Component (Loc,
Prefix => New_Occurrence_Of (Formal, Loc),
Selector_Name => New_Occurrence_Of (Disc, Loc));
Set_Etype (New_N, Etype (N));
Rewrite (N, New_N);
else
Set_Entity (N, Discriminal (Entity (N)));
end if;
end;
elsif Nkind (Parent (N)) = N_Range
and then In_Entry
then
Set_Entity (N, CR_Discriminant (Entity (N)));
-- Finally, if the entity is the discriminant of the original
-- type declaration, and we are within the initialization
-- procedure for a task, the designated entity is the
-- discriminal of the task body. This can happen when the
-- argument of pragma Task_Name mentions a discriminant,
-- because the pragma is analyzed in the task declaration
-- but is expanded in the call to Create_Task in the init_proc.
elsif Within_Init_Proc then
Set_Entity (N, Discriminal (CR_Discriminant (Entity (N))));
else
Set_Entity (N, Discriminal (Entity (N)));
end if;
else
Set_Entity (N, Discriminal (Entity (N)));
end if;
end Expand_Discriminant;
-----------------------------
-- Expand_Entity_Reference --
-----------------------------
procedure Expand_Entity_Reference (N : Node_Id) is
E : constant Entity_Id := Entity (N);
begin
-- Defend against errors
if No (E) then
Check_Error_Detected;
return;
end if;
if Ekind (E) = E_Discriminant then
Expand_Discriminant (N);
elsif Is_Entry_Formal (E) then
Expand_Entry_Parameter (N);
elsif Is_Protected_Component (E) then
if No_Run_Time_Mode then
return;
else
Expand_Protected_Component (N);
end if;
elsif Ekind (E) = E_Entry_Index_Parameter then
Expand_Entry_Index_Parameter (N);
elsif Is_Formal (E) then
Expand_Formal (N);
elsif Is_Renaming_Of_Object (E) then
Expand_Renaming (N);
elsif Ekind (E) = E_Variable
and then Is_Shared_Passive (E)
then
Expand_Shared_Passive_Variable (N);
end if;
-- Test code for implementing the pragma Reviewable requirement of
-- classifying reads of scalars as referencing potentially uninitialized
-- objects or not.
if Debug_Flag_XX
and then Is_Scalar_Type (Etype (N))
and then (Is_Assignable (E) or else Is_Constant_Object (E))
and then Comes_From_Source (N)
and then Is_LHS (N) = No
and then not Is_Actual_Out_Parameter (N)
and then (Nkind (Parent (N)) /= N_Attribute_Reference
or else Attribute_Name (Parent (N)) /= Name_Valid)
then
Write_Location (Sloc (N));
Write_Str (": Read from scalar """);
Write_Name (Chars (N));
Write_Str ("""");
if Is_Known_Valid (E) then
Write_Str (", Is_Known_Valid");
end if;
Write_Eol;
end if;
-- Set Atomic_Sync_Required if necessary for atomic variable. Note that
-- this processing does NOT apply to Volatile_Full_Access variables.
if Nkind (N) in N_Identifier | N_Expanded_Name
and then Ekind (E) = E_Variable
and then (Is_Atomic (E) or else Is_Atomic (Etype (E)))
then
declare
Set : Boolean;
begin
-- If variable is atomic, but type is not, setting depends on
-- disable/enable state for the variable.
if Is_Atomic (E) and then not Is_Atomic (Etype (E)) then
Set := not Atomic_Synchronization_Disabled (E);
-- If variable is not atomic, but its type is atomic, setting
-- depends on disable/enable state for the type.
elsif not Is_Atomic (E) and then Is_Atomic (Etype (E)) then
Set := not Atomic_Synchronization_Disabled (Etype (E));
-- Else both variable and type are atomic (see outer if), and we
-- disable if either variable or its type have sync disabled.
else
Set := (not Atomic_Synchronization_Disabled (E))
and then
(not Atomic_Synchronization_Disabled (Etype (E)));
end if;
-- Set flag if required
if Set then
Activate_Atomic_Synchronization (N);
end if;
end;
end if;
-- Interpret possible Current_Value for variable case
if Is_Assignable (E)
and then Present (Current_Value (E))
then
Expand_Current_Value (N);
-- We do want to warn for the case of a boolean variable (not a
-- boolean constant) whose value is known at compile time.
if Is_Boolean_Type (Etype (N)) then
Warn_On_Known_Condition (N);
end if;
-- Don't mess with Current_Value for compile time known values. Not
-- only is it unnecessary, but we could disturb an indication of a
-- static value, which could cause semantic trouble.
elsif Compile_Time_Known_Value (N) then
null;
-- Interpret possible Current_Value for constant case
elsif Is_Constant_Object (E)
and then Present (Current_Value (E))
then
Expand_Current_Value (N);
end if;
end Expand_Entity_Reference;
----------------------------------
-- Expand_Entry_Index_Parameter --
----------------------------------
procedure Expand_Entry_Index_Parameter (N : Node_Id) is
Index_Con : constant Entity_Id := Entry_Index_Constant (Entity (N));
begin
Set_Entity (N, Index_Con);
Set_Etype (N, Etype (Index_Con));
end Expand_Entry_Index_Parameter;
----------------------------
-- Expand_Entry_Parameter --
----------------------------
procedure Expand_Entry_Parameter (N : Node_Id) is
Loc : constant Source_Ptr := Sloc (N);
Ent_Formal : constant Entity_Id := Entity (N);
Ent_Spec : constant Entity_Id := Scope (Ent_Formal);
Parm_Type : constant Entity_Id := Entry_Parameters_Type (Ent_Spec);
Acc_Stack : constant Elist_Id := Accept_Address (Ent_Spec);
Addr_Ent : constant Entity_Id := Node (Last_Elmt (Acc_Stack));
P_Comp_Ref : Entity_Id;
function In_Assignment_Context (N : Node_Id) return Boolean;
-- Check whether this is a context in which the entry formal may be
-- assigned to.
---------------------------
-- In_Assignment_Context --
---------------------------
function In_Assignment_Context (N : Node_Id) return Boolean is
begin
-- Case of use in a call
-- ??? passing a formal as actual for a mode IN formal is
-- considered as an assignment?
if Nkind (Parent (N)) in
N_Procedure_Call_Statement | N_Entry_Call_Statement
or else (Nkind (Parent (N)) = N_Assignment_Statement
and then N = Name (Parent (N)))
then
return True;
-- Case of a parameter association: climb up to enclosing call
elsif Nkind (Parent (N)) = N_Parameter_Association then
return In_Assignment_Context (Parent (N));
-- Case of a selected component, indexed component or slice prefix:
-- climb up the tree, unless the prefix is of an access type (in
-- which case there is an implicit dereference, and the formal itself
-- is not being assigned to).
elsif Nkind (Parent (N)) in
N_Selected_Component | N_Indexed_Component | N_Slice
and then N = Prefix (Parent (N))
and then not Is_Access_Type (Etype (N))
and then In_Assignment_Context (Parent (N))
then
return True;
else
return False;
end if;
end In_Assignment_Context;
-- Start of processing for Expand_Entry_Parameter
begin
if Is_Task_Type (Scope (Ent_Spec))
and then Comes_From_Source (Ent_Formal)
then
-- Before replacing the formal with the local renaming that is used
-- in the accept block, note if this is an assignment context, and
-- note the modification to avoid spurious warnings, because the
-- original entity is not used further. If formal is unconstrained,
-- we also generate an extra parameter to hold the Constrained
-- attribute of the actual. No renaming is generated for this flag.
-- Calling Note_Possible_Modification in the expander is dubious,
-- because this generates a cross-reference entry, and should be
-- done during semantic processing so it is called in -gnatc mode???
if Ekind (Entity (N)) /= E_In_Parameter
and then In_Assignment_Context (N)
then
Note_Possible_Modification (N, Sure => True);
end if;
end if;
-- What we need is a reference to the corresponding component of the
-- parameter record object. The Accept_Address field of the entry entity
-- references the address variable that contains the address of the
-- accept parameters record. We first have to do an unchecked conversion
-- to turn this into a pointer to the parameter record and then we
-- select the required parameter field.
-- The same processing applies to protected entries, where the Accept_
-- Address is also the address of the Parameters record.
P_Comp_Ref :=
Make_Selected_Component (Loc,
Prefix =>
Make_Explicit_Dereference (Loc,
Unchecked_Convert_To (Parm_Type,
New_Occurrence_Of (Addr_Ent, Loc))),
Selector_Name =>
New_Occurrence_Of (Entry_Component (Ent_Formal), Loc));
-- For all types of parameters, the constructed parameter record object
-- contains a pointer to the parameter. Thus we must dereference them to
-- access them (this will often be redundant, since the dereference is
-- implicit, but no harm is done by making it explicit).
Rewrite (N,
Make_Explicit_Dereference (Loc, P_Comp_Ref));
Analyze (N);
end Expand_Entry_Parameter;
-------------------
-- Expand_Formal --
-------------------
procedure Expand_Formal (N : Node_Id) is
E : constant Entity_Id := Entity (N);
Scop : constant Entity_Id := Scope (E);
begin
-- Check whether the subprogram of which this is a formal is
-- a protected operation. The initialization procedure for
-- the corresponding record type is not itself a protected operation.
if Is_Protected_Type (Scope (Scop))
and then not Is_Init_Proc (Scop)
and then Present (Protected_Formal (E))
then
Set_Entity (N, Protected_Formal (E));
end if;
end Expand_Formal;
----------------------------
-- Expand_N_Expanded_Name --
----------------------------
procedure Expand_N_Expanded_Name (N : Node_Id) is
begin
Expand_Entity_Reference (N);
end Expand_N_Expanded_Name;
-------------------------
-- Expand_N_Identifier --
-------------------------
procedure Expand_N_Identifier (N : Node_Id) is
begin
Expand_Entity_Reference (N);
end Expand_N_Identifier;
---------------------------
-- Expand_N_Real_Literal --
---------------------------
procedure Expand_N_Real_Literal (N : Node_Id) is
pragma Unreferenced (N);
begin
-- Historically, this routine existed because there were expansion
-- requirements for Vax real literals, but now Vax real literals
-- are now handled by gigi, so this routine no longer does anything.
null;
end Expand_N_Real_Literal;
--------------------------------
-- Expand_Protected_Component --
--------------------------------
procedure Expand_Protected_Component (N : Node_Id) is
function Inside_Eliminated_Body return Boolean;
-- Determine whether the current entity is inside a subprogram or an
-- entry which has been marked as eliminated.
----------------------------
-- Inside_Eliminated_Body --
----------------------------
function Inside_Eliminated_Body return Boolean is
S : Entity_Id := Current_Scope;
begin
while Present (S) loop
if (Ekind (S) = E_Entry
or else Ekind (S) = E_Entry_Family
or else Ekind (S) = E_Function
or else Ekind (S) = E_Procedure)
and then Is_Eliminated (S)
then
return True;
end if;
S := Scope (S);
end loop;
return False;
end Inside_Eliminated_Body;
-- Start of processing for Expand_Protected_Component
begin
-- Eliminated bodies are not expanded and thus do not need privals
if not Inside_Eliminated_Body then
declare
Priv : constant Entity_Id := Prival (Entity (N));
begin
Set_Entity (N, Priv);
Set_Etype (N, Etype (Priv));
end;
end if;
end Expand_Protected_Component;
---------------------
-- Expand_Renaming --
---------------------
procedure Expand_Renaming (N : Node_Id) is
E : constant Entity_Id := Entity (N);
T : constant Entity_Id := Etype (N);
begin
Rewrite (N, New_Copy_Tree (Renamed_Object (E)));
-- We mark the copy as unanalyzed, so that it is sure to be reanalyzed
-- at the top level. This is needed in the packed case since we
-- specifically avoided expanding packed array references when the
-- renaming declaration was analyzed.
Reset_Analyzed_Flags (N);
Analyze_And_Resolve (N, T);
end Expand_Renaming;
------------------
-- Param_Entity --
------------------
-- This would be trivial, simply a test for an identifier that was a
-- reference to a formal, if it were not for the fact that a previous call
-- to Expand_Entry_Parameter will have modified the reference to the
-- identifier. A formal of a protected entity is rewritten as
-- typ!(recobj).rec.all'Constrained
-- where rec is a selector whose Entry_Formal link points to the formal
-- If the type of the entry parameter has a representation clause, then an
-- extra temp is involved (see below).
-- For a formal of a task entity, the formal is rewritten as a local
-- renaming.
-- In addition, a formal that is marked volatile because it is aliased
-- through an address clause is rewritten as dereference as well.
function Param_Entity (N : Node_Id) return Entity_Id is
Renamed_Obj : Node_Id;
begin
-- Simple reference case
if Nkind (N) in N_Identifier | N_Expanded_Name then
if Is_Formal (Entity (N)) then
return Entity (N);
-- Handle renamings of formal parameters and formals of tasks that
-- are rewritten as renamings.
elsif Nkind (Parent (Entity (N))) = N_Object_Renaming_Declaration then
Renamed_Obj := Get_Referenced_Object (Renamed_Object (Entity (N)));
if Is_Entity_Name (Renamed_Obj)
and then Is_Formal (Entity (Renamed_Obj))
then
return Entity (Renamed_Obj);
elsif
Nkind (Parent (Parent (Entity (N)))) = N_Accept_Statement
then
return Entity (N);
end if;
end if;
else
if Nkind (N) = N_Explicit_Dereference then
declare
P : Node_Id := Prefix (N);
S : Node_Id;
E : Entity_Id;
Decl : Node_Id;
begin
-- If the type of an entry parameter has a representation
-- clause, then the prefix is not a selected component, but
-- instead a reference to a temp pointing at the selected
-- component. In this case, set P to be the initial value of
-- that temp.
if Nkind (P) = N_Identifier then
E := Entity (P);
if Ekind (E) = E_Constant then
Decl := Parent (E);
if Nkind (Decl) = N_Object_Declaration then
P := Expression (Decl);
end if;
end if;
end if;
if Nkind (P) = N_Selected_Component then
S := Selector_Name (P);
if Present (Entry_Formal (Entity (S))) then
return Entry_Formal (Entity (S));
end if;
elsif Nkind (Original_Node (N)) = N_Identifier then
return Param_Entity (Original_Node (N));
end if;
end;
end if;
end if;
return (Empty);
end Param_Entity;
end Exp_Ch2;
|
with Ada.Text_IO; use Ada.Text_IO;
with Vecteurs; use Vecteurs;
with Courbes.Droites; use Courbes.Droites;
with Courbes.Singletons; use Courbes.Singletons;
with Courbes.Bezier_Cubiques; use Courbes.Bezier_Cubiques;
with Courbes.Bezier_Quadratiques; use Courbes.Bezier_Quadratiques;
with Helper; use Helper;
package body Parser_Svg is
procedure Charger_SVG(Nom_Fichier : String; L : out Liste) is
Iterateur : Iterateur_Mot;
begin
Debug("Lecture du fichier source " & Nom_Fichier);
Debug("Recherche ligne figure (marqueur: " & Marqueur_Ligne & ")");
declare
-- Obtention de la ligne "d="
Ligne_D : constant String :=
Helper.Fichier_Ligne_Commence_Par(
Nom_Fichier,
Marqueur_Ligne);
begin
-- Si on a pas trouvé de ligne
if Ligne_D'Length = 0 then
raise Courbe_Abs;
end if;
Debug("Figure trouvée");
-- On instancie l'itérateur mot à mot
Iterateur := Initialiser(Ligne_D, Separateur);
end;
Debug("Chargement figure");
-- Tant qu'on est pas à la fin
while not Fin(Iterateur) loop
declare
Op : Op_Code;
begin
-- Lecture d'un l'opcode
Lire_OpCode (Iterateur, Op);
-- Traitement de l'opcode
Gerer_OpCode (Iterateur, Op, L);
end;
end loop;
Debug("Figure chargée");
Debug;
Debug("||||||||||||||||||||||||||||||||||");
Debug;
end;
procedure Gerer_OpCode (
Iterateur : in out Iterateur_Mot;
Op : Op_Code;
L : in out Liste)
is
Offset_Relatif, Position_Courante : Point2D := (others => 0.0);
Mode_Relatif : constant Boolean := Op in Op_Code_Relative;
begin
Debug ("==================================");
Debug ("Gestion opcode " & Op_Code'Image(Op) & "; relatif=" & Boolean'Image(Mode_Relatif));
-- Boucle de lecture d'arguments
-- Tant qu'il y a des arguments pour l'opcode courant
-- on continue
loop
if Taille (L) /= 0 then
Position_Courante := Queue (L).Obtenir_Fin;
Debug("Position courante:");
Debug(To_String(Position_Courante));
end if;
if Mode_Relatif then
-- Dernier point de la dernière entrée de la liste
-- (position courante)
Offset_Relatif := Position_Courante;
Debug("Offset_Relatif = Position_Courante");
else
Debug("Offset_Relatif = 0");
end if;
case Op is
when 'M' | 'm' =>
declare
P : Point2D;
begin
Helper.Lire_Point2D(Iterateur, Separateur_Coord, P);
P := P + Offset_Relatif;
Insertion_Queue(L, new Singleton'(Ctor_Singleton(P)));
end;
when 'L' | 'l' =>
declare
P : Point2D;
begin
Helper.Lire_Point2D(Iterateur, Separateur_Coord, P);
P := P + Offset_Relatif;
Insertion_Queue (L, new Droite'(Ctor_Droite(Position_Courante, P)));
end;
when 'H' | 'h' =>
declare
P : Point2D := Offset_Relatif;
begin
P (P'First) := P (P'First) + Helper.Lire_Coord(Iterateur);
Insertion_Queue (L, new Droite'(Ctor_Droite(Position_Courante, P)));
end;
when 'V' | 'v' =>
declare
P : Point2D := Offset_Relatif;
begin
P (P'Last) := P (P'Last) + Helper.Lire_Coord(Iterateur);
Insertion_Queue (L, new Droite'(Ctor_Droite(Position_Courante, P)));
end;
when 'C' | 'c' =>
declare
C1, C2, P : Point2D;
begin
Helper.Lire_Point2D(Iterateur, Separateur_Coord, C1);
Helper.Lire_Point2D(Iterateur, Separateur_Coord, C2);
Helper.Lire_Point2D(Iterateur, Separateur_Coord, P);
C1 := C1 + Offset_Relatif;
C2 := C2 + Offset_Relatif;
P := P + Offset_Relatif;
Insertion_Queue (L, new Bezier_Cubique'(Ctor_Bezier_Cubique(Position_Courante, P, C1, C2)));
end;
when 'Q' | 'q' =>
declare
C, P : Point2D;
begin
Helper.Lire_Point2D(Iterateur, Separateur_Coord, C);
Helper.Lire_Point2D(Iterateur, Separateur_Coord, P);
C := C + Offset_Relatif;
P := P + Offset_Relatif;
Insertion_Queue (L, new Bezier_Quadratique'(Ctor_Bezier_Quadratique(Position_Courante, P, C)));
end;
end case;
Debug("Recherche arguments supplémentaires");
-- On look-ahead pour voir si on a encore des coordonnées
-- si on a on un opcode
exit when Mot_Suivant_Est_Op_Code_Ou_Vide (Iterateur);
Debug("++++++++++++++++++++++++++++++++++");
Debug("Arguments supplémentaires trouvés");
end loop;
Debug("Pas d'arguments en plus, rech. op code suivant");
end;
function Interpreter_Op_Code (Contenu : String; Op : in out Op_Code) return Boolean is
Last : Positive;
-- https://www2.adacore.com/gap-static/GNAT_Book/html/aarm/AA-A-10-10.html
package Op_Code_IO is new Enumeration_IO (Op_Code);
begin
-- On convertit la chaine en opcode
-- On ajoute des quotes pour que le parser sache
-- que c'est un enum caractère
Op_Code_IO.Get("'" & Contenu & "'", Op, Last);
return true;
exception
when Data_Error =>
-- Si opcode non supporté
return false;
end;
procedure Lire_OpCode (Iterateur : in out Iterateur_Mot; Op : out Op_Code) is
-- Obtient le mot suivant
Contenu : constant String := Avancer_Mot_Suivant(Iterateur);
begin
if Contenu'Length /= 1 then
-- L'opcode est composé d'une seule lettre
raise Courbe_Illisible with "Instruction SVG mal formée (longeur > 1): " & Contenu;
end if;
if not Interpreter_Op_Code (Contenu, Op) then
raise Courbe_Illisible with "Instruction SVG non supportée: " & Contenu & " " & Positive'Image(Contenu'Length);
end if;
end;
function Mot_Suivant_Est_Op_Code_Ou_Vide (
Iterateur : Iterateur_Mot)
return Boolean
is
Op : Op_Code;
-- Peek ahead sur la suite
Contenu_Suivant : constant String := Lire_Mot_Suivant (Iterateur);
begin
-- On sort si plus rien
if Contenu_Suivant'Length = 0 then
return true;
end if;
-- On a potentiellement un OpCode, on vérifie
-- Rappel : opcode = 1 caractère
if Contenu_Suivant'Length = 1 then
return Interpreter_Op_Code (Contenu_Suivant, Op);
end if;
return false;
end;
end;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2016, 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 body Matreshka.Spikedog_Deployment_Descriptors.Parsers is
use type League.Strings.Universal_String;
DD_Namespace_URI : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String
("http://forge.ada-ru.org/matreshka/xml/ns/spikedogdd");
Library_Name_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("library-name");
Servlet_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("servlet");
Servlet_Name_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("servlet-name");
Servlet_Mapping_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("servlet-mapping");
Servlet_Tag_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("servlet-tag");
URL_Pattern_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("url-pattern");
Web_App_Tag_Name : constant League.Strings.Universal_String
:= League.Strings.To_Universal_String ("web-app");
----------------
-- Characters --
----------------
overriding procedure Characters
(Self : in out Deployment_Descriptor_Parser;
Text : League.Strings.Universal_String;
Success : in out Boolean)
is
pragma Unreferenced (Success);
begin
case Self.State is
when Library_Name
| Servlet_Name
| Servlet_Tag
| URL_Pattern
=>
Self.Text.Append (Text);
when others =>
null;
end case;
end Characters;
-----------------
-- End_Element --
-----------------
overriding procedure End_Element
(Self : in out Deployment_Descriptor_Parser;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Success : in out Boolean)
is
pragma Unreferenced (Qualified_Name);
pragma Unreferenced (Success);
begin
if Namespace_URI = DD_Namespace_URI then
if Local_Name = Library_Name_Tag_Name then
Self.Descriptor.Library_Name := Self.Text;
Self.Text.Clear;
elsif Local_Name = Servlet_Tag_Name then
Self.Descriptor.Servlets.Append
((Name => Self.Servlet_Name,
Tag => Self.Servlet_Tag));
Self.Servlet_Name.Clear;
Self.Servlet_Tag.Clear;
elsif Local_Name = Servlet_Mapping_Tag_Name then
Self.Descriptor.Servlet_Mappings.Append
((Name => Self.Servlet_Name,
URL_Patterns => Self.URL_Patterns));
Self.Servlet_Name.Clear;
Self.URL_Patterns.Clear;
elsif Local_Name = Servlet_Name_Tag_Name then
Self.Servlet_Name := Self.Text;
Self.Text.Clear;
elsif Local_Name = Servlet_Tag_Tag_Name then
Self.Servlet_Tag := Self.Text;
Self.Text.Clear;
elsif Local_Name = URL_Pattern_Tag_Name then
Self.URL_Patterns.Append (Self.Text);
Self.Text.Clear;
end if;
end if;
Self.Pop;
end End_Element;
------------------
-- Error_String --
------------------
overriding function Error_String
(Self : Deployment_Descriptor_Parser)
return League.Strings.Universal_String is
begin
return Self.Diagnosis;
end Error_String;
--------------------------
-- Error_Unexpected_Tag --
--------------------------
procedure Error_Unexpected_Tag
(Self : in out Deployment_Descriptor_Parser;
Local_Name : League.Strings.Universal_String;
Success : out Boolean) is
begin
Self.Diagnosis := "Unexpected tag '" & Local_Name & ''';
Success := False;
end Error_Unexpected_Tag;
---------
-- Pop --
---------
procedure Pop (Self : in out Deployment_Descriptor_Parser) is
begin
Self.State := Self.Stack.Last_Element;
Self.Stack.Delete_Last;
end Pop;
----------
-- Push --
----------
procedure Push
(Self : in out Deployment_Descriptor_Parser;
State : States) is
begin
Self.Stack.Append (Self.State);
Self.State := State;
end Push;
-------------------------------
-- Set_Deployment_Descriptor --
-------------------------------
procedure Set_Deployment_Descriptor
(Self : in out Deployment_Descriptor_Parser'Class;
Descriptor : Deployment_Descriptor_Access) is
begin
Self.Descriptor := Descriptor;
end Set_Deployment_Descriptor;
--------------------
-- Start_Document --
--------------------
overriding procedure Start_Document
(Self : in out Deployment_Descriptor_Parser;
Success : in out Boolean)
is
pragma Unreferenced (Success);
begin
Self.State := Initial;
Self.Stack.Clear;
Self.Diagnosis.Clear;
Self.Text.Clear;
Self.Servlet_Name.Clear;
Self.Servlet_Tag.Clear;
Self.URL_Patterns.Clear;
end Start_Document;
-------------------
-- Start_Element --
-------------------
overriding procedure Start_Element
(Self : in out Deployment_Descriptor_Parser;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean)
is
pragma Unreferenced (Qualified_Name);
pragma Unreferenced (Attributes);
begin
if Namespace_URI = DD_Namespace_URI then
if Local_Name = Library_Name_Tag_Name then
if Self.State = Web_App then
Self.Push (Library_Name);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = Servlet_Tag_Name then
if Self.State = Web_App then
Self.Push (Servlet);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = Servlet_Mapping_Tag_Name then
if Self.State = Web_App then
Self.Push (Servlet_Mapping);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = Servlet_Name_Tag_Name then
if Self.State in Servlet | Servlet_Mapping then
Self.Push (Servlet_Name);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = Servlet_Tag_Tag_Name then
if Self.State = Servlet then
Self.Push (Servlet_Tag);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = URL_Pattern_Tag_Name then
if Self.State = Servlet_Mapping then
Self.Push (URL_Pattern);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
elsif Local_Name = Web_App_Tag_Name then
if Self.State = Initial then
Self.Push (Web_App);
else
Self.Error_Unexpected_Tag (Local_Name, Success);
return;
end if;
else
Self.Diagnosis := "Unknown tag '" & Local_Name & ''';
Success := False;
end if;
else
Self.Diagnosis := "Unknown namespace '" & Namespace_URI & ''';
Success := False;
end if;
end Start_Element;
end Matreshka.Spikedog_Deployment_Descriptors.Parsers;
|
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Elements.Formal_Type_Definitions;
with Program.Lexical_Elements;
package Program.Elements.Formal_Floating_Point_Definitions is
pragma Pure (Program.Elements.Formal_Floating_Point_Definitions);
type Formal_Floating_Point_Definition is
limited interface
and Program.Elements.Formal_Type_Definitions.Formal_Type_Definition;
type Formal_Floating_Point_Definition_Access is
access all Formal_Floating_Point_Definition'Class with Storage_Size => 0;
type Formal_Floating_Point_Definition_Text is limited interface;
type Formal_Floating_Point_Definition_Text_Access is
access all Formal_Floating_Point_Definition_Text'Class
with Storage_Size => 0;
not overriding function To_Formal_Floating_Point_Definition_Text
(Self : in out Formal_Floating_Point_Definition)
return Formal_Floating_Point_Definition_Text_Access is abstract;
not overriding function Digits_Token
(Self : Formal_Floating_Point_Definition_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Box_Token
(Self : Formal_Floating_Point_Definition_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Formal_Floating_Point_Definitions;
|
-- parse_args-testable.adb
-- A testable version of the Argument_Parser type
-- Copyright (c) 2016, 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.
pragma Profile(No_Implementation_Extensions);
package body Parse_Args.Testable is
------------------
-- Command_Name --
------------------
overriding function Command_Name (A : in Testable_Argument_Parser)
return String is
(To_String(A.Command_Name_Override));
--------------------
-- Argument_Count --
--------------------
overriding function Argument_Count (A : in Testable_Argument_Parser)
return Natural is
(Natural(A.Input_Arguments.Length));
--------------
-- Argument --
--------------
overriding function Argument (A : in Testable_Argument_Parser;
Number : in Positive)
return String is
(To_String(A.Input_Arguments(Number)));
---------------------
-- Clear_Arguments --
---------------------
not overriding procedure Clear_Arguments (A : in out Testable_Argument_Parser)
is
begin
A.Input_Arguments.Clear;
end Clear_Arguments;
---------------------
-- Append_Argument --
---------------------
not overriding procedure Append_Argument (A : in out Testable_Argument_Parser;
S : in String) is
begin
A.Input_Arguments.Append(To_Unbounded_String(S));
end Append_Argument;
----------------------
-- Append_Arguments --
----------------------
not overriding procedure Append_Arguments (A : in out Testable_Argument_Parser;
S : in Unbounded_String_Array) is
begin
for I of S loop
A.Input_Arguments.Append(I);
end loop;
end Append_Arguments;
----------------------
-- Set_Command_Name --
----------------------
not overriding procedure Set_Command_Name(A : in out Testable_Argument_Parser;
S : in String) is
begin
A.Command_Name_Override := To_Unbounded_String(S);
end Set_Command_Name;
end Parse_Args.Testable;
|
with STM32GD.USB.Peripheral;
with STM32GD.Drivers.CDC;
package Peripherals is
package USB is new STM32GD.USB.Peripheral (
EP0_Reset_Callback => STM32GD.Drivers.CDC.EP0_Reset,
EP0_Handler_Callback => STM32GD.Drivers.CDC.EP0_Handler);
end Peripherals;
|
<?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>dense_large_2</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>data_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>data.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>576</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>res_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>res.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>120</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_dense_large.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>276</lineNumber>
<contextFuncName>dense_large&lt;ap_fixed&lt;14, 2, 0, 0, 0&gt;, ap_fixed&lt;14, 2, 0, 0, 0&gt;, config11&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>firmware/nnet_utils/nnet_dense_large.h</first>
<second>dense_large&lt;ap_fixed&lt;14, 2, 0, 0, 0&gt;, ap_fixed&lt;14, 2, 0, 0, 0&gt;, config11&gt;</second>
</first>
<second>276</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_dense_large.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>280</lineNumber>
<contextFuncName>dense_large&lt;ap_fixed&lt;14, 2, 0, 0, 0&gt;, ap_fixed&lt;14, 2, 0, 0, 0&gt;, config11&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_dense_large.h</first>
<second>dense_large&lt;ap_fixed&lt;14, 2, 0, 0, 0&gt;, ap_fixed&lt;14, 2, 0, 0, 0&gt;, config11&gt;</second>
</first>
<second>280</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>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>2</type>
<id>8</id>
<name>dense_large_rf_gt_ni_4</name>
<fileName></fileName>
<fileDirectory></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><constant:dense_large_rf_gt_ni.4></content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_6">
<Obj>
<type>3</type>
<id>7</id>
<name>dense_large.2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>5</item>
<item>6</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_7">
<id>9</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_8">
<id>10</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_9">
<id>11</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_10">
<id>12</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_11">
<id>13</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_12">
<mId>1</mId>
<mTag>dense_large.2</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>553444</mMinLatency>
<mMaxLatency>2917348</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>2</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>5</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>6</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>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>7</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</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>
|
separate (Spec)
function Get_Number return Integer is
begin
return 42;
end Get_Number; |
-- Institution: Technische Universität München
-- Department: Realtime Computer Systems (RCS)
-- Project: StratoX
-- Module: Software Configuration
--
-- Authors: Martin Becker (becker@rcs.ei.tum.de)
with FM25v0x;
-- @summary
-- Target-specific types for the NVRAM in Pixracer V1.
package HIL.Devices.NVRAM with SPARK_Mode is
-- Pixracer has 256kbit FRAM
package FM25v02 is new FM25v0x (2**15);
subtype NVRAM_Address is FM25v02.Address;
end HIL.Devices.NVRAM;
|
------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $:
package body Asis.Gela.Base_Lists.Primary is
---------
-- Add --
---------
procedure Add
(Container : in out List_Node;
Item : in Element) is
begin
Check_Item_Kind (Item, Allowed);
Add (Primary_Base_List_Node (Container), Item);
end Add;
---------------
-- Add_After --
---------------
procedure Add_After
(Container : in out List_Node;
Target : in Element;
Item : in Element) is
begin
Check_Item_Kind (Item, Allowed);
Add_After (Primary_Base_List_Node (Container), Target, Item);
end Add_After;
-------------
-- Destroy --
-------------
procedure Destroy (Item : in out List) is
begin
ER_Element_Lists.Clear (Item.Content);
end Destroy;
---------------
-- Deep_Copy --
---------------
function Deep_Copy
(Items : in Asis.Element_List;
Cloner : in Cloner_Class;
Parent : in Asis.Element) return Asis.Element
is
Result : constant List := new List_Node;
Item : Asis.Element;
begin
for I in Items'Range loop
Item := Asis.Copy (Cloner, Items (I), Parent);
if Assigned (Item) then
Add (Result.all, Item);
end if;
end loop;
return Asis.Element (Result);
end Deep_Copy;
--------------
-- New_List --
--------------
function New_List (The_Context : ASIS.Context) return List is
Result : constant List := new List_Node;
begin
return Result;
end New_List;
---------------------
-- To_Element_List --
---------------------
function To_Element_List
(Item : List;
Include_Pragmas : Boolean)
return Asis.Element_List
is
begin
if Item = null then
return Nil_Element_List;
else
return To_Element_List (Item.all, Include_Pragmas);
end if;
end To_Element_List;
------------------------------
-- To_Compilation_Unit_List --
------------------------------
function To_Compilation_Unit_List
(Item : List)
return Asis.Compilation_Unit_List
is
begin
if Item = null then
return Nil_Compilation_Unit_List;
else
return To_Compilation_Unit_List (Item.all);
end if;
end To_Compilation_Unit_List;
end Asis.Gela.Base_Lists.Primary;
------------------------------------------------------------------------------
-- 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.
------------------------------------------------------------------------------
|
<?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>load</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>to_V_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>to.V.V</originalName>
<rtlName/>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>512</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>from_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>from.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<direction>0</direction>
<if_type>4</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>from_V_offset</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>coalesced_data_num</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>from_V_offset_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.21</m_delay>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>from_V_offset1_i</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>from_V_offset1_i_reg_178</rtlName>
<coreName/>
</Obj>
<bitwidth>26</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
<item>46</item>
<item>48</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>tmp_i</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_i_fu_153_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>from_V_addr</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>50</item>
<item>51</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>coalesced_data_num_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>53</item>
<item>54</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.21</m_delay>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9718</lineNumber>
<contextFuncName>jacobi2d_kernel</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</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>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9718</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>data_num</originalName>
<rtlName>tmp_fu_149_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>from_V_addr_i_rd_req</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>57</item>
<item>58</item>
<item>59</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.43</m_delay>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name/>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.60</m_delay>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>i_i_i_i</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>i_cast_i_i_i</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>i_cast_i_i_i_fu_163_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>tmp_i_i_i</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_i_i_i_fu_167_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>67</item>
<item>68</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.85</m_delay>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>i</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName>i_fu_172_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>69</item>
<item>71</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.87</m_delay>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name/>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>72</item>
<item>73</item>
<item>74</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_V</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>76</item>
<item>77</item>
<item>288</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>2.43</m_delay>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>empty</name>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>79</item>
<item>80</item>
<item>81</item>
</oprand_edges>
<opcode>nbwrite</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>1.21</m_delay>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name/>
<fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>jacobi2d_kernel</second>
</first>
<second>9721</second>
</item>
<item>
<first>
<first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first>
<second>load</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_delay>0.00</m_delay>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_22">
<Value>
<Obj>
<type>2</type>
<id>45</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_23">
<Value>
<Obj>
<type>2</type>
<id>47</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_24">
<Value>
<Obj>
<type>2</type>
<id>61</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>31</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_25">
<Value>
<Obj>
<type>2</type>
<id>70</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>31</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_26">
<Obj>
<type>3</type>
<id>22</id>
<name>entry</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>17</item>
<item>18</item>
<item>20</item>
<item>21</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_27">
<Obj>
<type>3</type>
<id>28</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_28">
<Obj>
<type>3</type>
<id>36</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>32</item>
<item>33</item>
<item>35</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_29">
<Obj>
<type>3</type>
<id>38</id>
<name>.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>1</count>
<item_version>0</item_version>
<item>37</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>33</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_30">
<id>41</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_31">
<id>44</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_32">
<id>46</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_33">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_34">
<id>49</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="_35">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_36">
<id>51</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="_37">
<id>54</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_38">
<id>55</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="_39">
<id>58</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_40">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_41">
<id>60</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_42">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_43">
<id>63</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_44">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_45">
<id>65</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>66</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<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="_50">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>73</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>74</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_56">
<id>81</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="_57">
<id>82</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>284</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_59">
<id>285</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_60">
<id>286</id>
<edge_type>2</edge_type>
<source_obj>28</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>287</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>288</id>
<edge_type>4</edge_type>
<source_obj>20</source_obj>
<sink_obj>32</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="_63">
<mId>1</mId>
<mTag>load</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_64">
<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>22</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>126</mMinLatency>
<mMaxLatency>126</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_65">
<mId>3</mId>
<mTag>load_epoch</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>28</item>
<item>36</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_66">
<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>38</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="_67">
<states class_id="25" tracking_level="0" version="0">
<count>131</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_68">
<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="_69">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_70">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_71">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_72">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_73">
<id>2</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_74">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_75">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_76">
<id>20</id>
<stage>126</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_77">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_78">
<id>20</id>
<stage>125</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_79">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_80">
<id>20</id>
<stage>124</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_81">
<id>5</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_82">
<id>20</id>
<stage>123</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_83">
<id>6</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_84">
<id>20</id>
<stage>122</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_85">
<id>7</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_86">
<id>20</id>
<stage>121</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_87">
<id>8</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_88">
<id>20</id>
<stage>120</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_89">
<id>9</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_90">
<id>20</id>
<stage>119</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_91">
<id>10</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_92">
<id>20</id>
<stage>118</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_93">
<id>11</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_94">
<id>20</id>
<stage>117</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_95">
<id>12</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_96">
<id>20</id>
<stage>116</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_97">
<id>13</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_98">
<id>20</id>
<stage>115</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_99">
<id>14</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_100">
<id>20</id>
<stage>114</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_101">
<id>15</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_102">
<id>20</id>
<stage>113</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_103">
<id>16</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_104">
<id>20</id>
<stage>112</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_105">
<id>17</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_106">
<id>20</id>
<stage>111</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_107">
<id>18</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_108">
<id>20</id>
<stage>110</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_109">
<id>19</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_110">
<id>20</id>
<stage>109</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_111">
<id>20</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_112">
<id>20</id>
<stage>108</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_113">
<id>21</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_114">
<id>20</id>
<stage>107</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_115">
<id>22</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_116">
<id>20</id>
<stage>106</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_117">
<id>23</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_118">
<id>20</id>
<stage>105</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_119">
<id>24</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_120">
<id>20</id>
<stage>104</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_121">
<id>25</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_122">
<id>20</id>
<stage>103</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_123">
<id>26</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_124">
<id>20</id>
<stage>102</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_125">
<id>27</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_126">
<id>20</id>
<stage>101</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_127">
<id>28</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_128">
<id>20</id>
<stage>100</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_129">
<id>29</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_130">
<id>20</id>
<stage>99</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_131">
<id>30</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_132">
<id>20</id>
<stage>98</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_133">
<id>31</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_134">
<id>20</id>
<stage>97</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_135">
<id>32</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_136">
<id>20</id>
<stage>96</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_137">
<id>33</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_138">
<id>20</id>
<stage>95</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_139">
<id>34</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_140">
<id>20</id>
<stage>94</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_141">
<id>35</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_142">
<id>20</id>
<stage>93</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_143">
<id>36</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_144">
<id>20</id>
<stage>92</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_145">
<id>37</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_146">
<id>20</id>
<stage>91</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_147">
<id>38</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_148">
<id>20</id>
<stage>90</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_149">
<id>39</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_150">
<id>20</id>
<stage>89</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_151">
<id>40</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_152">
<id>20</id>
<stage>88</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_153">
<id>41</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_154">
<id>20</id>
<stage>87</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_155">
<id>42</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_156">
<id>20</id>
<stage>86</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_157">
<id>43</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_158">
<id>20</id>
<stage>85</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_159">
<id>44</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_160">
<id>20</id>
<stage>84</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_161">
<id>45</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_162">
<id>20</id>
<stage>83</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_163">
<id>46</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_164">
<id>20</id>
<stage>82</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_165">
<id>47</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_166">
<id>20</id>
<stage>81</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_167">
<id>48</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_168">
<id>20</id>
<stage>80</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_169">
<id>49</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_170">
<id>20</id>
<stage>79</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_171">
<id>50</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_172">
<id>20</id>
<stage>78</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_173">
<id>51</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_174">
<id>20</id>
<stage>77</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_175">
<id>52</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_176">
<id>20</id>
<stage>76</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_177">
<id>53</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_178">
<id>20</id>
<stage>75</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_179">
<id>54</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_180">
<id>20</id>
<stage>74</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_181">
<id>55</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_182">
<id>20</id>
<stage>73</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_183">
<id>56</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_184">
<id>20</id>
<stage>72</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_185">
<id>57</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_186">
<id>20</id>
<stage>71</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_187">
<id>58</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_188">
<id>20</id>
<stage>70</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_189">
<id>59</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_190">
<id>20</id>
<stage>69</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_191">
<id>60</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_192">
<id>20</id>
<stage>68</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_193">
<id>61</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_194">
<id>20</id>
<stage>67</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_195">
<id>62</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_196">
<id>20</id>
<stage>66</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_197">
<id>63</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_198">
<id>20</id>
<stage>65</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_199">
<id>64</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_200">
<id>20</id>
<stage>64</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_201">
<id>65</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_202">
<id>20</id>
<stage>63</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_203">
<id>66</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_204">
<id>20</id>
<stage>62</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_205">
<id>67</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_206">
<id>20</id>
<stage>61</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_207">
<id>68</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_208">
<id>20</id>
<stage>60</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_209">
<id>69</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_210">
<id>20</id>
<stage>59</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_211">
<id>70</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_212">
<id>20</id>
<stage>58</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_213">
<id>71</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_214">
<id>20</id>
<stage>57</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_215">
<id>72</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_216">
<id>20</id>
<stage>56</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_217">
<id>73</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_218">
<id>20</id>
<stage>55</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_219">
<id>74</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_220">
<id>20</id>
<stage>54</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_221">
<id>75</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_222">
<id>20</id>
<stage>53</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_223">
<id>76</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_224">
<id>20</id>
<stage>52</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_225">
<id>77</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_226">
<id>20</id>
<stage>51</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_227">
<id>78</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_228">
<id>20</id>
<stage>50</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_229">
<id>79</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_230">
<id>20</id>
<stage>49</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_231">
<id>80</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_232">
<id>20</id>
<stage>48</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_233">
<id>81</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_234">
<id>20</id>
<stage>47</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_235">
<id>82</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_236">
<id>20</id>
<stage>46</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_237">
<id>83</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_238">
<id>20</id>
<stage>45</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_239">
<id>84</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_240">
<id>20</id>
<stage>44</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_241">
<id>85</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_242">
<id>20</id>
<stage>43</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_243">
<id>86</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_244">
<id>20</id>
<stage>42</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_245">
<id>87</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_246">
<id>20</id>
<stage>41</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_247">
<id>88</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_248">
<id>20</id>
<stage>40</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_249">
<id>89</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_250">
<id>20</id>
<stage>39</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_251">
<id>90</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_252">
<id>20</id>
<stage>38</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_253">
<id>91</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_254">
<id>20</id>
<stage>37</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_255">
<id>92</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_256">
<id>20</id>
<stage>36</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_257">
<id>93</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_258">
<id>20</id>
<stage>35</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_259">
<id>94</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_260">
<id>20</id>
<stage>34</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_261">
<id>95</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_262">
<id>20</id>
<stage>33</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_263">
<id>96</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_264">
<id>20</id>
<stage>32</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_265">
<id>97</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_266">
<id>20</id>
<stage>31</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_267">
<id>98</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_268">
<id>20</id>
<stage>30</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_269">
<id>99</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_270">
<id>20</id>
<stage>29</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_271">
<id>100</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_272">
<id>20</id>
<stage>28</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_273">
<id>101</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_274">
<id>20</id>
<stage>27</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_275">
<id>102</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_276">
<id>20</id>
<stage>26</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_277">
<id>103</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_278">
<id>20</id>
<stage>25</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_279">
<id>104</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_280">
<id>20</id>
<stage>24</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_281">
<id>105</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_282">
<id>20</id>
<stage>23</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_283">
<id>106</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_284">
<id>20</id>
<stage>22</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_285">
<id>107</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_286">
<id>20</id>
<stage>21</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_287">
<id>108</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_288">
<id>20</id>
<stage>20</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_289">
<id>109</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_290">
<id>20</id>
<stage>19</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_291">
<id>110</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_292">
<id>20</id>
<stage>18</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_293">
<id>111</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_294">
<id>20</id>
<stage>17</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_295">
<id>112</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_296">
<id>20</id>
<stage>16</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_297">
<id>113</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_298">
<id>20</id>
<stage>15</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_299">
<id>114</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_300">
<id>20</id>
<stage>14</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_301">
<id>115</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_302">
<id>20</id>
<stage>13</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_303">
<id>116</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_304">
<id>20</id>
<stage>12</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_305">
<id>117</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_306">
<id>20</id>
<stage>11</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_307">
<id>118</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_308">
<id>20</id>
<stage>10</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_309">
<id>119</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_310">
<id>20</id>
<stage>9</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_311">
<id>120</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_312">
<id>20</id>
<stage>8</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_313">
<id>121</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_314">
<id>20</id>
<stage>7</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_315">
<id>122</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_316">
<id>20</id>
<stage>6</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_317">
<id>123</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_318">
<id>20</id>
<stage>5</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_319">
<id>124</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_320">
<id>20</id>
<stage>4</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_321">
<id>125</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_322">
<id>20</id>
<stage>3</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_323">
<id>126</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_324">
<id>20</id>
<stage>2</stage>
<latency>126</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_325">
<id>127</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_326">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_327">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_328">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_329">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_330">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_331">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_332">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_333">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_334">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_335">
<id>20</id>
<stage>1</stage>
<latency>126</latency>
</item>
<item class_id_reference="28" object_id="_336">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_337">
<id>128</id>
<operations>
<count>5</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_338">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_339">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_340">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_341">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_342">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_343">
<id>129</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_344">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_345">
<id>130</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_346">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_347">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_348">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_349">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_350">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_351">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_352">
<id>131</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_353">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>131</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_354">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>137</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="_355">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>138</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_356">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>139</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_357">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>140</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_358">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>141</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_359">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>142</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_360">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>143</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_361">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>144</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_362">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>145</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_363">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>146</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_364">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>147</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_365">
<inState>12</inState>
<outState>13</outState>
<condition>
<id>148</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_366">
<inState>13</inState>
<outState>14</outState>
<condition>
<id>149</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_367">
<inState>14</inState>
<outState>15</outState>
<condition>
<id>150</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_368">
<inState>15</inState>
<outState>16</outState>
<condition>
<id>151</id>
<sop>
<count>1</count>
<item_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>16</inState>
<outState>17</outState>
<condition>
<id>152</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_370">
<inState>17</inState>
<outState>18</outState>
<condition>
<id>153</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_371">
<inState>18</inState>
<outState>19</outState>
<condition>
<id>154</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_372">
<inState>19</inState>
<outState>20</outState>
<condition>
<id>155</id>
<sop>
<count>1</count>
<item_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>20</inState>
<outState>21</outState>
<condition>
<id>156</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_374">
<inState>21</inState>
<outState>22</outState>
<condition>
<id>157</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_375">
<inState>22</inState>
<outState>23</outState>
<condition>
<id>158</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_376">
<inState>23</inState>
<outState>24</outState>
<condition>
<id>159</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_377">
<inState>24</inState>
<outState>25</outState>
<condition>
<id>160</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_378">
<inState>25</inState>
<outState>26</outState>
<condition>
<id>161</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_379">
<inState>26</inState>
<outState>27</outState>
<condition>
<id>162</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_380">
<inState>27</inState>
<outState>28</outState>
<condition>
<id>163</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_381">
<inState>28</inState>
<outState>29</outState>
<condition>
<id>164</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_382">
<inState>29</inState>
<outState>30</outState>
<condition>
<id>165</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_383">
<inState>30</inState>
<outState>31</outState>
<condition>
<id>166</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_384">
<inState>31</inState>
<outState>32</outState>
<condition>
<id>167</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_385">
<inState>32</inState>
<outState>33</outState>
<condition>
<id>168</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_386">
<inState>33</inState>
<outState>34</outState>
<condition>
<id>169</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_387">
<inState>34</inState>
<outState>35</outState>
<condition>
<id>170</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_388">
<inState>35</inState>
<outState>36</outState>
<condition>
<id>171</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_389">
<inState>36</inState>
<outState>37</outState>
<condition>
<id>172</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_390">
<inState>37</inState>
<outState>38</outState>
<condition>
<id>173</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_391">
<inState>38</inState>
<outState>39</outState>
<condition>
<id>174</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_392">
<inState>39</inState>
<outState>40</outState>
<condition>
<id>175</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_393">
<inState>40</inState>
<outState>41</outState>
<condition>
<id>176</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_394">
<inState>41</inState>
<outState>42</outState>
<condition>
<id>177</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_395">
<inState>42</inState>
<outState>43</outState>
<condition>
<id>178</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_396">
<inState>43</inState>
<outState>44</outState>
<condition>
<id>179</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_397">
<inState>44</inState>
<outState>45</outState>
<condition>
<id>180</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_398">
<inState>45</inState>
<outState>46</outState>
<condition>
<id>181</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_399">
<inState>46</inState>
<outState>47</outState>
<condition>
<id>182</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_400">
<inState>47</inState>
<outState>48</outState>
<condition>
<id>183</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_401">
<inState>48</inState>
<outState>49</outState>
<condition>
<id>184</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_402">
<inState>49</inState>
<outState>50</outState>
<condition>
<id>185</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_403">
<inState>50</inState>
<outState>51</outState>
<condition>
<id>186</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_404">
<inState>51</inState>
<outState>52</outState>
<condition>
<id>187</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_405">
<inState>52</inState>
<outState>53</outState>
<condition>
<id>188</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_406">
<inState>53</inState>
<outState>54</outState>
<condition>
<id>189</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_407">
<inState>54</inState>
<outState>55</outState>
<condition>
<id>190</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_408">
<inState>55</inState>
<outState>56</outState>
<condition>
<id>191</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_409">
<inState>56</inState>
<outState>57</outState>
<condition>
<id>192</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_410">
<inState>57</inState>
<outState>58</outState>
<condition>
<id>193</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_411">
<inState>58</inState>
<outState>59</outState>
<condition>
<id>194</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_412">
<inState>59</inState>
<outState>60</outState>
<condition>
<id>195</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_413">
<inState>60</inState>
<outState>61</outState>
<condition>
<id>196</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_414">
<inState>61</inState>
<outState>62</outState>
<condition>
<id>197</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_415">
<inState>62</inState>
<outState>63</outState>
<condition>
<id>198</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_416">
<inState>63</inState>
<outState>64</outState>
<condition>
<id>199</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_417">
<inState>64</inState>
<outState>65</outState>
<condition>
<id>200</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_418">
<inState>65</inState>
<outState>66</outState>
<condition>
<id>201</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_419">
<inState>66</inState>
<outState>67</outState>
<condition>
<id>202</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_420">
<inState>67</inState>
<outState>68</outState>
<condition>
<id>203</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_421">
<inState>68</inState>
<outState>69</outState>
<condition>
<id>204</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_422">
<inState>69</inState>
<outState>70</outState>
<condition>
<id>205</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_423">
<inState>70</inState>
<outState>71</outState>
<condition>
<id>206</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_424">
<inState>71</inState>
<outState>72</outState>
<condition>
<id>207</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_425">
<inState>72</inState>
<outState>73</outState>
<condition>
<id>208</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_426">
<inState>73</inState>
<outState>74</outState>
<condition>
<id>209</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_427">
<inState>74</inState>
<outState>75</outState>
<condition>
<id>210</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_428">
<inState>75</inState>
<outState>76</outState>
<condition>
<id>211</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_429">
<inState>76</inState>
<outState>77</outState>
<condition>
<id>212</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_430">
<inState>77</inState>
<outState>78</outState>
<condition>
<id>213</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_431">
<inState>78</inState>
<outState>79</outState>
<condition>
<id>214</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_432">
<inState>79</inState>
<outState>80</outState>
<condition>
<id>215</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_433">
<inState>80</inState>
<outState>81</outState>
<condition>
<id>216</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_434">
<inState>81</inState>
<outState>82</outState>
<condition>
<id>217</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_435">
<inState>82</inState>
<outState>83</outState>
<condition>
<id>218</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_436">
<inState>83</inState>
<outState>84</outState>
<condition>
<id>219</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_437">
<inState>84</inState>
<outState>85</outState>
<condition>
<id>220</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_438">
<inState>85</inState>
<outState>86</outState>
<condition>
<id>221</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_439">
<inState>86</inState>
<outState>87</outState>
<condition>
<id>222</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_440">
<inState>87</inState>
<outState>88</outState>
<condition>
<id>223</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_441">
<inState>88</inState>
<outState>89</outState>
<condition>
<id>224</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_442">
<inState>89</inState>
<outState>90</outState>
<condition>
<id>225</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_443">
<inState>90</inState>
<outState>91</outState>
<condition>
<id>226</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_444">
<inState>91</inState>
<outState>92</outState>
<condition>
<id>227</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_445">
<inState>92</inState>
<outState>93</outState>
<condition>
<id>228</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_446">
<inState>93</inState>
<outState>94</outState>
<condition>
<id>229</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_447">
<inState>94</inState>
<outState>95</outState>
<condition>
<id>230</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_448">
<inState>95</inState>
<outState>96</outState>
<condition>
<id>231</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_449">
<inState>96</inState>
<outState>97</outState>
<condition>
<id>232</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_450">
<inState>97</inState>
<outState>98</outState>
<condition>
<id>233</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_451">
<inState>98</inState>
<outState>99</outState>
<condition>
<id>234</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_452">
<inState>99</inState>
<outState>100</outState>
<condition>
<id>235</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_453">
<inState>100</inState>
<outState>101</outState>
<condition>
<id>236</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_454">
<inState>101</inState>
<outState>102</outState>
<condition>
<id>237</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_455">
<inState>102</inState>
<outState>103</outState>
<condition>
<id>238</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_456">
<inState>103</inState>
<outState>104</outState>
<condition>
<id>239</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_457">
<inState>104</inState>
<outState>105</outState>
<condition>
<id>240</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_458">
<inState>105</inState>
<outState>106</outState>
<condition>
<id>241</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_459">
<inState>106</inState>
<outState>107</outState>
<condition>
<id>242</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_460">
<inState>107</inState>
<outState>108</outState>
<condition>
<id>243</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_461">
<inState>108</inState>
<outState>109</outState>
<condition>
<id>244</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_462">
<inState>109</inState>
<outState>110</outState>
<condition>
<id>245</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_463">
<inState>110</inState>
<outState>111</outState>
<condition>
<id>246</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_464">
<inState>111</inState>
<outState>112</outState>
<condition>
<id>247</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_465">
<inState>112</inState>
<outState>113</outState>
<condition>
<id>248</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_466">
<inState>113</inState>
<outState>114</outState>
<condition>
<id>249</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_467">
<inState>114</inState>
<outState>115</outState>
<condition>
<id>250</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_468">
<inState>115</inState>
<outState>116</outState>
<condition>
<id>251</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_469">
<inState>116</inState>
<outState>117</outState>
<condition>
<id>252</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_470">
<inState>117</inState>
<outState>118</outState>
<condition>
<id>253</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_471">
<inState>118</inState>
<outState>119</outState>
<condition>
<id>254</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_472">
<inState>119</inState>
<outState>120</outState>
<condition>
<id>255</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_473">
<inState>120</inState>
<outState>121</outState>
<condition>
<id>256</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_474">
<inState>121</inState>
<outState>122</outState>
<condition>
<id>257</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_475">
<inState>122</inState>
<outState>123</outState>
<condition>
<id>258</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_476">
<inState>123</inState>
<outState>124</outState>
<condition>
<id>259</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_477">
<inState>124</inState>
<outState>125</outState>
<condition>
<id>260</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_478">
<inState>125</inState>
<outState>126</outState>
<condition>
<id>261</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_479">
<inState>126</inState>
<outState>127</outState>
<condition>
<id>262</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_480">
<inState>127</inState>
<outState>128</outState>
<condition>
<id>264</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_481">
<inState>129</inState>
<outState>130</outState>
<condition>
<id>272</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_482">
<inState>130</inState>
<outState>128</outState>
<condition>
<id>273</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_483">
<inState>128</inState>
<outState>131</outState>
<condition>
<id>271</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>25</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_484">
<inState>128</inState>
<outState>129</outState>
<condition>
<id>274</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>25</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="_485">
<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>7</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>ap_block_pp0_stage0_01001 ( and ) </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_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>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state129_pp0_stage0_iter1 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_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_fu_172_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>31</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>38</second>
</item>
</second>
</item>
<item>
<first>tmp_i_i_i_fu_167_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>20</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>10</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>130</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>130</second>
</item>
<item>
<first>LUT</first>
<second>585</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>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter2</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_sig_ioackin_m_axi_from_V_ARREADY</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>coalesced_data_num_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>from_V_blk_n_AR</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>from_V_blk_n_R</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>from_V_offset_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>i_i_i_i_reg_128</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>31</second>
</item>
<item>
<first>(2Count)</first>
<second>62</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>129</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>129</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>ap_enable_reg_pp0_iter2</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_reg_ioackin_m_axi_from_V_ARREADY</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>from_V_offset1_i_reg_178</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>26</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>26</second>
</item>
</second>
</item>
<item>
<first>i_i_i_i_reg_128</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>31</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>31</second>
</item>
</second>
</item>
<item>
<first>tmp_V_reg_204</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>512</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>512</second>
</item>
</second>
</item>
<item>
<first>tmp_i_i_i_reg_195</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_i_i_i_reg_195_pp0_iter1_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_reg_183</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_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>2</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>i_fu_172_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_i_i_i_fu_167_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</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>17</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>10</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>125</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>126</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>127</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>127</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>127</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>127</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>127</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>128</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>129</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>129</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>130</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>22</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>126</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>127</first>
<second>127</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>128</first>
<second>129</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>128</first>
<second>128</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="_486">
<region_name>load_epoch</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>28</item>
<item>36</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="51" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>98</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>104</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>110</first>
<second>
<count>126</count>
<item_version>0</item_version>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
</second>
</item>
<item>
<first>116</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>153</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>163</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>from_V_addr_fu_156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>from_V_offset1_i_fu_139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>i_cast_i_i_i_fu_163</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>i_fu_172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>i_i_i_i_phi_fu_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>tmp_fu_149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_i_fu_153</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>tmp_i_i_i_fu_167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</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>5</count>
<item_version>0</item_version>
<item>
<first>coalesced_data_num_read_read_fu_104</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>empty_nbwrite_fu_121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>from_V_offset_read_read_fu_98</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>grp_readreq_fu_110</first>
<second>
<count>126</count>
<item_version>0</item_version>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
<item>20</item>
</second>
</item>
<item>
<first>tmp_V_read_fu_116</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</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>7</count>
<item_version>0</item_version>
<item>
<first>128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>189</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>7</count>
<item_version>0</item_version>
<item>
<first>from_V_addr_reg_189</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>from_V_offset1_i_reg_178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>i_i_i_i_reg_128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>i_reg_199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_V_reg_204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>tmp_i_i_i_reg_195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>tmp_reg_183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>i_i_i_i_reg_128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="57" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>coalesced_data_num</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
</second>
</item>
<item>
<first>from_V</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>from_V_offset</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
</second>
</item>
<item>
<first>to_V_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>nbwrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="59" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>1</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>3</first>
<second>FIFO</second>
</item>
<item>
<first>4</first>
<second>FIFO</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . C H A R A C T E R S . W I D E _ L A T I N _ 9 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides definitions analogous to those in the GNAT
-- package Ada.Characters.Latin_9 except that the type of the constants
-- is Wide_Character instead of Character. The provision of this package
-- is in accordance with the implementation permission in RM (A.3.3(27)).
package Ada.Characters.Wide_Latin_9 is
pragma Pure;
------------------------
-- Control Characters --
------------------------
NUL : constant Wide_Character := Wide_Character'Val (0);
SOH : constant Wide_Character := Wide_Character'Val (1);
STX : constant Wide_Character := Wide_Character'Val (2);
ETX : constant Wide_Character := Wide_Character'Val (3);
EOT : constant Wide_Character := Wide_Character'Val (4);
ENQ : constant Wide_Character := Wide_Character'Val (5);
ACK : constant Wide_Character := Wide_Character'Val (6);
BEL : constant Wide_Character := Wide_Character'Val (7);
BS : constant Wide_Character := Wide_Character'Val (8);
HT : constant Wide_Character := Wide_Character'Val (9);
LF : constant Wide_Character := Wide_Character'Val (10);
VT : constant Wide_Character := Wide_Character'Val (11);
FF : constant Wide_Character := Wide_Character'Val (12);
CR : constant Wide_Character := Wide_Character'Val (13);
SO : constant Wide_Character := Wide_Character'Val (14);
SI : constant Wide_Character := Wide_Character'Val (15);
DLE : constant Wide_Character := Wide_Character'Val (16);
DC1 : constant Wide_Character := Wide_Character'Val (17);
DC2 : constant Wide_Character := Wide_Character'Val (18);
DC3 : constant Wide_Character := Wide_Character'Val (19);
DC4 : constant Wide_Character := Wide_Character'Val (20);
NAK : constant Wide_Character := Wide_Character'Val (21);
SYN : constant Wide_Character := Wide_Character'Val (22);
ETB : constant Wide_Character := Wide_Character'Val (23);
CAN : constant Wide_Character := Wide_Character'Val (24);
EM : constant Wide_Character := Wide_Character'Val (25);
SUB : constant Wide_Character := Wide_Character'Val (26);
ESC : constant Wide_Character := Wide_Character'Val (27);
FS : constant Wide_Character := Wide_Character'Val (28);
GS : constant Wide_Character := Wide_Character'Val (29);
RS : constant Wide_Character := Wide_Character'Val (30);
US : constant Wide_Character := Wide_Character'Val (31);
-------------------------------------
-- ISO 646 Graphic Wide_Characters --
-------------------------------------
Space : constant Wide_Character := ' '; -- WC'Val(32)
Exclamation : constant Wide_Character := '!'; -- WC'Val(33)
Quotation : constant Wide_Character := '"'; -- WC'Val(34)
Number_Sign : constant Wide_Character := '#'; -- WC'Val(35)
Dollar_Sign : constant Wide_Character := '$'; -- WC'Val(36)
Percent_Sign : constant Wide_Character := '%'; -- WC'Val(37)
Ampersand : constant Wide_Character := '&'; -- WC'Val(38)
Apostrophe : constant Wide_Character := '''; -- WC'Val(39)
Left_Parenthesis : constant Wide_Character := '('; -- WC'Val(40)
Right_Parenthesis : constant Wide_Character := ')'; -- WC'Val(41)
Asterisk : constant Wide_Character := '*'; -- WC'Val(42)
Plus_Sign : constant Wide_Character := '+'; -- WC'Val(43)
Comma : constant Wide_Character := ','; -- WC'Val(44)
Hyphen : constant Wide_Character := '-'; -- WC'Val(45)
Minus_Sign : Wide_Character renames Hyphen;
Full_Stop : constant Wide_Character := '.'; -- WC'Val(46)
Solidus : constant Wide_Character := '/'; -- WC'Val(47)
-- Decimal digits '0' though '9' are at positions 48 through 57
Colon : constant Wide_Character := ':'; -- WC'Val(58)
Semicolon : constant Wide_Character := ';'; -- WC'Val(59)
Less_Than_Sign : constant Wide_Character := '<'; -- WC'Val(60)
Equals_Sign : constant Wide_Character := '='; -- WC'Val(61)
Greater_Than_Sign : constant Wide_Character := '>'; -- WC'Val(62)
Question : constant Wide_Character := '?'; -- WC'Val(63)
Commercial_At : constant Wide_Character := '@'; -- WC'Val(64)
-- Letters 'A' through 'Z' are at positions 65 through 90
Left_Square_Bracket : constant Wide_Character := '['; -- WC'Val (91)
Reverse_Solidus : constant Wide_Character := '\'; -- WC'Val (92)
Right_Square_Bracket : constant Wide_Character := ']'; -- WC'Val (93)
Circumflex : constant Wide_Character := '^'; -- WC'Val (94)
Low_Line : constant Wide_Character := '_'; -- WC'Val (95)
Grave : constant Wide_Character := '`'; -- WC'Val (96)
LC_A : constant Wide_Character := 'a'; -- WC'Val (97)
LC_B : constant Wide_Character := 'b'; -- WC'Val (98)
LC_C : constant Wide_Character := 'c'; -- WC'Val (99)
LC_D : constant Wide_Character := 'd'; -- WC'Val (100)
LC_E : constant Wide_Character := 'e'; -- WC'Val (101)
LC_F : constant Wide_Character := 'f'; -- WC'Val (102)
LC_G : constant Wide_Character := 'g'; -- WC'Val (103)
LC_H : constant Wide_Character := 'h'; -- WC'Val (104)
LC_I : constant Wide_Character := 'i'; -- WC'Val (105)
LC_J : constant Wide_Character := 'j'; -- WC'Val (106)
LC_K : constant Wide_Character := 'k'; -- WC'Val (107)
LC_L : constant Wide_Character := 'l'; -- WC'Val (108)
LC_M : constant Wide_Character := 'm'; -- WC'Val (109)
LC_N : constant Wide_Character := 'n'; -- WC'Val (110)
LC_O : constant Wide_Character := 'o'; -- WC'Val (111)
LC_P : constant Wide_Character := 'p'; -- WC'Val (112)
LC_Q : constant Wide_Character := 'q'; -- WC'Val (113)
LC_R : constant Wide_Character := 'r'; -- WC'Val (114)
LC_S : constant Wide_Character := 's'; -- WC'Val (115)
LC_T : constant Wide_Character := 't'; -- WC'Val (116)
LC_U : constant Wide_Character := 'u'; -- WC'Val (117)
LC_V : constant Wide_Character := 'v'; -- WC'Val (118)
LC_W : constant Wide_Character := 'w'; -- WC'Val (119)
LC_X : constant Wide_Character := 'x'; -- WC'Val (120)
LC_Y : constant Wide_Character := 'y'; -- WC'Val (121)
LC_Z : constant Wide_Character := 'z'; -- WC'Val (122)
Left_Curly_Bracket : constant Wide_Character := '{'; -- WC'Val (123)
Vertical_Line : constant Wide_Character := '|'; -- WC'Val (124)
Right_Curly_Bracket : constant Wide_Character := '}'; -- WC'Val (125)
Tilde : constant Wide_Character := '~'; -- WC'Val (126)
DEL : constant Wide_Character := Wide_Character'Val (127);
--------------------------------------
-- ISO 6429 Control Wide_Characters --
--------------------------------------
IS4 : Wide_Character renames FS;
IS3 : Wide_Character renames GS;
IS2 : Wide_Character renames RS;
IS1 : Wide_Character renames US;
Reserved_128 : constant Wide_Character := Wide_Character'Val (128);
Reserved_129 : constant Wide_Character := Wide_Character'Val (129);
BPH : constant Wide_Character := Wide_Character'Val (130);
NBH : constant Wide_Character := Wide_Character'Val (131);
Reserved_132 : constant Wide_Character := Wide_Character'Val (132);
NEL : constant Wide_Character := Wide_Character'Val (133);
SSA : constant Wide_Character := Wide_Character'Val (134);
ESA : constant Wide_Character := Wide_Character'Val (135);
HTS : constant Wide_Character := Wide_Character'Val (136);
HTJ : constant Wide_Character := Wide_Character'Val (137);
VTS : constant Wide_Character := Wide_Character'Val (138);
PLD : constant Wide_Character := Wide_Character'Val (139);
PLU : constant Wide_Character := Wide_Character'Val (140);
RI : constant Wide_Character := Wide_Character'Val (141);
SS2 : constant Wide_Character := Wide_Character'Val (142);
SS3 : constant Wide_Character := Wide_Character'Val (143);
DCS : constant Wide_Character := Wide_Character'Val (144);
PU1 : constant Wide_Character := Wide_Character'Val (145);
PU2 : constant Wide_Character := Wide_Character'Val (146);
STS : constant Wide_Character := Wide_Character'Val (147);
CCH : constant Wide_Character := Wide_Character'Val (148);
MW : constant Wide_Character := Wide_Character'Val (149);
SPA : constant Wide_Character := Wide_Character'Val (150);
EPA : constant Wide_Character := Wide_Character'Val (151);
SOS : constant Wide_Character := Wide_Character'Val (152);
Reserved_153 : constant Wide_Character := Wide_Character'Val (153);
SCI : constant Wide_Character := Wide_Character'Val (154);
CSI : constant Wide_Character := Wide_Character'Val (155);
ST : constant Wide_Character := Wide_Character'Val (156);
OSC : constant Wide_Character := Wide_Character'Val (157);
PM : constant Wide_Character := Wide_Character'Val (158);
APC : constant Wide_Character := Wide_Character'Val (159);
-----------------------------------
-- Other Graphic Wide_Characters --
-----------------------------------
-- Wide_Character positions 160 (16#A0#) .. 175 (16#AF#)
No_Break_Space : constant Wide_Character := Wide_Character'Val (160);
NBSP : Wide_Character renames No_Break_Space;
Inverted_Exclamation : constant Wide_Character := Wide_Character'Val (161);
Cent_Sign : constant Wide_Character := Wide_Character'Val (162);
Pound_Sign : constant Wide_Character := Wide_Character'Val (163);
Euro_Sign : constant Wide_Character := Wide_Character'Val (164);
Yen_Sign : constant Wide_Character := Wide_Character'Val (165);
UC_S_Caron : constant Wide_Character := Wide_Character'Val (166);
Section_Sign : constant Wide_Character := Wide_Character'Val (167);
LC_S_Caron : constant Wide_Character := Wide_Character'Val (168);
Copyright_Sign : constant Wide_Character := Wide_Character'Val (169);
Feminine_Ordinal_Indicator
: constant Wide_Character := Wide_Character'Val (170);
Left_Angle_Quotation : constant Wide_Character := Wide_Character'Val (171);
Not_Sign : constant Wide_Character := Wide_Character'Val (172);
Soft_Hyphen : constant Wide_Character := Wide_Character'Val (173);
Registered_Trade_Mark_Sign
: constant Wide_Character := Wide_Character'Val (174);
Macron : constant Wide_Character := Wide_Character'Val (175);
-- Wide_Character positions 176 (16#B0#) .. 191 (16#BF#)
Degree_Sign : constant Wide_Character := Wide_Character'Val (176);
Ring_Above : Wide_Character renames Degree_Sign;
Plus_Minus_Sign : constant Wide_Character := Wide_Character'Val (177);
Superscript_Two : constant Wide_Character := Wide_Character'Val (178);
Superscript_Three : constant Wide_Character := Wide_Character'Val (179);
UC_Z_Caron : constant Wide_Character := Wide_Character'Val (180);
Micro_Sign : constant Wide_Character := Wide_Character'Val (181);
Pilcrow_Sign : constant Wide_Character := Wide_Character'Val (182);
Paragraph_Sign : Wide_Character renames Pilcrow_Sign;
Middle_Dot : constant Wide_Character := Wide_Character'Val (183);
LC_Z_Caron : constant Wide_Character := Wide_Character'Val (184);
Superscript_One : constant Wide_Character := Wide_Character'Val (185);
Masculine_Ordinal_Indicator
: constant Wide_Character := Wide_Character'Val (186);
Right_Angle_Quotation
: constant Wide_Character := Wide_Character'Val (187);
UC_Ligature_OE : constant Wide_Character := Wide_Character'Val (188);
LC_Ligature_OE : constant Wide_Character := Wide_Character'Val (189);
UC_Y_Diaeresis : constant Wide_Character := Wide_Character'Val (190);
Inverted_Question : constant Wide_Character := Wide_Character'Val (191);
-- Wide_Character positions 192 (16#C0#) .. 207 (16#CF#)
UC_A_Grave : constant Wide_Character := Wide_Character'Val (192);
UC_A_Acute : constant Wide_Character := Wide_Character'Val (193);
UC_A_Circumflex : constant Wide_Character := Wide_Character'Val (194);
UC_A_Tilde : constant Wide_Character := Wide_Character'Val (195);
UC_A_Diaeresis : constant Wide_Character := Wide_Character'Val (196);
UC_A_Ring : constant Wide_Character := Wide_Character'Val (197);
UC_AE_Diphthong : constant Wide_Character := Wide_Character'Val (198);
UC_C_Cedilla : constant Wide_Character := Wide_Character'Val (199);
UC_E_Grave : constant Wide_Character := Wide_Character'Val (200);
UC_E_Acute : constant Wide_Character := Wide_Character'Val (201);
UC_E_Circumflex : constant Wide_Character := Wide_Character'Val (202);
UC_E_Diaeresis : constant Wide_Character := Wide_Character'Val (203);
UC_I_Grave : constant Wide_Character := Wide_Character'Val (204);
UC_I_Acute : constant Wide_Character := Wide_Character'Val (205);
UC_I_Circumflex : constant Wide_Character := Wide_Character'Val (206);
UC_I_Diaeresis : constant Wide_Character := Wide_Character'Val (207);
-- Wide_Character positions 208 (16#D0#) .. 223 (16#DF#)
UC_Icelandic_Eth : constant Wide_Character := Wide_Character'Val (208);
UC_N_Tilde : constant Wide_Character := Wide_Character'Val (209);
UC_O_Grave : constant Wide_Character := Wide_Character'Val (210);
UC_O_Acute : constant Wide_Character := Wide_Character'Val (211);
UC_O_Circumflex : constant Wide_Character := Wide_Character'Val (212);
UC_O_Tilde : constant Wide_Character := Wide_Character'Val (213);
UC_O_Diaeresis : constant Wide_Character := Wide_Character'Val (214);
Multiplication_Sign : constant Wide_Character := Wide_Character'Val (215);
UC_O_Oblique_Stroke : constant Wide_Character := Wide_Character'Val (216);
UC_U_Grave : constant Wide_Character := Wide_Character'Val (217);
UC_U_Acute : constant Wide_Character := Wide_Character'Val (218);
UC_U_Circumflex : constant Wide_Character := Wide_Character'Val (219);
UC_U_Diaeresis : constant Wide_Character := Wide_Character'Val (220);
UC_Y_Acute : constant Wide_Character := Wide_Character'Val (221);
UC_Icelandic_Thorn : constant Wide_Character := Wide_Character'Val (222);
LC_German_Sharp_S : constant Wide_Character := Wide_Character'Val (223);
-- Wide_Character positions 224 (16#E0#) .. 239 (16#EF#)
LC_A_Grave : constant Wide_Character := Wide_Character'Val (224);
LC_A_Acute : constant Wide_Character := Wide_Character'Val (225);
LC_A_Circumflex : constant Wide_Character := Wide_Character'Val (226);
LC_A_Tilde : constant Wide_Character := Wide_Character'Val (227);
LC_A_Diaeresis : constant Wide_Character := Wide_Character'Val (228);
LC_A_Ring : constant Wide_Character := Wide_Character'Val (229);
LC_AE_Diphthong : constant Wide_Character := Wide_Character'Val (230);
LC_C_Cedilla : constant Wide_Character := Wide_Character'Val (231);
LC_E_Grave : constant Wide_Character := Wide_Character'Val (232);
LC_E_Acute : constant Wide_Character := Wide_Character'Val (233);
LC_E_Circumflex : constant Wide_Character := Wide_Character'Val (234);
LC_E_Diaeresis : constant Wide_Character := Wide_Character'Val (235);
LC_I_Grave : constant Wide_Character := Wide_Character'Val (236);
LC_I_Acute : constant Wide_Character := Wide_Character'Val (237);
LC_I_Circumflex : constant Wide_Character := Wide_Character'Val (238);
LC_I_Diaeresis : constant Wide_Character := Wide_Character'Val (239);
-- Wide_Character positions 240 (16#F0#) .. 255 (16#FF)
LC_Icelandic_Eth : constant Wide_Character := Wide_Character'Val (240);
LC_N_Tilde : constant Wide_Character := Wide_Character'Val (241);
LC_O_Grave : constant Wide_Character := Wide_Character'Val (242);
LC_O_Acute : constant Wide_Character := Wide_Character'Val (243);
LC_O_Circumflex : constant Wide_Character := Wide_Character'Val (244);
LC_O_Tilde : constant Wide_Character := Wide_Character'Val (245);
LC_O_Diaeresis : constant Wide_Character := Wide_Character'Val (246);
Division_Sign : constant Wide_Character := Wide_Character'Val (247);
LC_O_Oblique_Stroke : constant Wide_Character := Wide_Character'Val (248);
LC_U_Grave : constant Wide_Character := Wide_Character'Val (249);
LC_U_Acute : constant Wide_Character := Wide_Character'Val (250);
LC_U_Circumflex : constant Wide_Character := Wide_Character'Val (251);
LC_U_Diaeresis : constant Wide_Character := Wide_Character'Val (252);
LC_Y_Acute : constant Wide_Character := Wide_Character'Val (253);
LC_Icelandic_Thorn : constant Wide_Character := Wide_Character'Val (254);
LC_Y_Diaeresis : constant Wide_Character := Wide_Character'Val (255);
------------------------------------------------
-- Summary of Changes from Latin-1 => Latin-9 --
------------------------------------------------
-- 164 Currency => Euro_Sign
-- 166 Broken_Bar => UC_S_Caron
-- 168 Diaeresis => LC_S_Caron
-- 180 Acute => UC_Z_Caron
-- 184 Cedilla => LC_Z_Caron
-- 188 Fraction_One_Quarter => UC_Ligature_OE
-- 189 Fraction_One_Half => LC_Ligature_OE
-- 190 Fraction_Three_Quarters => UC_Y_Diaeresis
end Ada.Characters.Wide_Latin_9;
|
------------------------------------------------------------------------------
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- A driver for the Cyclic Redundancy Check CRC-32 calculation processor.
-- The CPU transfers the data to the CRC processor.
-- Note this API is for the STM32 F4x family. Other STM MCUs have additional
-- CRC capabilities.
private with STM32_SVD.CRC;
package STM32.CRC is
end STM32.CRC;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.DG.Polygons.Hash is
new AMF.Elements.Generic_Hash (DG_Polygon, DG_Polygon_Access);
|
-- C35508O.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 'FIRST' AND 'LAST' YIELD THE CORRECT RESULTS WHEN THE
-- PREFIX IS A BOOLEAN TYPE.
-- HISTORY:
-- RJW 03/19/86 CREATED ORIGINAL TEST.
-- DHH 10/19/87 SHORTENED LINES CONTAINING MORE THAN 72 CHARACTERS.
WITH REPORT; USE REPORT;
PROCEDURE C35508O IS
BEGIN
TEST ("C35508O", "CHECK THAT 'FIRST' AND 'LAST' YIELD THE " &
"CORRECT RESULTS WHEN THE PREFIX IS A " &
"BOOLEAN TYPE" );
DECLARE
SUBTYPE TBOOL IS BOOLEAN RANGE IDENT_BOOL(TRUE) ..
IDENT_BOOL(TRUE);
SUBTYPE FBOOL IS BOOLEAN
RANGE IDENT_BOOL(FALSE) .. IDENT_BOOL(FALSE);
SUBTYPE NOBOOL IS BOOLEAN
RANGE IDENT_BOOL(TRUE) .. IDENT_BOOL(FALSE);
TYPE NEWBOOL IS NEW BOOLEAN;
TYPE NIL IS NEW BOOLEAN RANGE IDENT_BOOL(TRUE) ..
IDENT_BOOL(FALSE);
BEGIN
IF IDENT_BOOL(BOOLEAN'FIRST) /= FALSE THEN
FAILED ( "WRONG VALUE FOR BOOLEAN'FIRST" );
END IF;
IF IDENT_BOOL(BOOLEAN'LAST) /= TRUE THEN
FAILED ( "WRONG VALUE FOR BOOLEAN'LAST" );
END IF;
IF TBOOL'FIRST /= TRUE THEN
FAILED ( "WRONG VALUE FOR TBOOL'FIRST" );
END IF;
IF TBOOL'LAST /= TRUE THEN
FAILED ( "WRONG VALUE FOR TBOOL'LAST" );
END IF;
IF FBOOL'FIRST /= FALSE THEN
FAILED ( "WRONG VALUE FOR FBOOL'FIRST" );
END IF;
IF FBOOL'LAST /= FALSE THEN
FAILED ( "WRONG VALUE FOR FBOOL'LAST" );
END IF;
IF NOBOOL'FIRST /= TRUE THEN
FAILED ( "WRONG VALUE FOR NOBOOL'FIRST" );
END IF;
IF NOBOOL'LAST /= FALSE THEN
FAILED ( "WRONG VALUE FOR NOBOOL'LAST" );
END IF;
IF NEWBOOL'FIRST /= FALSE THEN
FAILED ( "WRONG VALUE FOR NEWBOOL'FIRST" );
END IF;
IF NEWBOOL'LAST /= TRUE THEN
FAILED ( "WRONG VALUE FOR NEWBOOL'LAST" );
END IF;
IF NIL'FIRST /= TRUE THEN
FAILED ( "WRONG VALUE FOR NIL'FIRST" );
END IF;
IF NIL'LAST /= FALSE THEN
FAILED ( "WRONG VALUE FOR NIL'LAST" );
END IF;
END;
RESULT;
END C35508O;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2019 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with System;
with Ada.Streams;
with Ada.Unchecked_Conversion;
package body Inotify is
use type GNAT.OS_Lib.File_Descriptor;
overriding procedure Initialize (Object : in out Instance) is
function Inotify_Init return GNAT.OS_Lib.File_Descriptor
with Import, Convention => C, External_Name => "inotify_init";
begin
Object.Instance := Inotify_Init;
if Object.Instance = GNAT.OS_Lib.Invalid_FD then
raise Program_Error;
end if;
end Initialize;
overriding procedure Finalize (Object : in out Instance) is
Status : Boolean;
begin
if Object.Instance /= GNAT.OS_Lib.Invalid_FD then
GNAT.OS_Lib.Close (Object.Instance, Status);
Object.Instance := GNAT.OS_Lib.Invalid_FD;
if not Status then
raise Program_Error;
end if;
end if;
end Finalize;
function File_Descriptor (Object : Instance) return Integer is (Integer (Object.Instance));
use type Interfaces.C.int;
function Add_Watch
(Object : in out Instance;
Path : String;
Mask : Watch_Bits := All_Events) return Watch
is
function Inotify_Add_Watch
(Instance : GNAT.OS_Lib.File_Descriptor;
Path : Interfaces.C.char_array;
Mask : Interfaces.C.unsigned) return Interfaces.C.int
with Import, Convention => C, External_Name => "inotify_add_watch";
function Convert is new Ada.Unchecked_Conversion
(Source => Watch_Bits, Target => Interfaces.C.unsigned);
Result : constant Interfaces.C.int := Inotify_Add_Watch
(Object.Instance, Interfaces.C.To_C (Path), Convert (Mask));
begin
if Result = -1 then
raise Program_Error;
end if;
Object.Watches.Include (Result, Path);
return (Watch => Result);
end Add_Watch;
procedure Add_Watch
(Object : in out Instance;
Path : String;
Mask : Watch_Bits := All_Events)
is
Result : constant Watch := Instance'Class (Object).Add_Watch (Path, Mask);
begin
pragma Assert (Result.Watch /= -1);
end Add_Watch;
procedure Remove_Watch (Object : in out Instance; Subject : Watch) is
function Inotify_Remove_Watch
(Instance : GNAT.OS_Lib.File_Descriptor;
Watch : Interfaces.C.int) return Interfaces.C.int
with Import, Convention => C, External_Name => "inotify_rm_watch";
begin
-- Procedure Process_Events might read multiple events for a specific
-- watch and the callback for the first event may immediately try to
-- remove the watch
if Object.Defer_Remove then
if not Object.Pending_Removals.Contains (Subject) then
Object.Pending_Removals.Append (Subject);
end if;
return;
end if;
if Inotify_Remove_Watch (Object.Instance, Subject.Watch) = -1 then
raise Program_Error;
end if;
Object.Watches.Delete (Subject.Watch);
end Remove_Watch;
function Has_Watches (Object : in out Instance) return Boolean is
(not Object.Watches.Is_Empty);
function Name (Object : Instance; Subject : Watch) return String is
(Object.Watches.Element (Subject.Watch));
-----------------------------------------------------------------------------
type Inotify_Event is record
Watch : Interfaces.C.int; -- -1 if event queue has overflowed
Mask : Interfaces.C.unsigned;
Cookie : Interfaces.C.unsigned;
Length : Interfaces.C.unsigned;
end record
with Convention => C,
Alignment => 4;
type Event_Bits is record
Event : Event_Kind;
Queue_Overflowed : Boolean := False;
Ignored : Boolean := False;
Is_Directory : Boolean := False;
end record;
for Event_Bits use record
Event at 0 range 0 .. 13;
Queue_Overflowed at 0 range 14 .. 14;
Ignored at 0 range 15 .. 15;
Is_Directory at 0 range 30 .. 30;
end record;
for Event_Bits'Size use Interfaces.C.unsigned'Size;
for Event_Bits'Alignment use Interfaces.C.unsigned'Alignment;
procedure Process_Events
(Object : in out Instance;
Handle : not null access procedure
(Subject : Watch;
Event : Event_Kind;
Is_Directory : Boolean;
Name : String);
Move_Handle : not null access procedure
(Subject : Watch;
Is_Directory : Boolean;
From, To : String))
is
use Ada.Streams;
function Convert is new Ada.Unchecked_Conversion
(Source => Stream_Element_Array, Target => Inotify_Event);
function Convert is new Ada.Unchecked_Conversion
(Source => Interfaces.C.unsigned, Target => Event_Bits);
Event_In_Bytes : constant Stream_Element_Offset
:= Inotify_Event'Size / System.Storage_Unit;
Length : Stream_Element_Offset;
Buffer : Stream_Element_Array (1 .. 4096)
with Alignment => 4;
function Find_Move (Cookie : Interfaces.C.unsigned) return Move_Vectors.Cursor is
Cursor : Move_Vectors.Cursor := Move_Vectors.No_Element;
procedure Reverse_Iterate (Position : Move_Vectors.Cursor) is
use type Interfaces.C.unsigned;
begin
if Cookie = Object.Moves (Position).Key then
Cursor := Position;
end if;
end Reverse_Iterate;
begin
Object.Moves.Reverse_Iterate (Reverse_Iterate'Access);
return Cursor;
end Find_Move;
use type Ada.Containers.Count_Type;
begin
if Object.Watches.Is_Empty then
return;
end if;
Length := Stream_Element_Offset (GNAT.OS_Lib.Read
(Object.Instance, Buffer'Address, Buffer'Length));
if Length = -1 then
raise Read_Error;
end if;
if Length = 0 then
return;
end if;
declare
Index : Stream_Element_Offset := Buffer'First;
begin
Object.Defer_Remove := True;
while Index < Buffer'First + Length loop
declare
Event : constant Inotify_Event
:= Convert (Buffer (Index .. Index + Event_In_Bytes - 1));
Mask : constant Event_Bits := Convert (Event.Mask);
Name_Length : constant Stream_Element_Offset
:= Stream_Element_Offset (Event.Length);
begin
if Mask.Queue_Overflowed then
raise Queue_Overflow_Error;
end if;
pragma Assert (Event.Watch /= -1);
if Mask.Ignored then
Object.Watches.Exclude (Event.Watch);
else
declare
Directory : constant String := Object.Watches.Element (Event.Watch);
begin
if Name_Length > 0 then
declare
subtype Name_Array is Interfaces.C.char_array
(1 .. Interfaces.C.size_t (Event.Length));
subtype Name_Buffer is Stream_Element_Array
(1 .. Name_Length);
function Convert is new Ada.Unchecked_Conversion
(Source => Name_Buffer, Target => Name_Array);
Name_Index : constant Stream_Element_Offset
:= Index + Event_In_Bytes;
Name : constant String := Interfaces.C.To_Ada (Convert
(Buffer (Name_Index .. Name_Index + Name_Length - 1)));
begin
Handle
((Watch => Event.Watch), Mask.Event,
Mask.Is_Directory, Directory & "/" & Name);
case Mask.Event is
when Moved_From =>
if Object.Moves.Length = Object.Moves.Capacity then
Object.Moves.Delete_First;
end if;
Object.Moves.Append ((Event.Cookie,
(From => SU.To_Unbounded_String (Directory & "/" & Name),
To => <>)));
-- If inode is moved to outside watched directory,
-- then there will never be a Moved_To or Moved_Self
-- if instance is not recursive
when Moved_To =>
declare
Cursor : Move_Vectors.Cursor := Find_Move (Event.Cookie);
use type Move_Vectors.Cursor;
begin
if Cursor /= Move_Vectors.No_Element then
-- It's a rename
Move_Handle
(Subject => (Watch => Event.Watch),
Is_Directory => Mask.Is_Directory,
From => SU.To_String
(Object.Moves (Cursor).Value.From),
To => Directory & "/" & Name);
Object.Moves.Delete (Cursor);
else
Move_Handle
(Subject => (Watch => Event.Watch),
Is_Directory => Mask.Is_Directory,
From => "",
To => Directory & "/" & Name);
end if;
end;
when others =>
null;
end case;
end;
else
Handle
((Watch => Event.Watch), Mask.Event,
Mask.Is_Directory, Directory);
end if;
end;
end if;
Index := Index + Event_In_Bytes + Name_Length;
end;
end loop;
Object.Defer_Remove := False;
-- Remove pending removals of watches after having processed
-- all events
for Watch of Object.Pending_Removals loop
Object.Remove_Watch (Watch);
end loop;
Object.Pending_Removals.Clear;
end;
end Process_Events;
procedure Process_Events
(Object : in out Instance;
Handle : not null access procedure
(Subject : Watch;
Event : Event_Kind;
Is_Directory : Boolean;
Name : String))
is
procedure Move_Handle
(Subject : Watch;
Is_Directory : Boolean;
From, To : String) is null;
begin
Object.Process_Events (Handle, Move_Handle'Access);
end Process_Events;
end Inotify;
|
package root is
type Real is new Float;
type Base_Interface is limited interface;
procedure Primitive1 (B : in out Base_Interface) is abstract; -- builds
procedure Primitive2 (B : in out Base_Interface) is null; -- causes bug
type Derived_Interface is limited interface and Base_Interface;
end root;
|
------------------------------------------------------------------------------
-- A d a r u n - t i m e s p e c i f i c a t i o n --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of ada.ads file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
generic
type Index_Type is (<>);
type Element_Type is private;
type Array_Type is array (Index_Type range <>) of Element_Type;
with function "<" (Left : in Element_Type;
Right : in Element_Type)
return Boolean is <>;
procedure Ada.Containers.Generic_Array_Sort (Container : in out Array_Type);
pragma Pure (Ada.Containers.Generic_Array_Sort);
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ U N B O U N D E D --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Strings.Wide_Fixed;
with Ada.Strings.Wide_Search;
with Ada.Unchecked_Deallocation;
package body Ada.Strings.Wide_Unbounded is
---------
-- "&" --
---------
function "&"
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Unbounded_Wide_String
is
L_Length : constant Natural := Left.Last;
R_Length : constant Natural := Right.Last;
Result : Unbounded_Wide_String;
begin
Result.Last := L_Length + R_Length;
Result.Reference := new Wide_String (1 .. Result.Last);
Result.Reference (1 .. L_Length) :=
Left.Reference (1 .. Left.Last);
Result.Reference (L_Length + 1 .. Result.Last) :=
Right.Reference (1 .. Right.Last);
return Result;
end "&";
function "&"
(Left : Unbounded_Wide_String;
Right : Wide_String) return Unbounded_Wide_String
is
L_Length : constant Natural := Left.Last;
Result : Unbounded_Wide_String;
begin
Result.Last := L_Length + Right'Length;
Result.Reference := new Wide_String (1 .. Result.Last);
Result.Reference (1 .. L_Length) := Left.Reference (1 .. Left.Last);
Result.Reference (L_Length + 1 .. Result.Last) := Right;
return Result;
end "&";
function "&"
(Left : Wide_String;
Right : Unbounded_Wide_String) return Unbounded_Wide_String
is
R_Length : constant Natural := Right.Last;
Result : Unbounded_Wide_String;
begin
Result.Last := Left'Length + R_Length;
Result.Reference := new Wide_String (1 .. Result.Last);
Result.Reference (1 .. Left'Length) := Left;
Result.Reference (Left'Length + 1 .. Result.Last) :=
Right.Reference (1 .. Right.Last);
return Result;
end "&";
function "&"
(Left : Unbounded_Wide_String;
Right : Wide_Character) return Unbounded_Wide_String
is
Result : Unbounded_Wide_String;
begin
Result.Last := Left.Last + 1;
Result.Reference := new Wide_String (1 .. Result.Last);
Result.Reference (1 .. Result.Last - 1) :=
Left.Reference (1 .. Left.Last);
Result.Reference (Result.Last) := Right;
return Result;
end "&";
function "&"
(Left : Wide_Character;
Right : Unbounded_Wide_String) return Unbounded_Wide_String
is
Result : Unbounded_Wide_String;
begin
Result.Last := Right.Last + 1;
Result.Reference := new Wide_String (1 .. Result.Last);
Result.Reference (1) := Left;
Result.Reference (2 .. Result.Last) :=
Right.Reference (1 .. Right.Last);
return Result;
end "&";
---------
-- "*" --
---------
function "*"
(Left : Natural;
Right : Wide_Character) return Unbounded_Wide_String
is
Result : Unbounded_Wide_String;
begin
Result.Last := Left;
Result.Reference := new Wide_String (1 .. Left);
for J in Result.Reference'Range loop
Result.Reference (J) := Right;
end loop;
return Result;
end "*";
function "*"
(Left : Natural;
Right : Wide_String) return Unbounded_Wide_String
is
Len : constant Natural := Right'Length;
K : Positive;
Result : Unbounded_Wide_String;
begin
Result.Last := Left * Len;
Result.Reference := new Wide_String (1 .. Result.Last);
K := 1;
for J in 1 .. Left loop
Result.Reference (K .. K + Len - 1) := Right;
K := K + Len;
end loop;
return Result;
end "*";
function "*"
(Left : Natural;
Right : Unbounded_Wide_String) return Unbounded_Wide_String
is
Len : constant Natural := Right.Last;
K : Positive;
Result : Unbounded_Wide_String;
begin
Result.Last := Left * Len;
Result.Reference := new Wide_String (1 .. Result.Last);
K := 1;
for J in 1 .. Left loop
Result.Reference (K .. K + Len - 1) :=
Right.Reference (1 .. Right.Last);
K := K + Len;
end loop;
return Result;
end "*";
---------
-- "<" --
---------
function "<"
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return
Left.Reference (1 .. Left.Last) < Right.Reference (1 .. Right.Last);
end "<";
function "<"
(Left : Unbounded_Wide_String;
Right : Wide_String) return Boolean
is
begin
return Left.Reference (1 .. Left.Last) < Right;
end "<";
function "<"
(Left : Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return Left < Right.Reference (1 .. Right.Last);
end "<";
----------
-- "<=" --
----------
function "<="
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return
Left.Reference (1 .. Left.Last) <= Right.Reference (1 .. Right.Last);
end "<=";
function "<="
(Left : Unbounded_Wide_String;
Right : Wide_String) return Boolean
is
begin
return Left.Reference (1 .. Left.Last) <= Right;
end "<=";
function "<="
(Left : Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return Left <= Right.Reference (1 .. Right.Last);
end "<=";
---------
-- "=" --
---------
function "="
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return
Left.Reference (1 .. Left.Last) = Right.Reference (1 .. Right.Last);
end "=";
function "="
(Left : Unbounded_Wide_String;
Right : Wide_String) return Boolean
is
begin
return Left.Reference (1 .. Left.Last) = Right;
end "=";
function "="
(Left : Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return Left = Right.Reference (1 .. Right.Last);
end "=";
---------
-- ">" --
---------
function ">"
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return
Left.Reference (1 .. Left.Last) > Right.Reference (1 .. Right.Last);
end ">";
function ">"
(Left : Unbounded_Wide_String;
Right : Wide_String) return Boolean
is
begin
return Left.Reference (1 .. Left.Last) > Right;
end ">";
function ">"
(Left : Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return Left > Right.Reference (1 .. Right.Last);
end ">";
----------
-- ">=" --
----------
function ">="
(Left : Unbounded_Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return
Left.Reference (1 .. Left.Last) >= Right.Reference (1 .. Right.Last);
end ">=";
function ">="
(Left : Unbounded_Wide_String;
Right : Wide_String) return Boolean
is
begin
return Left.Reference (1 .. Left.Last) >= Right;
end ">=";
function ">="
(Left : Wide_String;
Right : Unbounded_Wide_String) return Boolean
is
begin
return Left >= Right.Reference (1 .. Right.Last);
end ">=";
------------
-- Adjust --
------------
procedure Adjust (Object : in out Unbounded_Wide_String) is
begin
-- Copy string, except we do not copy the statically allocated null
-- string, since it can never be deallocated. Note that we do not copy
-- extra string room here to avoid dragging unused allocated memory.
if Object.Reference /= Null_Wide_String'Access then
Object.Reference :=
new Wide_String'(Object.Reference (1 .. Object.Last));
end if;
end Adjust;
------------
-- Append --
------------
procedure Append
(Source : in out Unbounded_Wide_String;
New_Item : Unbounded_Wide_String)
is
begin
Realloc_For_Chunk (Source, New_Item.Last);
Source.Reference (Source.Last + 1 .. Source.Last + New_Item.Last) :=
New_Item.Reference (1 .. New_Item.Last);
Source.Last := Source.Last + New_Item.Last;
end Append;
procedure Append
(Source : in out Unbounded_Wide_String;
New_Item : Wide_String)
is
begin
Realloc_For_Chunk (Source, New_Item'Length);
Source.Reference (Source.Last + 1 .. Source.Last + New_Item'Length) :=
New_Item;
Source.Last := Source.Last + New_Item'Length;
end Append;
procedure Append
(Source : in out Unbounded_Wide_String;
New_Item : Wide_Character)
is
begin
Realloc_For_Chunk (Source, 1);
Source.Reference (Source.Last + 1) := New_Item;
Source.Last := Source.Last + 1;
end Append;
-----------
-- Count --
-----------
function Count
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
is
begin
return
Wide_Search.Count
(Source.Reference (1 .. Source.Last), Pattern, Mapping);
end Count;
function Count
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
is
begin
return
Wide_Search.Count
(Source.Reference (1 .. Source.Last), Pattern, Mapping);
end Count;
function Count
(Source : Unbounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set) return Natural
is
begin
return
Wide_Search.Count
(Source.Reference (1 .. Source.Last), Set);
end Count;
------------
-- Delete --
------------
function Delete
(Source : Unbounded_Wide_String;
From : Positive;
Through : Natural) return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Delete
(Source.Reference (1 .. Source.Last), From, Through));
end Delete;
procedure Delete
(Source : in out Unbounded_Wide_String;
From : Positive;
Through : Natural)
is
begin
if From > Through then
null;
elsif From < Source.Reference'First or else Through > Source.Last then
raise Index_Error;
else
declare
Len : constant Natural := Through - From + 1;
begin
Source.Reference (From .. Source.Last - Len) :=
Source.Reference (Through + 1 .. Source.Last);
Source.Last := Source.Last - Len;
end;
end if;
end Delete;
-------------
-- Element --
-------------
function Element
(Source : Unbounded_Wide_String;
Index : Positive) return Wide_Character
is
begin
if Index <= Source.Last then
return Source.Reference (Index);
else
raise Strings.Index_Error;
end if;
end Element;
--------------
-- Finalize --
--------------
procedure Finalize (Object : in out Unbounded_Wide_String) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (Wide_String, Wide_String_Access);
begin
-- Note: Don't try to free statically allocated null string
if Object.Reference /= Null_Wide_String'Access then
Deallocate (Object.Reference);
Object.Reference := Null_Unbounded_Wide_String.Reference;
Object.Last := 0;
end if;
end Finalize;
----------------
-- Find_Token --
----------------
procedure Find_Token
(Source : Unbounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Strings.Membership;
First : out Positive;
Last : out Natural)
is
begin
Wide_Search.Find_Token
(Source.Reference (From .. Source.Last), Set, Test, First, Last);
end Find_Token;
procedure Find_Token
(Source : Unbounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Strings.Membership;
First : out Positive;
Last : out Natural)
is
begin
Wide_Search.Find_Token
(Source.Reference (1 .. Source.Last), Set, Test, First, Last);
end Find_Token;
----------
-- Free --
----------
procedure Free (X : in out Wide_String_Access) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (Wide_String, Wide_String_Access);
begin
-- Note: Do not try to free statically allocated null string
if X /= Null_Unbounded_Wide_String.Reference then
Deallocate (X);
end if;
end Free;
----------
-- Head --
----------
function Head
(Source : Unbounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space) return Unbounded_Wide_String
is
begin
return To_Unbounded_Wide_String
(Wide_Fixed.Head (Source.Reference (1 .. Source.Last), Count, Pad));
end Head;
procedure Head
(Source : in out Unbounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space)
is
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference :=
new Wide_String'
(Wide_Fixed.Head (Source.Reference (1 .. Source.Last), Count, Pad));
Source.Last := Source.Reference'Length;
Free (Old);
end Head;
-----------
-- Index --
-----------
function Index
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
Going : Strings.Direction := Strings.Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
is
begin
return
Wide_Search.Index
(Source.Reference (1 .. Source.Last), Pattern, Going, Mapping);
end Index;
function Index
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
is
begin
return
Wide_Search.Index
(Source.Reference (1 .. Source.Last), Pattern, Going, Mapping);
end Index;
function Index
(Source : Unbounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
Test : Strings.Membership := Strings.Inside;
Going : Strings.Direction := Strings.Forward) return Natural
is
begin
return Wide_Search.Index
(Source.Reference (1 .. Source.Last), Set, Test, Going);
end Index;
function Index
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity)
return Natural
is
begin
return
Wide_Search.Index
(Source.Reference (1 .. Source.Last), Pattern, From, Going, Mapping);
end Index;
function Index
(Source : Unbounded_Wide_String;
Pattern : Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural
is
begin
return
Wide_Search.Index
(Source.Reference (1 .. Source.Last), Pattern, From, Going, Mapping);
end Index;
function Index
(Source : Unbounded_Wide_String;
Set : Wide_Maps.Wide_Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural
is
begin
return
Wide_Search.Index
(Source.Reference (1 .. Source.Last), Set, From, Test, Going);
end Index;
function Index_Non_Blank
(Source : Unbounded_Wide_String;
Going : Strings.Direction := Strings.Forward) return Natural
is
begin
return
Wide_Search.Index_Non_Blank
(Source.Reference (1 .. Source.Last), Going);
end Index_Non_Blank;
function Index_Non_Blank
(Source : Unbounded_Wide_String;
From : Positive;
Going : Direction := Forward) return Natural
is
begin
return
Wide_Search.Index_Non_Blank
(Source.Reference (1 .. Source.Last), From, Going);
end Index_Non_Blank;
----------------
-- Initialize --
----------------
procedure Initialize (Object : in out Unbounded_Wide_String) is
begin
Object.Reference := Null_Unbounded_Wide_String.Reference;
Object.Last := 0;
end Initialize;
------------
-- Insert --
------------
function Insert
(Source : Unbounded_Wide_String;
Before : Positive;
New_Item : Wide_String) return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Insert
(Source.Reference (1 .. Source.Last), Before, New_Item));
end Insert;
procedure Insert
(Source : in out Unbounded_Wide_String;
Before : Positive;
New_Item : Wide_String)
is
begin
if Before not in Source.Reference'First .. Source.Last + 1 then
raise Index_Error;
end if;
Realloc_For_Chunk (Source, New_Item'Length);
Source.Reference
(Before + New_Item'Length .. Source.Last + New_Item'Length) :=
Source.Reference (Before .. Source.Last);
Source.Reference (Before .. Before + New_Item'Length - 1) := New_Item;
Source.Last := Source.Last + New_Item'Length;
end Insert;
------------
-- Length --
------------
function Length (Source : Unbounded_Wide_String) return Natural is
begin
return Source.Last;
end Length;
---------------
-- Overwrite --
---------------
function Overwrite
(Source : Unbounded_Wide_String;
Position : Positive;
New_Item : Wide_String) return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Overwrite
(Source.Reference (1 .. Source.Last), Position, New_Item));
end Overwrite;
procedure Overwrite
(Source : in out Unbounded_Wide_String;
Position : Positive;
New_Item : Wide_String)
is
NL : constant Natural := New_Item'Length;
begin
if Position <= Source.Last - NL + 1 then
Source.Reference (Position .. Position + NL - 1) := New_Item;
else
declare
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference := new Wide_String'
(Wide_Fixed.Overwrite
(Source.Reference (1 .. Source.Last), Position, New_Item));
Source.Last := Source.Reference'Length;
Free (Old);
end;
end if;
end Overwrite;
-----------------------
-- Realloc_For_Chunk --
-----------------------
procedure Realloc_For_Chunk
(Source : in out Unbounded_Wide_String;
Chunk_Size : Natural)
is
Growth_Factor : constant := 32;
-- The growth factor controls how much extra space is allocated when
-- we have to increase the size of an allocated unbounded string. By
-- allocating extra space, we avoid the need to reallocate on every
-- append, particularly important when a string is built up by repeated
-- append operations of small pieces. This is expressed as a factor so
-- 32 means add 1/32 of the length of the string as growth space.
Min_Mul_Alloc : constant := Standard'Maximum_Alignment;
-- Allocation will be done by a multiple of Min_Mul_Alloc This causes
-- no memory loss as most (all?) malloc implementations are obliged to
-- align the returned memory on the maximum alignment as malloc does not
-- know the target alignment.
S_Length : constant Natural := Source.Reference'Length;
begin
if Chunk_Size > S_Length - Source.Last then
declare
New_Size : constant Positive :=
S_Length + Chunk_Size + (S_Length / Growth_Factor);
New_Rounded_Up_Size : constant Positive :=
((New_Size - 1) / Min_Mul_Alloc + 1) * Min_Mul_Alloc;
Tmp : constant Wide_String_Access :=
new Wide_String (1 .. New_Rounded_Up_Size);
begin
Tmp (1 .. Source.Last) := Source.Reference (1 .. Source.Last);
Free (Source.Reference);
Source.Reference := Tmp;
end;
end if;
end Realloc_For_Chunk;
---------------------
-- Replace_Element --
---------------------
procedure Replace_Element
(Source : in out Unbounded_Wide_String;
Index : Positive;
By : Wide_Character)
is
begin
if Index <= Source.Last then
Source.Reference (Index) := By;
else
raise Strings.Index_Error;
end if;
end Replace_Element;
-------------------
-- Replace_Slice --
-------------------
function Replace_Slice
(Source : Unbounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String) return Unbounded_Wide_String
is
begin
return To_Unbounded_Wide_String
(Wide_Fixed.Replace_Slice
(Source.Reference (1 .. Source.Last), Low, High, By));
end Replace_Slice;
procedure Replace_Slice
(Source : in out Unbounded_Wide_String;
Low : Positive;
High : Natural;
By : Wide_String)
is
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference := new Wide_String'
(Wide_Fixed.Replace_Slice
(Source.Reference (1 .. Source.Last), Low, High, By));
Source.Last := Source.Reference'Length;
Free (Old);
end Replace_Slice;
-------------------------------
-- Set_Unbounded_Wide_String --
-------------------------------
procedure Set_Unbounded_Wide_String
(Target : out Unbounded_Wide_String;
Source : Wide_String)
is
begin
Target.Last := Source'Length;
Target.Reference := new Wide_String (1 .. Source'Length);
Target.Reference.all := Source;
end Set_Unbounded_Wide_String;
-----------
-- Slice --
-----------
function Slice
(Source : Unbounded_Wide_String;
Low : Positive;
High : Natural) return Wide_String
is
begin
-- Note: test of High > Length is in accordance with AI95-00128
if Low > Source.Last + 1 or else High > Source.Last then
raise Index_Error;
else
return Source.Reference (Low .. High);
end if;
end Slice;
----------
-- Tail --
----------
function Tail
(Source : Unbounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space) return Unbounded_Wide_String is
begin
return To_Unbounded_Wide_String
(Wide_Fixed.Tail (Source.Reference (1 .. Source.Last), Count, Pad));
end Tail;
procedure Tail
(Source : in out Unbounded_Wide_String;
Count : Natural;
Pad : Wide_Character := Wide_Space)
is
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference := new Wide_String'
(Wide_Fixed.Tail (Source.Reference (1 .. Source.Last), Count, Pad));
Source.Last := Source.Reference'Length;
Free (Old);
end Tail;
------------------------------
-- To_Unbounded_Wide_String --
------------------------------
function To_Unbounded_Wide_String
(Source : Wide_String)
return Unbounded_Wide_String
is
Result : Unbounded_Wide_String;
begin
Result.Last := Source'Length;
Result.Reference := new Wide_String (1 .. Source'Length);
Result.Reference.all := Source;
return Result;
end To_Unbounded_Wide_String;
function To_Unbounded_Wide_String
(Length : Natural) return Unbounded_Wide_String
is
Result : Unbounded_Wide_String;
begin
Result.Last := Length;
Result.Reference := new Wide_String (1 .. Length);
return Result;
end To_Unbounded_Wide_String;
-------------------
-- To_Wide_String --
--------------------
function To_Wide_String
(Source : Unbounded_Wide_String)
return Wide_String
is
begin
return Source.Reference (1 .. Source.Last);
end To_Wide_String;
---------------
-- Translate --
---------------
function Translate
(Source : Unbounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping)
return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Translate
(Source.Reference (1 .. Source.Last), Mapping));
end Translate;
procedure Translate
(Source : in out Unbounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping)
is
begin
Wide_Fixed.Translate (Source.Reference (1 .. Source.Last), Mapping);
end Translate;
function Translate
(Source : Unbounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function)
return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Translate
(Source.Reference (1 .. Source.Last), Mapping));
end Translate;
procedure Translate
(Source : in out Unbounded_Wide_String;
Mapping : Wide_Maps.Wide_Character_Mapping_Function)
is
begin
Wide_Fixed.Translate (Source.Reference (1 .. Source.Last), Mapping);
end Translate;
----------
-- Trim --
----------
function Trim
(Source : Unbounded_Wide_String;
Side : Trim_End) return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Trim (Source.Reference (1 .. Source.Last), Side));
end Trim;
procedure Trim
(Source : in out Unbounded_Wide_String;
Side : Trim_End)
is
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference :=
new Wide_String'
(Wide_Fixed.Trim (Source.Reference (1 .. Source.Last), Side));
Source.Last := Source.Reference'Length;
Free (Old);
end Trim;
function Trim
(Source : Unbounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set)
return Unbounded_Wide_String
is
begin
return
To_Unbounded_Wide_String
(Wide_Fixed.Trim
(Source.Reference (1 .. Source.Last), Left, Right));
end Trim;
procedure Trim
(Source : in out Unbounded_Wide_String;
Left : Wide_Maps.Wide_Character_Set;
Right : Wide_Maps.Wide_Character_Set)
is
Old : Wide_String_Access := Source.Reference;
begin
Source.Reference :=
new Wide_String'
(Wide_Fixed.Trim
(Source.Reference (1 .. Source.Last), Left, Right));
Source.Last := Source.Reference'Length;
Free (Old);
end Trim;
---------------------
-- Unbounded_Slice --
---------------------
function Unbounded_Slice
(Source : Unbounded_Wide_String;
Low : Positive;
High : Natural) return Unbounded_Wide_String
is
begin
if Low > Source.Last + 1 or else High > Source.Last then
raise Index_Error;
else
return To_Unbounded_Wide_String (Source.Reference.all (Low .. High));
end if;
end Unbounded_Slice;
procedure Unbounded_Slice
(Source : Unbounded_Wide_String;
Target : out Unbounded_Wide_String;
Low : Positive;
High : Natural)
is
begin
if Low > Source.Last + 1 or else High > Source.Last then
raise Index_Error;
else
Target :=
To_Unbounded_Wide_String (Source.Reference.all (Low .. High));
end if;
end Unbounded_Slice;
end Ada.Strings.Wide_Unbounded;
|
-- ----------------------------------------------------------------- --
-- AdaSDL --
-- Binding to Simple Direct Media Layer --
-- Copyright (C) 2001 A.M.F.Vargas --
-- Antonio M. F. Vargas --
-- Ponta Delgada - Azores - Portugal --
-- http://www.adapower.net/~avargas --
-- E-mail: avargas@adapower.net --
-- ----------------------------------------------------------------- --
-- --
-- This library is free software; you can redistribute it and/or --
-- modify it under the terms of the GNU General Public --
-- License as published by the Free Software Foundation; either --
-- version 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 --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public --
-- License along with this library; if not, write to the --
-- Free Software Foundation, Inc., 59 Temple Place - Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- 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. --
-- ----------------------------------------------------------------- --
-- **************************************************************** --
-- This is an Ada binding to SDL ( Simple DirectMedia Layer from --
-- Sam Lantinga - www.libsld.org ) --
-- **************************************************************** --
-- In order to help the Ada programmer, the comments in this file --
-- are, in great extent, a direct copy of the original text in the --
-- SDL header files. --
-- **************************************************************** --
package body SDL.Byteorder is
--------------------
-- Get_Byte_Order --
--------------------
function Get_Byte_Order return C.int is
begin
if Standard'Default_Bit_Order = 1 then return 1234;
else return 4321;
end if;
end Get_Byte_Order;
end SDL.Byteorder;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . F I N A L I Z A T I O N --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-1997 Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Finalization_Root;
package Ada.Finalization is
pragma Preelaborate (Finalization);
type Controlled is abstract tagged private;
procedure Initialize (Object : in out Controlled);
procedure Adjust (Object : in out Controlled);
procedure Finalize (Object : in out Controlled);
type Limited_Controlled is abstract tagged limited private;
procedure Initialize (Object : in out Limited_Controlled);
procedure Finalize (Object : in out Limited_Controlled);
private
package SFR renames System.Finalization_Root;
type Controlled is abstract new SFR.Root_Controlled with null record;
function "=" (A, B : Controlled) return Boolean;
-- Need to be defined explictly because we don't want to compare the
-- hidden pointers
type Limited_Controlled is
abstract new SFR.Root_Controlled with null record;
end Ada.Finalization;
|
-- Copyright (c) 2012, mulander <netprobe@gmail.com>
-- All rights reserved.
-- Use of this source code is governed by a BSD-style license that can be
-- found in the LICENSE file.
with Terminal_Interface.Curses;
package body Crawler_Interface is
overriding procedure Initialize (This : in out Screen)
is
package Curses renames Terminal_Interface.Curses;
Cursor_Visibility : Curses.Cursor_Visibility := Curses.Invisible;
begin
-- Initialize ncurses
Curses.Init_Screen; --initscr;
Curses.Set_NL_Mode; -- (False);
Curses.Clear; --clear;
Curses.Set_Echo_Mode (False);
Curses.Set_Cbreak_Mode (True);
Curses.Set_Keypad_Mode;
Curses.Set_Cursor_Visibility (Cursor_Visibility);
Curses.Get_Size (Number_Of_Lines => This.Height,
Number_Of_Columns => This.Width);
end Initialize;
overriding procedure Finalize (This : in out Screen)
is
package Curses renames Terminal_Interface.Curses;
begin
-- Clear ncurses data structures
Curses.End_Windows;
end Finalize;
procedure Add (This : in Screen;
Str : in String)
is
begin
Curses.Add (Str => Str);
end Add;
function Get_Height(This : in Screen) return Curses.Line_Count
is
begin
return This.Height;
end Get_Height;
function Get_Width(This : in Screen) return Curses.Column_Count
is
begin
return This.Width;
end Get_Width;
-- Frame
procedure Make (This : in out Frame;
Height : Curses.Line_Count;
Width : Curses.Column_Count;
Row : Curses.Line_Position;
Col : Curses.Column_Position)
is
begin
This.Height := Height;
This.Width := Width;
This.Row := Row;
This.Col := Col;
This.Has_Parent_Window := False;
This.Window := Curses.Create(Number_Of_Lines => Height
,Number_Of_Columns => Width
,First_Line_Position => Row
,First_Column_Position => Col);
This.Parent := Curses.Null_Window;
end Make;
procedure Make_Sub_Window (This : in out Frame;
Parent : Frame;
Height : Curses.Line_Count;
Width : Curses.Column_Count;
Row : Curses.Line_Position;
Col : Curses.Column_Position)
is
begin
This.Height := Height;
This.Width := Width;
This.Row := Row;
This.Col := Col;
This.Has_Parent_Window := True;
This.Window := Curses.Derived_Window(Parent.Window,
Number_Of_Lines => Height
,Number_Of_Columns => Width
,First_Line_Position => Row
,First_Column_Position => Col);
This.Parent := Parent.Get_Window;
end Make_Sub_Window;
function Get_Window (This : in Frame) return Curses.Window
is
begin
return This.Window;
end Get_Window;
function Get_Parent_Window (This : in Frame) return Curses.Window
is
begin
return This.Parent;
end Get_Parent_Window;
function Has_Parent_Window (This : in Frame) return Boolean
is
begin
return This.Has_Parent_Window;
end Has_Parent_Window;
function Get_Height (This : in Frame) return Curses.Line_Count
is
begin
return This.Height;
end Get_Height;
function Get_Width (This : in Frame) return Curses.Column_Count
is
begin
return This.Width;
end Get_Width;
function Get_Row (This : in Frame) return Curses.Line_Position
is
begin
return This.Row;
end Get_Row;
function Get_Col (This : in Frame) return Curses.Column_Position
is
begin
return This.Col;
end Get_Col;
procedure Internal_Add (This : in Frame;
Char : in Character;
Row : in Curses.Line_Position;
Col : in Curses.Column_Position)
is
package Entities renames Crawler.Entities;
use type Curses.Line_Position,
Curses.Column_Position;
begin
-- tbd: Fix below to only ignore exception in bottom corner case.
-- Alternately, use 'insert' rather than 'add' for corner case.
-- if Row = This.Height - 1
-- and then Col = This.Width - 1
-- then
-- Curses.Add (Win => This.Window,
-- Line => Row,
-- Column => Col,
-- Ch => Char);
-- else
begin
Curses.Add (Win => This.Window,
Line => Row
,Column => Col
,Ch => Char);
exception
when Curses.Curses_Exception =>
null;
end;
-- end if;
end;
procedure Add (This : in Frame;
Character : in Crawler.Entities.Character)
is
package Entities renames Crawler.Entities;
begin
This.Internal_Add (Char => Entities.Get_Symbol (Character),
Row => Entities.Get_Row (Character),
Col => Entities.Get_Col (Character));
end Add;
procedure Add (This : in Frame;
Character : in out Crawler.Entities.Character;
Row : in Curses.Line_Position;
Col : in Curses.Column_Position)
is
use type Curses.Line_Position;
use type Curses.Column_Position;
package Entities renames Crawler.Entities;
begin
if ((Row >= 0 and then Row < This.Height)
and then (Col >= 0 and then Col < This.Width))
then
This.Erase (Character);
This.Internal_Add (Char => Entities.Get_Symbol (Character),
Row => Row,
Col => Col);
Crawler.Entities.Set_Position (Character, Row => Row, Col => Col);
end if;
end Add;
procedure Center(This : in out Frame;
Character : in Crawler.Entities.Character)
is
begin
if This.Has_Parent_Window
then
declare
package Curses renames Terminal_Interface.Curses;
use type Curses.Line_Position;
use type Curses.Column_Position;
Parent_Lines : Curses.Line_Count;
Parent_Columns : Curses.Column_Count;
Row : Curses.Line_Position := This.Row;
R : Integer := Integer (Crawler.Entities.Get_Row (Character) - (This.Height/2));
Col : Curses.Column_Position := This.Col;
C : Integer := Integer (Crawler.Entities.Get_Col (Character) - (This.Width/2));
begin
Curses.Get_Size(Win => This.Parent
,Number_Of_Lines => Parent_Lines
,Number_Of_Columns => Parent_Columns);
if C + Integer (This.Width) >= Integer (Parent_Columns)
then
declare
Col_Delta : Integer := Integer (Parent_Columns - (Curses.Column_Position (C) + This.Width));
begin
C := C + Col_Delta;
end;
end if;
if R + Integer (This.Height) >= Integer (Parent_Lines)
then
declare
Row_Delta : Integer := Integer (Parent_Lines - (Curses.Line_Position (R) + This.Height));
begin
R := R + Row_Delta;
end;
end if;
if R < 0 then
Row := 0;
else
Row := Curses.line_Position (R);
end if;
if C < 0 then
Col := 0;
else
Col := Curses.Column_Position (C);
end if;
This.Move (Row => Row, Col => Col);
end;
end if;
end Center;
procedure Fill_Window (This : in out Frame)
is
package Curses renames Terminal_Interface.Curses;
use type Curses.Line_Position;
use type Curses.Column_Position;
Max_Height : Curses.Line_Position := This.Height / 2;
Max_Width : Curses.Column_Position := This.Width / 2;
test : exception;
begin
Terminal_Interface.Curses.Leave_Cursor_After_Update (This.Window);
-- Fill the first region with 0's
for y in 0 .. Max_Height-1
loop
for x in 0 .. Max_Width-1
loop
This.Internal_Add (Char => '0',
Row => y,
Col => x);
end loop;
end loop;
-- Fill the second region with 1's
for y in 0 .. Max_Height-1
loop
for x in Max_Width .. This.Width-1
loop
This.Internal_Add (Char => '1',
Row => y,
Col => x);
end loop;
end loop;
-- Fill the third region with 2's
for y in Max_Height .. This.Height-1
loop
for x in 0 .. This.Width-1
loop
This.Internal_Add (Char => '2',
Row => y,
Col => x);
end loop;
end loop;
-- Fill the fourth region with 3's
for y in Max_Height .. This.Height-1
loop
for x in Max_Width .. This.Width-1
loop
This.Internal_Add (Char => '3',
Row => y,
Col => x);
end loop;
end loop;
for y in 0 .. This.Height-1
loop
This.Internal_Add (Char => '-',
Row => y,
Col => 0);
This.Internal_Add (Char => '-',
Row => y,
Col => This.Width - 1);
end loop;
for x in 0 .. This.Width-1
loop
This.Internal_Add (Char => '|',
Row => 0,
Col => x);
This.Internal_Add (Char => '|',
Row => This.Height - 1,
Col => x);
end loop;
end Fill_Window;
procedure Move (This : in out Frame;
Row : Curses.Line_Position;
Col : Curses.Column_Position)
is
package Curses renames Terminal_Interface.Curses;
begin
if This.Has_Parent_Window
then
Curses.Move_Derived_Window (This.Window, Line => Row, Column => Col);
This.Row := Row;
This.Col := Col;
This.Refresh;
end if;
end Move;
procedure Refresh (This : in out Frame)
is
begin
if This.Has_Parent_Window
then
Curses.Touch (Win => This.Parent);
end if;
Curses.Refresh (Win => This.Window);
end Refresh;
procedure Erase (This : in Frame;
Character : in Crawler.Entities.Character)
is
package Entities renames Crawler.Entities;
begin
This.Internal_Add (Char => ' ',
Row => Entities.Get_Row (Character),
Col => Entities.Get_Col (Character));
end Erase;
overriding
procedure Finalize (This : in out Frame)
is
package Curses renames Terminal_Interface.Curses;
begin
-- Clear ncurses data structures
Curses.Delete(This.Window);
end Finalize;
end Crawler_Interface;
|
pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with GL_gl_h;
with System;
package GL_glu_h is
-- arg-macro: function gluErrorStringWIN (errCode)
-- return (LPCWSTR) gluErrorString(errCode);
GLU_VERSION_1_1 : constant := 1; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:111
GLU_VERSION_1_2 : constant := 1; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:112
GLU_INVALID_ENUM : constant := 100900; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:114
GLU_INVALID_VALUE : constant := 100901; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:115
GLU_OUT_OF_MEMORY : constant := 100902; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:116
GLU_INCOMPATIBLE_GL_VERSION : constant := 100903; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:117
GLU_VERSION : constant := 100800; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:119
GLU_EXTENSIONS : constant := 100801; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:120
-- unsupported macro: GLU_TRUE GL_TRUE
-- unsupported macro: GLU_FALSE GL_FALSE
GLU_SMOOTH : constant := 100000; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:125
GLU_FLAT : constant := 100001; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:126
GLU_NONE : constant := 100002; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:127
GLU_POINT : constant := 100010; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:129
GLU_LINE : constant := 100011; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:130
GLU_FILL : constant := 100012; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:131
GLU_SILHOUETTE : constant := 100013; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:132
GLU_OUTSIDE : constant := 100020; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:134
GLU_INSIDE : constant := 100021; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:135
GLU_TESS_MAX_COORD : constant := 1.0e150; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:137
GLU_TESS_WINDING_RULE : constant := 100140; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:139
GLU_TESS_BOUNDARY_ONLY : constant := 100141; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:140
GLU_TESS_TOLERANCE : constant := 100142; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:141
GLU_TESS_WINDING_ODD : constant := 100130; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:143
GLU_TESS_WINDING_NONZERO : constant := 100131; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:144
GLU_TESS_WINDING_POSITIVE : constant := 100132; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:145
GLU_TESS_WINDING_NEGATIVE : constant := 100133; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:146
GLU_TESS_WINDING_ABS_GEQ_TWO : constant := 100134; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:147
GLU_TESS_BEGIN : constant := 100100; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:149
GLU_TESS_VERTEX : constant := 100101; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:150
GLU_TESS_END : constant := 100102; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:151
GLU_TESS_ERROR : constant := 100103; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:152
GLU_TESS_EDGE_FLAG : constant := 100104; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:153
GLU_TESS_COMBINE : constant := 100105; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:154
GLU_TESS_BEGIN_DATA : constant := 100106; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:155
GLU_TESS_VERTEX_DATA : constant := 100107; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:156
GLU_TESS_END_DATA : constant := 100108; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:157
GLU_TESS_ERROR_DATA : constant := 100109; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:158
GLU_TESS_EDGE_FLAG_DATA : constant := 100110; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:159
GLU_TESS_COMBINE_DATA : constant := 100111; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:160
GLU_TESS_ERROR1 : constant := 100151; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:162
GLU_TESS_ERROR2 : constant := 100152; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:163
GLU_TESS_ERROR3 : constant := 100153; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:164
GLU_TESS_ERROR4 : constant := 100154; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:165
GLU_TESS_ERROR5 : constant := 100155; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:166
GLU_TESS_ERROR6 : constant := 100156; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:167
GLU_TESS_ERROR7 : constant := 100157; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:168
GLU_TESS_ERROR8 : constant := 100158; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:169
-- unsupported macro: GLU_TESS_MISSING_BEGIN_POLYGON GLU_TESS_ERROR1
-- unsupported macro: GLU_TESS_MISSING_BEGIN_CONTOUR GLU_TESS_ERROR2
-- unsupported macro: GLU_TESS_MISSING_END_POLYGON GLU_TESS_ERROR3
-- unsupported macro: GLU_TESS_MISSING_END_CONTOUR GLU_TESS_ERROR4
-- unsupported macro: GLU_TESS_COORD_TOO_LARGE GLU_TESS_ERROR5
-- unsupported macro: GLU_TESS_NEED_COMBINE_CALLBACK GLU_TESS_ERROR6
GLU_AUTO_LOAD_MATRIX : constant := 100200; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:178
GLU_CULLING : constant := 100201; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:179
GLU_SAMPLING_TOLERANCE : constant := 100203; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:180
GLU_DISPLAY_MODE : constant := 100204; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:181
GLU_PARAMETRIC_TOLERANCE : constant := 100202; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:182
GLU_SAMPLING_METHOD : constant := 100205; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:183
GLU_U_STEP : constant := 100206; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:184
GLU_V_STEP : constant := 100207; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:185
GLU_PATH_LENGTH : constant := 100215; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:187
GLU_PARAMETRIC_ERROR : constant := 100216; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:188
GLU_DOMAIN_DISTANCE : constant := 100217; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:189
GLU_MAP1_TRIM_2 : constant := 100210; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:191
GLU_MAP1_TRIM_3 : constant := 100211; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:192
GLU_OUTLINE_POLYGON : constant := 100240; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:194
GLU_OUTLINE_PATCH : constant := 100241; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:195
GLU_NURBS_ERROR1 : constant := 100251; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:197
GLU_NURBS_ERROR2 : constant := 100252; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:198
GLU_NURBS_ERROR3 : constant := 100253; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:199
GLU_NURBS_ERROR4 : constant := 100254; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:200
GLU_NURBS_ERROR5 : constant := 100255; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:201
GLU_NURBS_ERROR6 : constant := 100256; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:202
GLU_NURBS_ERROR7 : constant := 100257; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:203
GLU_NURBS_ERROR8 : constant := 100258; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:204
GLU_NURBS_ERROR9 : constant := 100259; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:205
GLU_NURBS_ERROR10 : constant := 100260; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:206
GLU_NURBS_ERROR11 : constant := 100261; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:207
GLU_NURBS_ERROR12 : constant := 100262; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:208
GLU_NURBS_ERROR13 : constant := 100263; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:209
GLU_NURBS_ERROR14 : constant := 100264; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:210
GLU_NURBS_ERROR15 : constant := 100265; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:211
GLU_NURBS_ERROR16 : constant := 100266; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:212
GLU_NURBS_ERROR17 : constant := 100267; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:213
GLU_NURBS_ERROR18 : constant := 100268; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:214
GLU_NURBS_ERROR19 : constant := 100269; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:215
GLU_NURBS_ERROR20 : constant := 100270; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:216
GLU_NURBS_ERROR21 : constant := 100271; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:217
GLU_NURBS_ERROR22 : constant := 100272; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:218
GLU_NURBS_ERROR23 : constant := 100273; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:219
GLU_NURBS_ERROR24 : constant := 100274; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:220
GLU_NURBS_ERROR25 : constant := 100275; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:221
GLU_NURBS_ERROR26 : constant := 100276; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:222
GLU_NURBS_ERROR27 : constant := 100277; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:223
GLU_NURBS_ERROR28 : constant := 100278; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:224
GLU_NURBS_ERROR29 : constant := 100279; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:225
GLU_NURBS_ERROR30 : constant := 100280; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:226
GLU_NURBS_ERROR31 : constant := 100281; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:227
GLU_NURBS_ERROR32 : constant := 100282; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:228
GLU_NURBS_ERROR33 : constant := 100283; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:229
GLU_NURBS_ERROR34 : constant := 100284; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:230
GLU_NURBS_ERROR35 : constant := 100285; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:231
GLU_NURBS_ERROR36 : constant := 100286; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:232
GLU_NURBS_ERROR37 : constant := 100287; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:233
GLU_CW : constant := 100120; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:239
GLU_CCW : constant := 100121; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:240
GLU_INTERIOR : constant := 100122; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:241
GLU_EXTERIOR : constant := 100123; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:242
GLU_UNKNOWN : constant := 100124; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:243
-- unsupported macro: GLU_BEGIN GLU_TESS_BEGIN
-- unsupported macro: GLU_VERTEX GLU_TESS_VERTEX
-- unsupported macro: GLU_END GLU_TESS_END
-- unsupported macro: GLU_ERROR GLU_TESS_ERROR
-- unsupported macro: GLU_EDGE_FLAG GLU_TESS_EDGE_FLAG
function gluErrorString (errCode : GL_gl_h.GLenum) return access GL_gl_h.GLubyte; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:24
pragma Import (Stdcall, gluErrorString, "gluErrorString");
function gluErrorUnicodeStringEXT (errCode : GL_gl_h.GLenum) return access wchar_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:25
pragma Import (Stdcall, gluErrorUnicodeStringEXT, "gluErrorUnicodeStringEXT");
function gluGetString (name : GL_gl_h.GLenum) return access GL_gl_h.GLubyte; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:26
pragma Import (Stdcall, gluGetString, "gluGetString");
procedure gluOrtho2D
(left : GL_gl_h.GLdouble;
right : GL_gl_h.GLdouble;
bottom : GL_gl_h.GLdouble;
top : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:27
pragma Import (Stdcall, gluOrtho2D, "gluOrtho2D");
procedure gluPerspective
(fovy : GL_gl_h.GLdouble;
aspect : GL_gl_h.GLdouble;
zNear : GL_gl_h.GLdouble;
zFar : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:28
pragma Import (Stdcall, gluPerspective, "gluPerspective");
procedure gluPickMatrix
(x : GL_gl_h.GLdouble;
y : GL_gl_h.GLdouble;
width : GL_gl_h.GLdouble;
height : GL_gl_h.GLdouble;
viewport : access GL_gl_h.GLint); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:29
pragma Import (Stdcall, gluPickMatrix, "gluPickMatrix");
procedure gluLookAt
(eyex : GL_gl_h.GLdouble;
eyey : GL_gl_h.GLdouble;
eyez : GL_gl_h.GLdouble;
centerx : GL_gl_h.GLdouble;
centery : GL_gl_h.GLdouble;
centerz : GL_gl_h.GLdouble;
upx : GL_gl_h.GLdouble;
upy : GL_gl_h.GLdouble;
upz : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:30
pragma Import (Stdcall, gluLookAt, "gluLookAt");
function gluProject
(objx : GL_gl_h.GLdouble;
objy : GL_gl_h.GLdouble;
objz : GL_gl_h.GLdouble;
modelMatrix : access GL_gl_h.GLdouble;
projMatrix : access GL_gl_h.GLdouble;
viewport : access GL_gl_h.GLint;
winx : access GL_gl_h.GLdouble;
winy : access GL_gl_h.GLdouble;
winz : access GL_gl_h.GLdouble) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:31
pragma Import (Stdcall, gluProject, "gluProject");
function gluUnProject
(winx : GL_gl_h.GLdouble;
winy : GL_gl_h.GLdouble;
winz : GL_gl_h.GLdouble;
modelMatrix : access GL_gl_h.GLdouble;
projMatrix : access GL_gl_h.GLdouble;
viewport : access GL_gl_h.GLint;
objx : access GL_gl_h.GLdouble;
objy : access GL_gl_h.GLdouble;
objz : access GL_gl_h.GLdouble) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:32
pragma Import (Stdcall, gluUnProject, "gluUnProject");
function gluScaleImage
(format : GL_gl_h.GLenum;
widthin : GL_gl_h.GLint;
heightin : GL_gl_h.GLint;
typein : GL_gl_h.GLenum;
datain : System.Address;
widthout : GL_gl_h.GLint;
heightout : GL_gl_h.GLint;
typeout : GL_gl_h.GLenum;
dataout : System.Address) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:33
pragma Import (Stdcall, gluScaleImage, "gluScaleImage");
function gluBuild1DMipmaps
(target : GL_gl_h.GLenum;
components : GL_gl_h.GLint;
width : GL_gl_h.GLint;
format : GL_gl_h.GLenum;
c_type : GL_gl_h.GLenum;
data : System.Address) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:34
pragma Import (Stdcall, gluBuild1DMipmaps, "gluBuild1DMipmaps");
function gluBuild2DMipmaps
(target : GL_gl_h.GLenum;
components : GL_gl_h.GLint;
width : GL_gl_h.GLint;
height : GL_gl_h.GLint;
format : GL_gl_h.GLenum;
c_type : GL_gl_h.GLenum;
data : System.Address) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:35
pragma Import (Stdcall, gluBuild2DMipmaps, "gluBuild2DMipmaps");
-- skipped empty struct GLUnurbs
-- skipped empty struct GLUquadric
-- skipped empty struct GLUtesselator
-- skipped empty struct GLUnurbsObj
-- skipped empty struct GLUquadricObj
-- skipped empty struct GLUtesselatorObj
-- skipped empty struct GLUtriangulatorObj
function gluNewQuadric return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:58
pragma Import (Stdcall, gluNewQuadric, "gluNewQuadric");
procedure gluDeleteQuadric (state : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:59
pragma Import (Stdcall, gluDeleteQuadric, "gluDeleteQuadric");
procedure gluQuadricNormals (quadObject : System.Address; normals : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:60
pragma Import (Stdcall, gluQuadricNormals, "gluQuadricNormals");
procedure gluQuadricTexture (quadObject : System.Address; textureCoords : GL_gl_h.GLboolean); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:61
pragma Import (Stdcall, gluQuadricTexture, "gluQuadricTexture");
procedure gluQuadricOrientation (quadObject : System.Address; orientation : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:62
pragma Import (Stdcall, gluQuadricOrientation, "gluQuadricOrientation");
procedure gluQuadricDrawStyle (quadObject : System.Address; drawStyle : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:63
pragma Import (Stdcall, gluQuadricDrawStyle, "gluQuadricDrawStyle");
procedure gluCylinder
(qobj : System.Address;
baseRadius : GL_gl_h.GLdouble;
topRadius : GL_gl_h.GLdouble;
height : GL_gl_h.GLdouble;
slices : GL_gl_h.GLint;
stacks : GL_gl_h.GLint); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:64
pragma Import (Stdcall, gluCylinder, "gluCylinder");
procedure gluDisk
(qobj : System.Address;
innerRadius : GL_gl_h.GLdouble;
outerRadius : GL_gl_h.GLdouble;
slices : GL_gl_h.GLint;
loops : GL_gl_h.GLint); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:65
pragma Import (Stdcall, gluDisk, "gluDisk");
procedure gluPartialDisk
(qobj : System.Address;
innerRadius : GL_gl_h.GLdouble;
outerRadius : GL_gl_h.GLdouble;
slices : GL_gl_h.GLint;
loops : GL_gl_h.GLint;
startAngle : GL_gl_h.GLdouble;
sweepAngle : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:66
pragma Import (Stdcall, gluPartialDisk, "gluPartialDisk");
procedure gluSphere
(qobj : System.Address;
radius : GL_gl_h.GLdouble;
slices : GL_gl_h.GLint;
stacks : GL_gl_h.GLint); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:67
pragma Import (Stdcall, gluSphere, "gluSphere");
procedure gluQuadricCallback
(qobj : System.Address;
which : GL_gl_h.GLenum;
fn : access procedure); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:68
pragma Import (Stdcall, gluQuadricCallback, "gluQuadricCallback");
function gluNewTess return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:69
pragma Import (Stdcall, gluNewTess, "gluNewTess");
procedure gluDeleteTess (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:70
pragma Import (Stdcall, gluDeleteTess, "gluDeleteTess");
procedure gluTessBeginPolygon (tess : System.Address; polygon_data : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:71
pragma Import (Stdcall, gluTessBeginPolygon, "gluTessBeginPolygon");
procedure gluTessBeginContour (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:72
pragma Import (Stdcall, gluTessBeginContour, "gluTessBeginContour");
procedure gluTessVertex
(tess : System.Address;
coords : access GL_gl_h.GLdouble;
data : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:73
pragma Import (Stdcall, gluTessVertex, "gluTessVertex");
procedure gluTessEndContour (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:74
pragma Import (Stdcall, gluTessEndContour, "gluTessEndContour");
procedure gluTessEndPolygon (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:75
pragma Import (Stdcall, gluTessEndPolygon, "gluTessEndPolygon");
procedure gluTessProperty
(tess : System.Address;
which : GL_gl_h.GLenum;
value : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:76
pragma Import (Stdcall, gluTessProperty, "gluTessProperty");
procedure gluTessNormal
(tess : System.Address;
x : GL_gl_h.GLdouble;
y : GL_gl_h.GLdouble;
z : GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:77
pragma Import (Stdcall, gluTessNormal, "gluTessNormal");
procedure gluTessCallback
(tess : System.Address;
which : GL_gl_h.GLenum;
fn : access procedure); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:78
pragma Import (Stdcall, gluTessCallback, "gluTessCallback");
procedure gluGetTessProperty
(tess : System.Address;
which : GL_gl_h.GLenum;
value : access GL_gl_h.GLdouble); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:79
pragma Import (Stdcall, gluGetTessProperty, "gluGetTessProperty");
function gluNewNurbsRenderer return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:80
pragma Import (Stdcall, gluNewNurbsRenderer, "gluNewNurbsRenderer");
procedure gluDeleteNurbsRenderer (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:81
pragma Import (Stdcall, gluDeleteNurbsRenderer, "gluDeleteNurbsRenderer");
procedure gluBeginSurface (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:82
pragma Import (Stdcall, gluBeginSurface, "gluBeginSurface");
procedure gluBeginCurve (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:83
pragma Import (Stdcall, gluBeginCurve, "gluBeginCurve");
procedure gluEndCurve (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:84
pragma Import (Stdcall, gluEndCurve, "gluEndCurve");
procedure gluEndSurface (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:85
pragma Import (Stdcall, gluEndSurface, "gluEndSurface");
procedure gluBeginTrim (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:86
pragma Import (Stdcall, gluBeginTrim, "gluBeginTrim");
procedure gluEndTrim (nobj : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:87
pragma Import (Stdcall, gluEndTrim, "gluEndTrim");
procedure gluPwlCurve
(nobj : System.Address;
count : GL_gl_h.GLint;
c_array : access GL_gl_h.GLfloat;
stride : GL_gl_h.GLint;
c_type : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:88
pragma Import (Stdcall, gluPwlCurve, "gluPwlCurve");
procedure gluNurbsCurve
(nobj : System.Address;
nknots : GL_gl_h.GLint;
knot : access GL_gl_h.GLfloat;
stride : GL_gl_h.GLint;
ctlarray : access GL_gl_h.GLfloat;
order : GL_gl_h.GLint;
c_type : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:89
pragma Import (Stdcall, gluNurbsCurve, "gluNurbsCurve");
procedure gluNurbsSurface
(nobj : System.Address;
sknot_count : GL_gl_h.GLint;
sknot : access float;
tknot_count : GL_gl_h.GLint;
tknot : access GL_gl_h.GLfloat;
s_stride : GL_gl_h.GLint;
t_stride : GL_gl_h.GLint;
ctlarray : access GL_gl_h.GLfloat;
sorder : GL_gl_h.GLint;
torder : GL_gl_h.GLint;
c_type : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:90
pragma Import (Stdcall, gluNurbsSurface, "gluNurbsSurface");
procedure gluLoadSamplingMatrices
(nobj : System.Address;
modelMatrix : access GL_gl_h.GLfloat;
projMatrix : access GL_gl_h.GLfloat;
viewport : access GL_gl_h.GLint); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:91
pragma Import (Stdcall, gluLoadSamplingMatrices, "gluLoadSamplingMatrices");
procedure gluNurbsProperty
(nobj : System.Address;
property : GL_gl_h.GLenum;
value : GL_gl_h.GLfloat); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:92
pragma Import (Stdcall, gluNurbsProperty, "gluNurbsProperty");
procedure gluGetNurbsProperty
(nobj : System.Address;
property : GL_gl_h.GLenum;
value : access GL_gl_h.GLfloat); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:93
pragma Import (Stdcall, gluGetNurbsProperty, "gluGetNurbsProperty");
procedure gluNurbsCallback
(nobj : System.Address;
which : GL_gl_h.GLenum;
fn : access procedure); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:94
pragma Import (Stdcall, gluNurbsCallback, "gluNurbsCallback");
type GLUquadricErrorProc is access procedure (arg1 : GL_gl_h.GLenum);
pragma Convention (C, GLUquadricErrorProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:96
type GLUtessBeginProc is access procedure (arg1 : GL_gl_h.GLenum);
pragma Convention (C, GLUtessBeginProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:97
type GLUtessEdgeFlagProc is access procedure (arg1 : GL_gl_h.GLboolean);
pragma Convention (C, GLUtessEdgeFlagProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:98
type GLUtessVertexProc is access procedure (arg1 : System.Address);
pragma Convention (C, GLUtessVertexProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:99
type GLUtessEndProc is access procedure;
pragma Convention (C, GLUtessEndProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:100
type GLUtessErrorProc is access procedure (arg1 : GL_gl_h.GLenum);
pragma Convention (C, GLUtessErrorProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:101
type GLUtessCombineProc is access procedure
(arg1 : access GL_gl_h.GLdouble;
arg2 : System.Address;
arg3 : access GL_gl_h.GLfloat;
arg4 : System.Address);
pragma Convention (C, GLUtessCombineProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:102
type GLUtessBeginDataProc is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address);
pragma Convention (C, GLUtessBeginDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:103
type GLUtessEdgeFlagDataProc is access procedure (arg1 : GL_gl_h.GLboolean; arg2 : System.Address);
pragma Convention (C, GLUtessEdgeFlagDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:104
type GLUtessVertexDataProc is access procedure (arg1 : System.Address; arg2 : System.Address);
pragma Convention (C, GLUtessVertexDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:105
type GLUtessEndDataProc is access procedure (arg1 : System.Address);
pragma Convention (C, GLUtessEndDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:106
type GLUtessErrorDataProc is access procedure (arg1 : GL_gl_h.GLenum; arg2 : System.Address);
pragma Convention (C, GLUtessErrorDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:107
type GLUtessCombineDataProc is access procedure
(arg1 : access GL_gl_h.GLdouble;
arg2 : System.Address;
arg3 : access GL_gl_h.GLfloat;
arg4 : System.Address;
arg5 : System.Address);
pragma Convention (C, GLUtessCombineDataProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:108
type GLUnurbsErrorProc is access procedure (arg1 : GL_gl_h.GLenum);
pragma Convention (C, GLUnurbsErrorProc); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:109
procedure gluBeginPolygon (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:235
pragma Import (Stdcall, gluBeginPolygon, "gluBeginPolygon");
procedure gluNextContour (tess : System.Address; c_type : GL_gl_h.GLenum); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:236
pragma Import (Stdcall, gluNextContour, "gluNextContour");
procedure gluEndPolygon (tess : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/GL/glu.h:237
pragma Import (Stdcall, gluEndPolygon, "gluEndPolygon");
end GL_glu_h;
|
-- 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_get_drawable_attributes_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;
drawable : aliased xcb.xcb_glx_drawable_t;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb
.xcb_glx_get_drawable_attributes_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_drawable_attributes_request_t.Item,
Element_Array =>
xcb.xcb_glx_get_drawable_attributes_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_get_drawable_attributes_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_get_drawable_attributes_request_t.Pointer,
Element_Array =>
xcb.xcb_glx_get_drawable_attributes_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_glx_get_drawable_attributes_request_t;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
package HAL.Block_Drivers is
type Block_Driver is limited interface;
type Any_Block_Driver is access all Block_Driver'Class;
subtype Block is UInt8_Array;
Block_Size : constant := 512;
-- Size of a block, for block number.
function Read
(This : in out Block_Driver;
Block_Number : UInt64;
Data : out Block)
return Boolean is abstract
with Pre'Class => Data'Length mod Block_Size = 0;
function Write
(This : in out Block_Driver;
Block_Number : UInt64;
Data : Block)
return Boolean is abstract
with Pre'Class => Data'Length mod Block_Size = 0;
end HAL.Block_Drivers;
|
with Ahven.Framework;
package My_Tests is
type Test is new Ahven.Framework.Test_Case with null record;
procedure Initialize (T : in out Test);
procedure PCRE_MATCH;
procedure PCRE_MATCH2;
end My_Tests;
|
-- This spec has been automatically generated from out.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
-- Calibration Data
package MSP430_SVD.CALIBRATION_DATA is
pragma Preelaborate;
---------------
-- Registers --
---------------
-----------------
-- Peripherals --
-----------------
-- Calibration Data
type CALIBRATION_DATA_Peripheral is record
-- DCOCTL Calibration Data for 16MHz
CALDCO_16MHZ : aliased MSP430_SVD.Byte;
-- BCSCTL1 Calibration Data for 16MHz
CALBC1_16MHZ : aliased MSP430_SVD.Byte;
-- DCOCTL Calibration Data for 12MHz
CALDCO_12MHZ : aliased MSP430_SVD.Byte;
-- BCSCTL1 Calibration Data for 12MHz
CALBC1_12MHZ : aliased MSP430_SVD.Byte;
-- DCOCTL Calibration Data for 8MHz
CALDCO_8MHZ : aliased MSP430_SVD.Byte;
-- BCSCTL1 Calibration Data for 8MHz
CALBC1_8MHZ : aliased MSP430_SVD.Byte;
-- DCOCTL Calibration Data for 1MHz
CALDCO_1MHZ : aliased MSP430_SVD.Byte;
-- BCSCTL1 Calibration Data for 1MHz
CALBC1_1MHZ : aliased MSP430_SVD.Byte;
end record
with Volatile;
for CALIBRATION_DATA_Peripheral use record
CALDCO_16MHZ at 16#0# range 0 .. 7;
CALBC1_16MHZ at 16#1# range 0 .. 7;
CALDCO_12MHZ at 16#2# range 0 .. 7;
CALBC1_12MHZ at 16#3# range 0 .. 7;
CALDCO_8MHZ at 16#4# range 0 .. 7;
CALBC1_8MHZ at 16#5# range 0 .. 7;
CALDCO_1MHZ at 16#6# range 0 .. 7;
CALBC1_1MHZ at 16#7# range 0 .. 7;
end record;
-- Calibration Data
CALIBRATION_DATA_Periph : aliased CALIBRATION_DATA_Peripheral
with Import, Address => CALIBRATION_DATA_Base;
end MSP430_SVD.CALIBRATION_DATA;
|
pragma Ada_2005;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with SDL_stdinc_h;
with System;
with Interfaces.C.Strings;
limited with SDL_rwops_h;
package SDL_audio_h is
SDL_AUDIO_MASK_BITSIZE : constant := (16#FF#); -- ..\SDL2_tmp\SDL_audio.h:71
SDL_AUDIO_MASK_DATATYPE : constant := (2**8); -- ..\SDL2_tmp\SDL_audio.h:72
SDL_AUDIO_MASK_ENDIAN : constant := (2**12); -- ..\SDL2_tmp\SDL_audio.h:73
SDL_AUDIO_MASK_SIGNED : constant := (2**15); -- ..\SDL2_tmp\SDL_audio.h:74
-- arg-macro: function SDL_AUDIO_BITSIZE (x)
-- return x and SDL_AUDIO_MASK_BITSIZE;
-- arg-macro: function SDL_AUDIO_ISFLOAT (x)
-- return x and SDL_AUDIO_MASK_DATATYPE;
-- arg-macro: function SDL_AUDIO_ISBIGENDIAN (x)
-- return x and SDL_AUDIO_MASK_ENDIAN;
-- arg-macro: function SDL_AUDIO_ISSIGNED (x)
-- return x and SDL_AUDIO_MASK_SIGNED;
-- arg-macro: function SDL_AUDIO_ISINT (x)
-- return notSDL_AUDIO_ISFLOAT(x);
-- arg-macro: function SDL_AUDIO_ISLITTLEENDIAN (x)
-- return notSDL_AUDIO_ISBIGENDIAN(x);
-- arg-macro: function SDL_AUDIO_ISUNSIGNED (x)
-- return notSDL_AUDIO_ISSIGNED(x);
AUDIO_U8 : constant := 16#0008#; -- ..\SDL2_tmp\SDL_audio.h:89
AUDIO_S8 : constant := 16#8008#; -- ..\SDL2_tmp\SDL_audio.h:90
AUDIO_U16LSB : constant := 16#0010#; -- ..\SDL2_tmp\SDL_audio.h:91
AUDIO_S16LSB : constant := 16#8010#; -- ..\SDL2_tmp\SDL_audio.h:92
AUDIO_U16MSB : constant := 16#1010#; -- ..\SDL2_tmp\SDL_audio.h:93
AUDIO_S16MSB : constant := 16#9010#; -- ..\SDL2_tmp\SDL_audio.h:94
-- unsupported macro: AUDIO_U16 AUDIO_U16LSB
-- unsupported macro: AUDIO_S16 AUDIO_S16LSB
AUDIO_S32LSB : constant := 16#8020#; -- ..\SDL2_tmp\SDL_audio.h:103
AUDIO_S32MSB : constant := 16#9020#; -- ..\SDL2_tmp\SDL_audio.h:104
-- unsupported macro: AUDIO_S32 AUDIO_S32LSB
AUDIO_F32LSB : constant := 16#8120#; -- ..\SDL2_tmp\SDL_audio.h:112
AUDIO_F32MSB : constant := 16#9120#; -- ..\SDL2_tmp\SDL_audio.h:113
-- unsupported macro: AUDIO_F32 AUDIO_F32LSB
-- unsupported macro: AUDIO_U16SYS AUDIO_U16LSB
-- unsupported macro: AUDIO_S16SYS AUDIO_S16LSB
-- unsupported macro: AUDIO_S32SYS AUDIO_S32LSB
-- unsupported macro: AUDIO_F32SYS AUDIO_F32LSB
SDL_AUDIO_ALLOW_FREQUENCY_CHANGE : constant := 16#00000001#; -- ..\SDL2_tmp\SDL_audio.h:140
SDL_AUDIO_ALLOW_FORMAT_CHANGE : constant := 16#00000002#; -- ..\SDL2_tmp\SDL_audio.h:141
SDL_AUDIO_ALLOW_CHANNELS_CHANGE : constant := 16#00000004#; -- ..\SDL2_tmp\SDL_audio.h:142
SDL_AUDIO_ALLOW_SAMPLES_CHANGE : constant := 16#00000008#; -- ..\SDL2_tmp\SDL_audio.h:143
-- unsupported macro: SDL_AUDIO_ALLOW_ANY_CHANGE (SDL_AUDIO_ALLOW_FREQUENCY_CHANGE|SDL_AUDIO_ALLOW_FORMAT_CHANGE|SDL_AUDIO_ALLOW_CHANNELS_CHANGE|SDL_AUDIO_ALLOW_SAMPLES_CHANGE)
SDL_AUDIOCVT_MAX_FILTERS : constant := 9; -- ..\SDL2_tmp\SDL_audio.h:203
-- unsupported macro: SDL_AUDIOCVT_PACKED __attribute__((packed))
-- arg-macro: procedure SDL_LoadWAV (file, spec, audio_buf, audio_len)
-- SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
SDL_MIX_MAXVOLUME : constant := 128; -- ..\SDL2_tmp\SDL_audio.h:616
-- Simple DirectMedia Layer
-- Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
-- 3. This notice may not be removed or altered from any source distribution.
--
--*
-- * \file SDL_audio.h
-- *
-- * Access to the raw audio mixing buffer for the SDL library.
--
-- Set up for C function definitions, even when using C++
--*
-- * \brief Audio format flags.
-- *
-- * These are what the 16 bits in SDL_AudioFormat currently mean...
-- * (Unspecified bits are always zero).
-- *
-- * \verbatim
-- ++-----------------------sample is signed if set
-- ||
-- || ++-----------sample is bigendian if set
-- || ||
-- || || ++---sample is float if set
-- || || ||
-- || || || +---sample bit size---+
-- || || || | |
-- 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00
-- \endverbatim
-- *
-- * There are macros in SDL 2.0 and later to query these bits.
--
subtype SDL_AudioFormat is SDL_stdinc_h.Uint16; -- ..\SDL2_tmp\SDL_audio.h:64
--*
-- * \name Audio flags
--
-- @{
--*
-- * \name Audio format flags
-- *
-- * Defaults to LSB byte order.
--
-- @{
-- @}
--*
-- * \name int32 support
--
-- @{
-- @}
--*
-- * \name float32 support
--
-- @{
-- @}
--*
-- * \name Native audio byte ordering
--
-- @{
-- @}
--*
-- * \name Allow change flags
-- *
-- * Which audio format changes are allowed when opening a device.
--
-- @{
-- @}
-- @}
-- Audio flags
--*
-- * This function is called when the audio device needs more data.
-- *
-- * \param userdata An application-specific parameter saved in
-- * the SDL_AudioSpec structure
-- * \param stream A pointer to the audio data buffer.
-- * \param len The length of that buffer in bytes.
-- *
-- * Once the callback returns, the buffer will no longer be valid.
-- * Stereo samples are stored in a LRLRLR ordering.
-- *
-- * You can choose to avoid callbacks and use SDL_QueueAudio() instead, if
-- * you like. Just open your audio device with a NULL callback.
--
type SDL_AudioCallback is access procedure
(arg1 : System.Address;
arg2 : access SDL_stdinc_h.Uint8;
arg3 : int);
pragma Convention (C, SDL_AudioCallback); -- ..\SDL2_tmp\SDL_audio.h:163
--*
-- * The calculated values in this structure are calculated by SDL_OpenAudio().
-- *
-- * For multi-channel audio, the default SDL channel mapping is:
-- * 2: FL FR (stereo)
-- * 3: FL FR LFE (2.1 surround)
-- * 4: FL FR BL BR (quad)
-- * 5: FL FR FC BL BR (quad + center)
-- * 6: FL FR FC LFE SL SR (5.1 surround - last two can also be BL BR)
-- * 7: FL FR FC LFE BC SL SR (6.1 surround)
-- * 8: FL FR FC LFE BL BR SL SR (7.1 surround)
--
--*< DSP frequency -- samples per second
type SDL_AudioSpec is record
freq : aliased int; -- ..\SDL2_tmp\SDL_audio.h:180
format : aliased SDL_AudioFormat; -- ..\SDL2_tmp\SDL_audio.h:181
channels : aliased SDL_stdinc_h.Uint8; -- ..\SDL2_tmp\SDL_audio.h:182
silence : aliased SDL_stdinc_h.Uint8; -- ..\SDL2_tmp\SDL_audio.h:183
samples : aliased SDL_stdinc_h.Uint16; -- ..\SDL2_tmp\SDL_audio.h:184
padding : aliased SDL_stdinc_h.Uint16; -- ..\SDL2_tmp\SDL_audio.h:185
size : aliased SDL_stdinc_h.Uint32; -- ..\SDL2_tmp\SDL_audio.h:186
callback : SDL_AudioCallback; -- ..\SDL2_tmp\SDL_audio.h:187
userdata : System.Address; -- ..\SDL2_tmp\SDL_audio.h:188
end record;
pragma Convention (C_Pass_By_Copy, SDL_AudioSpec); -- ..\SDL2_tmp\SDL_audio.h:178
--*< Audio data format
--*< Number of channels: 1 mono, 2 stereo
--*< Audio buffer silence value (calculated)
--*< Audio buffer size in sample FRAMES (total samples divided by channel count)
--*< Necessary for some compile environments
--*< Audio buffer size in bytes (calculated)
--*< Callback that feeds the audio device (NULL to use SDL_QueueAudio()).
--*< Userdata passed to callback (ignored for NULL callbacks).
type SDL_AudioCVT;
type SDL_AudioFilter is access procedure (arg1 : access SDL_AudioCVT; arg2 : SDL_AudioFormat);
pragma Convention (C, SDL_AudioFilter); -- ..\SDL2_tmp\SDL_audio.h:193
--*
-- * \brief Upper limit of filters in SDL_AudioCVT
-- *
-- * The maximum number of SDL_AudioFilter functions in SDL_AudioCVT is
-- * currently limited to 9. The SDL_AudioCVT.filters array has 10 pointers,
-- * one of which is the terminating NULL pointer.
--
--*
-- * \struct SDL_AudioCVT
-- * \brief A structure to hold a set of audio conversion filters and buffers.
-- *
-- * Note that various parts of the conversion pipeline can take advantage
-- * of SIMD operations (like SSE2, for example). SDL_AudioCVT doesn't require
-- * you to pass it aligned data, but can possibly run much faster if you
-- * set both its (buf) field to a pointer that is aligned to 16 bytes, and its
-- * (len) field to something that's a multiple of 16, if possible.
--
-- This structure is 84 bytes on 32-bit architectures, make sure GCC doesn't
-- pad it out to 88 bytes to guarantee ABI compatibility between compilers.
-- vvv
-- The next time we rev the ABI, make sure to size the ints and add padding.
--
--
--*< Set to 1 if conversion possible
type SDL_AudioCVT_filters_array is array (0 .. 9) of SDL_AudioFilter;
type SDL_AudioCVT is record
needed : aliased int; -- ..\SDL2_tmp\SDL_audio.h:228
src_format : aliased SDL_AudioFormat; -- ..\SDL2_tmp\SDL_audio.h:229
dst_format : aliased SDL_AudioFormat; -- ..\SDL2_tmp\SDL_audio.h:230
rate_incr : aliased double; -- ..\SDL2_tmp\SDL_audio.h:231
buf : access SDL_stdinc_h.Uint8; -- ..\SDL2_tmp\SDL_audio.h:232
len : aliased int; -- ..\SDL2_tmp\SDL_audio.h:233
len_cvt : aliased int; -- ..\SDL2_tmp\SDL_audio.h:234
len_mult : aliased int; -- ..\SDL2_tmp\SDL_audio.h:235
len_ratio : aliased double; -- ..\SDL2_tmp\SDL_audio.h:236
filters : SDL_AudioCVT_filters_array; -- ..\SDL2_tmp\SDL_audio.h:237
filter_index : aliased int; -- ..\SDL2_tmp\SDL_audio.h:238
end record;
pragma Convention (C_Pass_By_Copy, SDL_AudioCVT); -- ..\SDL2_tmp\SDL_audio.h:226
--*< Source audio format
--*< Target audio format
--*< Rate conversion increment
--*< Buffer to hold entire audio data
--*< Length of original audio buffer
--*< Length of converted audio buffer
--*< buffer must be len*len_mult big
--*< Given len, final size is len*len_ratio
--*< NULL-terminated list of filter functions
--*< Current audio conversion function
-- Function prototypes
--*
-- * \name Driver discovery functions
-- *
-- * These functions return the list of built in audio drivers, in the
-- * order that they are normally initialized by default.
--
-- @{
function SDL_GetNumAudioDrivers return int; -- ..\SDL2_tmp\SDL_audio.h:251
pragma Import (C, SDL_GetNumAudioDrivers, "SDL_GetNumAudioDrivers");
function SDL_GetAudioDriver (index : int) return Interfaces.C.Strings.chars_ptr; -- ..\SDL2_tmp\SDL_audio.h:252
pragma Import (C, SDL_GetAudioDriver, "SDL_GetAudioDriver");
-- @}
--*
-- * \name Initialization and cleanup
-- *
-- * \internal These functions are used internally, and should not be used unless
-- * you have a specific need to specify the audio driver you want to
-- * use. You should normally use SDL_Init() or SDL_InitSubSystem().
--
-- @{
function SDL_AudioInit (driver_name : Interfaces.C.Strings.chars_ptr) return int; -- ..\SDL2_tmp\SDL_audio.h:263
pragma Import (C, SDL_AudioInit, "SDL_AudioInit");
procedure SDL_AudioQuit; -- ..\SDL2_tmp\SDL_audio.h:264
pragma Import (C, SDL_AudioQuit, "SDL_AudioQuit");
-- @}
--*
-- * This function returns the name of the current audio driver, or NULL
-- * if no driver has been initialized.
--
function SDL_GetCurrentAudioDriver return Interfaces.C.Strings.chars_ptr; -- ..\SDL2_tmp\SDL_audio.h:271
pragma Import (C, SDL_GetCurrentAudioDriver, "SDL_GetCurrentAudioDriver");
--*
-- * This function opens the audio device with the desired parameters, and
-- * returns 0 if successful, placing the actual hardware parameters in the
-- * structure pointed to by \c obtained. If \c obtained is NULL, the audio
-- * data passed to the callback function will be guaranteed to be in the
-- * requested format, and will be automatically converted to the hardware
-- * audio format if necessary. This function returns -1 if it failed
-- * to open the audio device, or couldn't set up the audio thread.
-- *
-- * When filling in the desired audio spec structure,
-- * - \c desired->freq should be the desired audio frequency in samples-per-
-- * second.
-- * - \c desired->format should be the desired audio format.
-- * - \c desired->samples is the desired size of the audio buffer, in
-- * samples. This number should be a power of two, and may be adjusted by
-- * the audio driver to a value more suitable for the hardware. Good values
-- * seem to range between 512 and 8096 inclusive, depending on the
-- * application and CPU speed. Smaller values yield faster response time,
-- * but can lead to underflow if the application is doing heavy processing
-- * and cannot fill the audio buffer in time. A stereo sample consists of
-- * both right and left channels in LR ordering.
-- * Note that the number of samples is directly related to time by the
-- * following formula: \code ms = (samples*1000)/freq \endcode
-- * - \c desired->size is the size in bytes of the audio buffer, and is
-- * calculated by SDL_OpenAudio().
-- * - \c desired->silence is the value used to set the buffer to silence,
-- * and is calculated by SDL_OpenAudio().
-- * - \c desired->callback should be set to a function that will be called
-- * when the audio device is ready for more data. It is passed a pointer
-- * to the audio buffer, and the length in bytes of the audio buffer.
-- * This function usually runs in a separate thread, and so you should
-- * protect data structures that it accesses by calling SDL_LockAudio()
-- * and SDL_UnlockAudio() in your code. Alternately, you may pass a NULL
-- * pointer here, and call SDL_QueueAudio() with some frequency, to queue
-- * more audio samples to be played (or for capture devices, call
-- * SDL_DequeueAudio() with some frequency, to obtain audio samples).
-- * - \c desired->userdata is passed as the first parameter to your callback
-- * function. If you passed a NULL callback, this value is ignored.
-- *
-- * The audio device starts out playing silence when it's opened, and should
-- * be enabled for playing by calling \c SDL_PauseAudio(0) when you are ready
-- * for your audio callback function to be called. Since the audio driver
-- * may modify the requested size of the audio buffer, you should allocate
-- * any local mixing buffers after you open the audio device.
--
function SDL_OpenAudio (desired : access SDL_AudioSpec; obtained : access SDL_AudioSpec) return int; -- ..\SDL2_tmp\SDL_audio.h:318
pragma Import (C, SDL_OpenAudio, "SDL_OpenAudio");
--*
-- * SDL Audio Device IDs.
-- *
-- * A successful call to SDL_OpenAudio() is always device id 1, and legacy
-- * SDL audio APIs assume you want this device ID. SDL_OpenAudioDevice() calls
-- * always returns devices >= 2 on success. The legacy calls are good both
-- * for backwards compatibility and when you don't care about multiple,
-- * specific, or capture devices.
--
subtype SDL_AudioDeviceID is SDL_stdinc_h.Uint32; -- ..\SDL2_tmp\SDL_audio.h:330
--*
-- * Get the number of available devices exposed by the current driver.
-- * Only valid after a successfully initializing the audio subsystem.
-- * Returns -1 if an explicit list of devices can't be determined; this is
-- * not an error. For example, if SDL is set up to talk to a remote audio
-- * server, it can't list every one available on the Internet, but it will
-- * still allow a specific host to be specified to SDL_OpenAudioDevice().
-- *
-- * In many common cases, when this function returns a value <= 0, it can still
-- * successfully open the default device (NULL for first argument of
-- * SDL_OpenAudioDevice()).
--
function SDL_GetNumAudioDevices (iscapture : int) return int; -- ..\SDL2_tmp\SDL_audio.h:344
pragma Import (C, SDL_GetNumAudioDevices, "SDL_GetNumAudioDevices");
--*
-- * Get the human-readable name of a specific audio device.
-- * Must be a value between 0 and (number of audio devices-1).
-- * Only valid after a successfully initializing the audio subsystem.
-- * The values returned by this function reflect the latest call to
-- * SDL_GetNumAudioDevices(); recall that function to redetect available
-- * hardware.
-- *
-- * The string returned by this function is UTF-8 encoded, read-only, and
-- * managed internally. You are not to free it. If you need to keep the
-- * string for any length of time, you should make your own copy of it, as it
-- * will be invalid next time any of several other SDL functions is called.
--
function SDL_GetAudioDeviceName (index : int; iscapture : int) return Interfaces.C.Strings.chars_ptr; -- ..\SDL2_tmp\SDL_audio.h:359
pragma Import (C, SDL_GetAudioDeviceName, "SDL_GetAudioDeviceName");
--*
-- * Open a specific audio device. Passing in a device name of NULL requests
-- * the most reasonable default (and is equivalent to calling SDL_OpenAudio()).
-- *
-- * The device name is a UTF-8 string reported by SDL_GetAudioDeviceName(), but
-- * some drivers allow arbitrary and driver-specific strings, such as a
-- * hostname/IP address for a remote audio server, or a filename in the
-- * diskaudio driver.
-- *
-- * \return 0 on error, a valid device ID that is >= 2 on success.
-- *
-- * SDL_OpenAudio(), unlike this function, always acts on device ID 1.
--
function SDL_OpenAudioDevice
(device : Interfaces.C.Strings.chars_ptr;
iscapture : int;
desired : access constant SDL_AudioSpec;
obtained : access SDL_AudioSpec;
allowed_changes : int) return SDL_AudioDeviceID; -- ..\SDL2_tmp\SDL_audio.h:376
pragma Import (C, SDL_OpenAudioDevice, "SDL_OpenAudioDevice");
--*
-- * \name Audio state
-- *
-- * Get the current audio state.
--
-- @{
type SDL_AudioStatus is
(SDL_AUDIO_STOPPED,
SDL_AUDIO_PLAYING,
SDL_AUDIO_PAUSED);
pragma Convention (C, SDL_AudioStatus); -- ..\SDL2_tmp\SDL_audio.h:400
function SDL_GetAudioStatus return SDL_AudioStatus; -- ..\SDL2_tmp\SDL_audio.h:401
pragma Import (C, SDL_GetAudioStatus, "SDL_GetAudioStatus");
function SDL_GetAudioDeviceStatus (dev : SDL_AudioDeviceID) return SDL_AudioStatus; -- ..\SDL2_tmp\SDL_audio.h:404
pragma Import (C, SDL_GetAudioDeviceStatus, "SDL_GetAudioDeviceStatus");
-- @}
-- Audio State
--*
-- * \name Pause audio functions
-- *
-- * These functions pause and unpause the audio callback processing.
-- * They should be called with a parameter of 0 after opening the audio
-- * device to start playing sound. This is so you can safely initialize
-- * data for your callback function after opening the audio device.
-- * Silence will be written to the audio device during the pause.
--
-- @{
procedure SDL_PauseAudio (pause_on : int); -- ..\SDL2_tmp\SDL_audio.h:417
pragma Import (C, SDL_PauseAudio, "SDL_PauseAudio");
procedure SDL_PauseAudioDevice (dev : SDL_AudioDeviceID; pause_on : int); -- ..\SDL2_tmp\SDL_audio.h:418
pragma Import (C, SDL_PauseAudioDevice, "SDL_PauseAudioDevice");
-- @}
-- Pause audio functions
--*
-- * This function loads a WAVE from the data source, automatically freeing
-- * that source if \c freesrc is non-zero. For example, to load a WAVE file,
-- * you could do:
-- * \code
-- * SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...);
-- * \endcode
-- *
-- * If this function succeeds, it returns the given SDL_AudioSpec,
-- * filled with the audio data format of the wave data, and sets
-- * \c *audio_buf to a malloc()'d buffer containing the audio data,
-- * and sets \c *audio_len to the length of that audio buffer, in bytes.
-- * You need to free the audio buffer with SDL_FreeWAV() when you are
-- * done with it.
-- *
-- * This function returns NULL and sets the SDL error message if the
-- * wave file cannot be opened, uses an unknown data format, or is
-- * corrupt. Currently raw and MS-ADPCM WAVE files are supported.
--
function SDL_LoadWAV_RW
(src : access SDL_rwops_h.SDL_RWops;
freesrc : int;
spec : access SDL_AudioSpec;
audio_buf : System.Address;
audio_len : access SDL_stdinc_h.Uint32) return access SDL_AudioSpec; -- ..\SDL2_tmp\SDL_audio.h:441
pragma Import (C, SDL_LoadWAV_RW, "SDL_LoadWAV_RW");
--*
-- * Loads a WAV from a file.
-- * Compatibility convenience function.
--
--*
-- * This function frees data previously allocated with SDL_LoadWAV_RW()
--
procedure SDL_FreeWAV (audio_buf : access SDL_stdinc_h.Uint8); -- ..\SDL2_tmp\SDL_audio.h:457
pragma Import (C, SDL_FreeWAV, "SDL_FreeWAV");
--*
-- * This function takes a source format and rate and a destination format
-- * and rate, and initializes the \c cvt structure with information needed
-- * by SDL_ConvertAudio() to convert a buffer of audio data from one format
-- * to the other. An unsupported format causes an error and -1 will be returned.
-- *
-- * \return 0 if no conversion is needed, 1 if the audio filter is set up,
-- * or -1 on error.
--
function SDL_BuildAudioCVT
(cvt : access SDL_AudioCVT;
src_format : SDL_AudioFormat;
src_channels : SDL_stdinc_h.Uint8;
src_rate : int;
dst_format : SDL_AudioFormat;
dst_channels : SDL_stdinc_h.Uint8;
dst_rate : int) return int; -- ..\SDL2_tmp\SDL_audio.h:468
pragma Import (C, SDL_BuildAudioCVT, "SDL_BuildAudioCVT");
--*
-- * Once you have initialized the \c cvt structure using SDL_BuildAudioCVT(),
-- * created an audio buffer \c cvt->buf, and filled it with \c cvt->len bytes of
-- * audio data in the source format, this function will convert it in-place
-- * to the desired format.
-- *
-- * The data conversion may expand the size of the audio data, so the buffer
-- * \c cvt->buf should be allocated after the \c cvt structure is initialized by
-- * SDL_BuildAudioCVT(), and should be \c cvt->len*cvt->len_mult bytes long.
-- *
-- * \return 0 on success or -1 if \c cvt->buf is NULL.
--
function SDL_ConvertAudio (cvt : access SDL_AudioCVT) return int; -- ..\SDL2_tmp\SDL_audio.h:488
pragma Import (C, SDL_ConvertAudio, "SDL_ConvertAudio");
-- SDL_AudioStream is a new audio conversion interface.
-- The benefits vs SDL_AudioCVT:
-- - it can handle resampling data in chunks without generating
-- artifacts, when it doesn't have the complete buffer available.
-- - it can handle incoming data in any variable size.
-- - You push data as you have it, and pull it when you need it
--
-- this is opaque to the outside world.
type u_SDL_AudioStream is null record; -- incomplete struct
subtype SDL_AudioStream is u_SDL_AudioStream; -- ..\SDL2_tmp\SDL_audio.h:499
--*
-- * Create a new audio stream
-- *
-- * \param src_format The format of the source audio
-- * \param src_channels The number of channels of the source audio
-- * \param src_rate The sampling rate of the source audio
-- * \param dst_format The format of the desired audio output
-- * \param dst_channels The number of channels of the desired audio output
-- * \param dst_rate The sampling rate of the desired audio output
-- * \return 0 on success, or -1 on error.
-- *
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_AudioStreamClear
-- * \sa SDL_FreeAudioStream
--
function SDL_NewAudioStream
(src_format : SDL_AudioFormat;
src_channels : SDL_stdinc_h.Uint8;
src_rate : int;
dst_format : SDL_AudioFormat;
dst_channels : SDL_stdinc_h.Uint8;
dst_rate : int) return access SDL_AudioStream; -- ..\SDL2_tmp\SDL_audio.h:519
pragma Import (C, SDL_NewAudioStream, "SDL_NewAudioStream");
--*
-- * Add data to be converted/resampled to the stream
-- *
-- * \param stream The stream the audio data is being added to
-- * \param buf A pointer to the audio data to add
-- * \param len The number of bytes to write to the stream
-- * \return 0 on success, or -1 on error.
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_AudioStreamClear
-- * \sa SDL_FreeAudioStream
--
function SDL_AudioStreamPut
(stream : access SDL_AudioStream;
buf : System.Address;
len : int) return int; -- ..\SDL2_tmp\SDL_audio.h:541
pragma Import (C, SDL_AudioStreamPut, "SDL_AudioStreamPut");
--*
-- * Get converted/resampled data from the stream
-- *
-- * \param stream The stream the audio is being requested from
-- * \param buf A buffer to fill with audio data
-- * \param len The maximum number of bytes to fill
-- * \return The number of bytes read from the stream, or -1 on error
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_AudioStreamClear
-- * \sa SDL_FreeAudioStream
--
function SDL_AudioStreamGet
(stream : access SDL_AudioStream;
buf : System.Address;
len : int) return int; -- ..\SDL2_tmp\SDL_audio.h:558
pragma Import (C, SDL_AudioStreamGet, "SDL_AudioStreamGet");
--*
-- * Get the number of converted/resampled bytes available. The stream may be
-- * buffering data behind the scenes until it has enough to resample
-- * correctly, so this number might be lower than what you expect, or even
-- * be zero. Add more data or flush the stream if you need the data now.
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_AudioStreamClear
-- * \sa SDL_FreeAudioStream
--
function SDL_AudioStreamAvailable (stream : access SDL_AudioStream) return int; -- ..\SDL2_tmp\SDL_audio.h:573
pragma Import (C, SDL_AudioStreamAvailable, "SDL_AudioStreamAvailable");
--*
-- * Tell the stream that you're done sending data, and anything being buffered
-- * should be converted/resampled and made available immediately.
-- *
-- * It is legal to add more data to a stream after flushing, but there will
-- * be audio gaps in the output. Generally this is intended to signal the
-- * end of input, so the complete output becomes available.
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamClear
-- * \sa SDL_FreeAudioStream
--
function SDL_AudioStreamFlush (stream : access SDL_AudioStream) return int; -- ..\SDL2_tmp\SDL_audio.h:590
pragma Import (C, SDL_AudioStreamFlush, "SDL_AudioStreamFlush");
--*
-- * Clear any pending data in the stream without converting it
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_FreeAudioStream
--
procedure SDL_AudioStreamClear (stream : access SDL_AudioStream); -- ..\SDL2_tmp\SDL_audio.h:602
pragma Import (C, SDL_AudioStreamClear, "SDL_AudioStreamClear");
--*
-- * Free an audio stream
-- *
-- * \sa SDL_NewAudioStream
-- * \sa SDL_AudioStreamPut
-- * \sa SDL_AudioStreamGet
-- * \sa SDL_AudioStreamAvailable
-- * \sa SDL_AudioStreamFlush
-- * \sa SDL_AudioStreamClear
--
procedure SDL_FreeAudioStream (stream : access SDL_AudioStream); -- ..\SDL2_tmp\SDL_audio.h:614
pragma Import (C, SDL_FreeAudioStream, "SDL_FreeAudioStream");
--*
-- * This takes two audio buffers of the playing audio format and mixes
-- * them, performing addition, volume adjustment, and overflow clipping.
-- * The volume ranges from 0 - 128, and should be set to ::SDL_MIX_MAXVOLUME
-- * for full audio volume. Note this does not change hardware volume.
-- * This is provided for convenience -- you can mix your own audio data.
--
procedure SDL_MixAudio
(dst : access SDL_stdinc_h.Uint8;
src : access SDL_stdinc_h.Uint8;
len : SDL_stdinc_h.Uint32;
volume : int); -- ..\SDL2_tmp\SDL_audio.h:624
pragma Import (C, SDL_MixAudio, "SDL_MixAudio");
--*
-- * This works like SDL_MixAudio(), but you specify the audio format instead of
-- * using the format of audio device 1. Thus it can be used when no audio
-- * device is open at all.
--
procedure SDL_MixAudioFormat
(dst : access SDL_stdinc_h.Uint8;
src : access SDL_stdinc_h.Uint8;
format : SDL_AudioFormat;
len : SDL_stdinc_h.Uint32;
volume : int); -- ..\SDL2_tmp\SDL_audio.h:632
pragma Import (C, SDL_MixAudioFormat, "SDL_MixAudioFormat");
--*
-- * Queue more audio on non-callback devices.
-- *
-- * (If you are looking to retrieve queued audio from a non-callback capture
-- * device, you want SDL_DequeueAudio() instead. This will return -1 to
-- * signify an error if you use it with capture devices.)
-- *
-- * SDL offers two ways to feed audio to the device: you can either supply a
-- * callback that SDL triggers with some frequency to obtain more audio
-- * (pull method), or you can supply no callback, and then SDL will expect
-- * you to supply data at regular intervals (push method) with this function.
-- *
-- * There are no limits on the amount of data you can queue, short of
-- * exhaustion of address space. Queued data will drain to the device as
-- * necessary without further intervention from you. If the device needs
-- * audio but there is not enough queued, it will play silence to make up
-- * the difference. This means you will have skips in your audio playback
-- * if you aren't routinely queueing sufficient data.
-- *
-- * This function copies the supplied data, so you are safe to free it when
-- * the function returns. This function is thread-safe, but queueing to the
-- * same device from two threads at once does not promise which buffer will
-- * be queued first.
-- *
-- * You may not queue audio on a device that is using an application-supplied
-- * callback; doing so returns an error. You have to use the audio callback
-- * or queue audio with this function, but not both.
-- *
-- * You should not call SDL_LockAudio() on the device before queueing; SDL
-- * handles locking internally for this function.
-- *
-- * \param dev The device ID to which we will queue audio.
-- * \param data The data to queue to the device for later playback.
-- * \param len The number of bytes (not samples!) to which (data) points.
-- * \return 0 on success, or -1 on error.
-- *
-- * \sa SDL_GetQueuedAudioSize
-- * \sa SDL_ClearQueuedAudio
--
function SDL_QueueAudio
(dev : SDL_AudioDeviceID;
data : System.Address;
len : SDL_stdinc_h.Uint32) return int; -- ..\SDL2_tmp\SDL_audio.h:676
pragma Import (C, SDL_QueueAudio, "SDL_QueueAudio");
--*
-- * Dequeue more audio on non-callback devices.
-- *
-- * (If you are looking to queue audio for output on a non-callback playback
-- * device, you want SDL_QueueAudio() instead. This will always return 0
-- * if you use it with playback devices.)
-- *
-- * SDL offers two ways to retrieve audio from a capture device: you can
-- * either supply a callback that SDL triggers with some frequency as the
-- * device records more audio data, (push method), or you can supply no
-- * callback, and then SDL will expect you to retrieve data at regular
-- * intervals (pull method) with this function.
-- *
-- * There are no limits on the amount of data you can queue, short of
-- * exhaustion of address space. Data from the device will keep queuing as
-- * necessary without further intervention from you. This means you will
-- * eventually run out of memory if you aren't routinely dequeueing data.
-- *
-- * Capture devices will not queue data when paused; if you are expecting
-- * to not need captured audio for some length of time, use
-- * SDL_PauseAudioDevice() to stop the capture device from queueing more
-- * data. This can be useful during, say, level loading times. When
-- * unpaused, capture devices will start queueing data from that point,
-- * having flushed any capturable data available while paused.
-- *
-- * This function is thread-safe, but dequeueing from the same device from
-- * two threads at once does not promise which thread will dequeued data
-- * first.
-- *
-- * You may not dequeue audio from a device that is using an
-- * application-supplied callback; doing so returns an error. You have to use
-- * the audio callback, or dequeue audio with this function, but not both.
-- *
-- * You should not call SDL_LockAudio() on the device before queueing; SDL
-- * handles locking internally for this function.
-- *
-- * \param dev The device ID from which we will dequeue audio.
-- * \param data A pointer into where audio data should be copied.
-- * \param len The number of bytes (not samples!) to which (data) points.
-- * \return number of bytes dequeued, which could be less than requested.
-- *
-- * \sa SDL_GetQueuedAudioSize
-- * \sa SDL_ClearQueuedAudio
--
function SDL_DequeueAudio
(dev : SDL_AudioDeviceID;
data : System.Address;
len : SDL_stdinc_h.Uint32) return SDL_stdinc_h.Uint32; -- ..\SDL2_tmp\SDL_audio.h:722
pragma Import (C, SDL_DequeueAudio, "SDL_DequeueAudio");
--*
-- * Get the number of bytes of still-queued audio.
-- *
-- * For playback device:
-- *
-- * This is the number of bytes that have been queued for playback with
-- * SDL_QueueAudio(), but have not yet been sent to the hardware. This
-- * number may shrink at any time, so this only informs of pending data.
-- *
-- * Once we've sent it to the hardware, this function can not decide the
-- * exact byte boundary of what has been played. It's possible that we just
-- * gave the hardware several kilobytes right before you called this
-- * function, but it hasn't played any of it yet, or maybe half of it, etc.
-- *
-- * For capture devices:
-- *
-- * This is the number of bytes that have been captured by the device and
-- * are waiting for you to dequeue. This number may grow at any time, so
-- * this only informs of the lower-bound of available data.
-- *
-- * You may not queue audio on a device that is using an application-supplied
-- * callback; calling this function on such a device always returns 0.
-- * You have to queue audio with SDL_QueueAudio()/SDL_DequeueAudio(), or use
-- * the audio callback, but not both.
-- *
-- * You should not call SDL_LockAudio() on the device before querying; SDL
-- * handles locking internally for this function.
-- *
-- * \param dev The device ID of which we will query queued audio size.
-- * \return Number of bytes (not samples!) of queued audio.
-- *
-- * \sa SDL_QueueAudio
-- * \sa SDL_ClearQueuedAudio
--
function SDL_GetQueuedAudioSize (dev : SDL_AudioDeviceID) return SDL_stdinc_h.Uint32; -- ..\SDL2_tmp\SDL_audio.h:758
pragma Import (C, SDL_GetQueuedAudioSize, "SDL_GetQueuedAudioSize");
--*
-- * Drop any queued audio data. For playback devices, this is any queued data
-- * still waiting to be submitted to the hardware. For capture devices, this
-- * is any data that was queued by the device that hasn't yet been dequeued by
-- * the application.
-- *
-- * Immediately after this call, SDL_GetQueuedAudioSize() will return 0. For
-- * playback devices, the hardware will start playing silence if more audio
-- * isn't queued. Unpaused capture devices will start filling the queue again
-- * as soon as they have more data available (which, depending on the state
-- * of the hardware and the thread, could be before this function call
-- * returns!).
-- *
-- * This will not prevent playback of queued audio that's already been sent
-- * to the hardware, as we can not undo that, so expect there to be some
-- * fraction of a second of audio that might still be heard. This can be
-- * useful if you want to, say, drop any pending music during a level change
-- * in your game.
-- *
-- * You may not queue audio on a device that is using an application-supplied
-- * callback; calling this function on such a device is always a no-op.
-- * You have to queue audio with SDL_QueueAudio()/SDL_DequeueAudio(), or use
-- * the audio callback, but not both.
-- *
-- * You should not call SDL_LockAudio() on the device before clearing the
-- * queue; SDL handles locking internally for this function.
-- *
-- * This function always succeeds and thus returns void.
-- *
-- * \param dev The device ID of which to clear the audio queue.
-- *
-- * \sa SDL_QueueAudio
-- * \sa SDL_GetQueuedAudioSize
--
procedure SDL_ClearQueuedAudio (dev : SDL_AudioDeviceID); -- ..\SDL2_tmp\SDL_audio.h:794
pragma Import (C, SDL_ClearQueuedAudio, "SDL_ClearQueuedAudio");
--*
-- * \name Audio lock functions
-- *
-- * The lock manipulated by these functions protects the callback function.
-- * During a SDL_LockAudio()/SDL_UnlockAudio() pair, you can be guaranteed that
-- * the callback function is not running. Do not call these from the callback
-- * function or you will cause deadlock.
--
-- @{
procedure SDL_LockAudio; -- ..\SDL2_tmp\SDL_audio.h:806
pragma Import (C, SDL_LockAudio, "SDL_LockAudio");
procedure SDL_LockAudioDevice (dev : SDL_AudioDeviceID); -- ..\SDL2_tmp\SDL_audio.h:807
pragma Import (C, SDL_LockAudioDevice, "SDL_LockAudioDevice");
procedure SDL_UnlockAudio; -- ..\SDL2_tmp\SDL_audio.h:808
pragma Import (C, SDL_UnlockAudio, "SDL_UnlockAudio");
procedure SDL_UnlockAudioDevice (dev : SDL_AudioDeviceID); -- ..\SDL2_tmp\SDL_audio.h:809
pragma Import (C, SDL_UnlockAudioDevice, "SDL_UnlockAudioDevice");
-- @}
-- Audio lock functions
--*
-- * This function shuts down audio processing and closes the audio device.
--
procedure SDL_CloseAudio; -- ..\SDL2_tmp\SDL_audio.h:815
pragma Import (C, SDL_CloseAudio, "SDL_CloseAudio");
procedure SDL_CloseAudioDevice (dev : SDL_AudioDeviceID); -- ..\SDL2_tmp\SDL_audio.h:816
pragma Import (C, SDL_CloseAudioDevice, "SDL_CloseAudioDevice");
-- Ends C function definitions when using C++
-- vi: set ts=4 sw=4 expandtab:
end SDL_audio_h;
|
with Ada.Text_IO; use Ada.Text_IO;
with Yeison_Experiments; use Yeison_Experiments;
procedure Experiments is
LS : constant List := ("a", "b", "c");
-- LI : constant List := (1, 2, 3);
-- Ideally, this should be allowed in the future
begin
null;
end Experiments;
|
<?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_config4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>11</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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.88</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</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.63</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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_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>63</lineNumber>
<contextFuncName>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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_1938</name>
<fileName>firmware/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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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_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>63</lineNumber>
<contextFuncName>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>613</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>614</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>615</item>
<item>616</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>617</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>618</item>
<item>619</item>
<item>620</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>621</item>
<item>622</item>
<item>623</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>624</item>
<item>625</item>
<item>626</item>
<item>627</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>628</item>
<item>629</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>630</item>
<item>631</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>632</item>
<item>633</item>
<item>634</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>635</item>
<item>636</item>
<item>637</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>638</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>639</item>
<item>640</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>641</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>642</item>
<item>643</item>
<item>644</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>645</item>
<item>646</item>
<item>647</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>648</item>
<item>649</item>
<item>650</item>
<item>651</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>652</item>
<item>653</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>654</item>
<item>655</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>656</item>
<item>657</item>
<item>658</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>659</item>
<item>660</item>
<item>661</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>662</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>663</item>
<item>664</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>665</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>666</item>
<item>667</item>
<item>668</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>669</item>
<item>670</item>
<item>671</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>672</item>
<item>673</item>
<item>674</item>
<item>675</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>676</item>
<item>677</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>678</item>
<item>679</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>680</item>
<item>681</item>
<item>682</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>683</item>
<item>684</item>
<item>685</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>686</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>687</item>
<item>688</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>689</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>690</item>
<item>691</item>
<item>692</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>693</item>
<item>694</item>
<item>695</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>696</item>
<item>697</item>
<item>698</item>
<item>699</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>700</item>
<item>701</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>702</item>
<item>703</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>704</item>
<item>705</item>
<item>706</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>707</item>
<item>708</item>
<item>709</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>710</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>711</item>
<item>712</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>713</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>714</item>
<item>715</item>
<item>716</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>717</item>
<item>718</item>
<item>719</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>720</item>
<item>721</item>
<item>722</item>
<item>723</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>724</item>
<item>725</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>726</item>
<item>727</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>728</item>
<item>729</item>
<item>730</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>731</item>
<item>732</item>
<item>733</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>734</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>735</item>
<item>736</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>737</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>738</item>
<item>739</item>
<item>740</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>741</item>
<item>742</item>
<item>743</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>744</item>
<item>745</item>
<item>746</item>
<item>747</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>748</item>
<item>749</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>750</item>
<item>751</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>752</item>
<item>753</item>
<item>754</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>755</item>
<item>756</item>
<item>757</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>758</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>759</item>
<item>760</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>761</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>762</item>
<item>763</item>
<item>764</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>765</item>
<item>766</item>
<item>767</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>768</item>
<item>769</item>
<item>770</item>
<item>771</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>772</item>
<item>773</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>774</item>
<item>775</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>776</item>
<item>777</item>
<item>778</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>779</item>
<item>780</item>
<item>781</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>782</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>783</item>
<item>784</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>785</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>786</item>
<item>787</item>
<item>788</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>789</item>
<item>790</item>
<item>791</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>792</item>
<item>793</item>
<item>794</item>
<item>795</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>796</item>
<item>797</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>798</item>
<item>799</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>800</item>
<item>801</item>
<item>802</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>803</item>
<item>804</item>
<item>805</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>806</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>807</item>
<item>808</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>809</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>810</item>
<item>811</item>
<item>812</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>813</item>
<item>814</item>
<item>815</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>816</item>
<item>817</item>
<item>818</item>
<item>819</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>820</item>
<item>821</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>822</item>
<item>823</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>824</item>
<item>825</item>
<item>826</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>827</item>
<item>828</item>
<item>829</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>830</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>831</item>
<item>832</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>833</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>834</item>
<item>835</item>
<item>836</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>837</item>
<item>838</item>
<item>839</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>840</item>
<item>841</item>
<item>842</item>
<item>843</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>844</item>
<item>845</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>846</item>
<item>847</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>848</item>
<item>849</item>
<item>850</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>851</item>
<item>852</item>
<item>853</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>854</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>855</item>
<item>856</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>857</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>858</item>
<item>859</item>
<item>860</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>861</item>
<item>862</item>
<item>863</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>864</item>
<item>865</item>
<item>866</item>
<item>867</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>868</item>
<item>869</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>870</item>
<item>871</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>872</item>
<item>873</item>
<item>874</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>875</item>
<item>876</item>
<item>877</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>878</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>879</item>
<item>880</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>881</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>882</item>
<item>883</item>
<item>884</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>885</item>
<item>886</item>
<item>887</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>888</item>
<item>889</item>
<item>890</item>
<item>891</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>892</item>
<item>893</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>894</item>
<item>895</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>896</item>
<item>897</item>
<item>898</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>899</item>
<item>900</item>
<item>901</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>902</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>903</item>
<item>904</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>905</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>906</item>
<item>907</item>
<item>908</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>909</item>
<item>910</item>
<item>911</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>912</item>
<item>913</item>
<item>914</item>
<item>915</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>916</item>
<item>917</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>918</item>
<item>919</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>920</item>
<item>921</item>
<item>922</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>923</item>
<item>924</item>
<item>925</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>926</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>927</item>
<item>928</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>929</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>930</item>
<item>931</item>
<item>932</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>933</item>
<item>934</item>
<item>935</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>936</item>
<item>937</item>
<item>938</item>
<item>939</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>940</item>
<item>941</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>942</item>
<item>943</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>944</item>
<item>945</item>
<item>946</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>947</item>
<item>948</item>
<item>949</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>950</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>951</item>
<item>952</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>953</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>954</item>
<item>955</item>
<item>956</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>957</item>
<item>958</item>
<item>959</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>960</item>
<item>961</item>
<item>962</item>
<item>963</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>964</item>
<item>965</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>966</item>
<item>967</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>968</item>
<item>969</item>
<item>970</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>971</item>
<item>972</item>
<item>973</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>974</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>975</item>
<item>976</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>977</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>978</item>
<item>979</item>
<item>980</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>981</item>
<item>982</item>
<item>983</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>984</item>
<item>985</item>
<item>986</item>
<item>987</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>988</item>
<item>989</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>990</item>
<item>991</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>992</item>
<item>993</item>
<item>994</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>995</item>
<item>996</item>
<item>997</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>998</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>999</item>
<item>1000</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1001</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1002</item>
<item>1003</item>
<item>1004</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1005</item>
<item>1006</item>
<item>1007</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1008</item>
<item>1009</item>
<item>1010</item>
<item>1011</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1012</item>
<item>1013</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1014</item>
<item>1015</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1016</item>
<item>1017</item>
<item>1018</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1019</item>
<item>1020</item>
<item>1021</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1022</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1023</item>
<item>1024</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1025</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1026</item>
<item>1027</item>
<item>1028</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1029</item>
<item>1030</item>
<item>1031</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1032</item>
<item>1033</item>
<item>1034</item>
<item>1035</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1036</item>
<item>1037</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1038</item>
<item>1039</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1040</item>
<item>1041</item>
<item>1042</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1043</item>
<item>1044</item>
<item>1045</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1046</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1047</item>
<item>1048</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1049</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1050</item>
<item>1051</item>
<item>1052</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1053</item>
<item>1054</item>
<item>1055</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1056</item>
<item>1057</item>
<item>1058</item>
<item>1059</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1060</item>
<item>1061</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1062</item>
<item>1063</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1064</item>
<item>1065</item>
<item>1066</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1067</item>
<item>1068</item>
<item>1069</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1070</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1071</item>
<item>1072</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1073</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1074</item>
<item>1075</item>
<item>1076</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1077</item>
<item>1078</item>
<item>1079</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1080</item>
<item>1081</item>
<item>1082</item>
<item>1083</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1084</item>
<item>1085</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1086</item>
<item>1087</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1088</item>
<item>1089</item>
<item>1090</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1091</item>
<item>1092</item>
<item>1093</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1094</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1095</item>
<item>1096</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1097</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1098</item>
<item>1099</item>
<item>1100</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1101</item>
<item>1102</item>
<item>1103</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1104</item>
<item>1105</item>
<item>1106</item>
<item>1107</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1108</item>
<item>1109</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1110</item>
<item>1111</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1112</item>
<item>1113</item>
<item>1114</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1115</item>
<item>1116</item>
<item>1117</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1118</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1119</item>
<item>1120</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1121</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1122</item>
<item>1123</item>
<item>1124</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1125</item>
<item>1126</item>
<item>1127</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1128</item>
<item>1129</item>
<item>1130</item>
<item>1131</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1132</item>
<item>1133</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1134</item>
<item>1135</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1136</item>
<item>1137</item>
<item>1138</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1139</item>
<item>1140</item>
<item>1141</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1142</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1143</item>
<item>1144</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1145</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1146</item>
<item>1147</item>
<item>1148</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1149</item>
<item>1150</item>
<item>1151</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1152</item>
<item>1153</item>
<item>1154</item>
<item>1155</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1156</item>
<item>1157</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1158</item>
<item>1159</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1160</item>
<item>1161</item>
<item>1162</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1163</item>
<item>1164</item>
<item>1165</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1166</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1167</item>
<item>1168</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1169</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1170</item>
<item>1171</item>
<item>1172</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1173</item>
<item>1174</item>
<item>1175</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1176</item>
<item>1177</item>
<item>1178</item>
<item>1179</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1180</item>
<item>1181</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1182</item>
<item>1183</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1184</item>
<item>1185</item>
<item>1186</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1187</item>
<item>1188</item>
<item>1189</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1190</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1191</item>
<item>1192</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1193</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1194</item>
<item>1195</item>
<item>1196</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1197</item>
<item>1198</item>
<item>1199</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1200</item>
<item>1201</item>
<item>1202</item>
<item>1203</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1204</item>
<item>1205</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1206</item>
<item>1207</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1208</item>
<item>1209</item>
<item>1210</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1211</item>
<item>1212</item>
<item>1213</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1214</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1215</item>
<item>1216</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1217</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1218</item>
<item>1219</item>
<item>1220</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1221</item>
<item>1222</item>
<item>1223</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1224</item>
<item>1225</item>
<item>1226</item>
<item>1227</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1228</item>
<item>1229</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1230</item>
<item>1231</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1232</item>
<item>1233</item>
<item>1234</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1235</item>
<item>1236</item>
<item>1237</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1238</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1239</item>
<item>1240</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1241</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1242</item>
<item>1243</item>
<item>1244</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1245</item>
<item>1246</item>
<item>1247</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1248</item>
<item>1249</item>
<item>1250</item>
<item>1251</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1252</item>
<item>1253</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1254</item>
<item>1255</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1256</item>
<item>1257</item>
<item>1258</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1259</item>
<item>1260</item>
<item>1261</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1262</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1263</item>
<item>1264</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1265</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1266</item>
<item>1267</item>
<item>1268</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1269</item>
<item>1270</item>
<item>1271</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1272</item>
<item>1273</item>
<item>1274</item>
<item>1275</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1276</item>
<item>1277</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1278</item>
<item>1279</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1280</item>
<item>1281</item>
<item>1282</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1283</item>
<item>1284</item>
<item>1285</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1286</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1287</item>
<item>1288</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1289</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1290</item>
<item>1291</item>
<item>1292</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1293</item>
<item>1294</item>
<item>1295</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1296</item>
<item>1297</item>
<item>1298</item>
<item>1299</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1300</item>
<item>1301</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1302</item>
<item>1303</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1304</item>
<item>1305</item>
<item>1306</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1307</item>
<item>1308</item>
<item>1309</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1310</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1311</item>
<item>1312</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1313</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1314</item>
<item>1315</item>
<item>1316</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1317</item>
<item>1318</item>
<item>1319</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1320</item>
<item>1321</item>
<item>1322</item>
<item>1323</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1324</item>
<item>1325</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1326</item>
<item>1327</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1328</item>
<item>1329</item>
<item>1330</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1331</item>
<item>1332</item>
<item>1333</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1334</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1335</item>
<item>1336</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1337</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1338</item>
<item>1339</item>
<item>1340</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1341</item>
<item>1342</item>
<item>1343</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_4_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1344</item>
<item>1345</item>
<item>1346</item>
<item>1347</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1348</item>
<item>1349</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1350</item>
<item>1351</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1352</item>
<item>1353</item>
<item>1354</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1355</item>
<item>1356</item>
<item>1357</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_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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1358</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>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>
<item>1424</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>1425</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&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_activation_stream.h</first>
<second>relu&lt;nnet::array&lt;ap_fixed&lt;9, 6, 5, 3, 0&gt;, 32&gt;, nnet::array&lt;ap_fixed&lt;8, 3, 0, 0, 0&gt;, 32&gt;, relu_config4&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>11</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>11</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1024</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>11</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>
<item class_id_reference="16" object_id="_436">
<Value>
<Obj>
<type>2</type>
<id>612</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>
</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="_437">
<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="_438">
<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="_439">
<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="_440">
<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="_441">
<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="_442">
<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="_443">
<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="_444">
<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="_445">
<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="_446">
<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="_447">
<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="_448">
<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="_449">
<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="_450">
<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="_451">
<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="_452">
<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="_453">
<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="_454">
<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="_455">
<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="_456">
<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="_457">
<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="_458">
<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="_459">
<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="_460">
<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="_461">
<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="_462">
<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="_463">
<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="_464">
<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="_465">
<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="_466">
<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="_467">
<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="_468">
<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="_469">
<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="_470">
<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="_471">
<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="_472">
<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="_473">
<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="_474">
<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="_475">
<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="_476">
<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="_477">
<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="_478">
<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="_479">
<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="_480">
<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="_481">
<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="_482">
<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="_483">
<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="_484">
<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="_485">
<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="_486">
<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="_487">
<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="_488">
<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="_489">
<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="_490">
<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="_491">
<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="_492">
<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="_493">
<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="_494">
<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="_495">
<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="_496">
<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="_497">
<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="_498">
<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="_499">
<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="_500">
<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="_501">
<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="_502">
<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="_503">
<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="_504">
<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="_505">
<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="_506">
<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="_507">
<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="_508">
<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="_509">
<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="_510">
<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="_511">
<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="_512">
<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="_513">
<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="_514">
<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="_515">
<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="_516">
<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="_517">
<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="_518">
<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="_519">
<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="_520">
<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="_521">
<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="_522">
<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="_523">
<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="_524">
<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="_525">
<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="_526">
<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="_527">
<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="_528">
<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="_529">
<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="_530">
<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="_531">
<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="_532">
<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="_533">
<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="_534">
<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="_535">
<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="_536">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>181</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>181</source_obj>
<sink_obj>182</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>142</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>581</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>617</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="_541">
<id>619</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="_542">
<id>620</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="_543">
<id>622</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="_544">
<id>623</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="_545">
<id>625</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="_546">
<id>626</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="_547">
<id>627</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="_548">
<id>628</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="_549">
<id>629</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="_550">
<id>630</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="_551">
<id>631</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="_552">
<id>632</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="_553">
<id>633</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="_554">
<id>634</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="_555">
<id>635</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="_556">
<id>636</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="_557">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>191</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>191</source_obj>
<sink_obj>192</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>143</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>581</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>641</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="_562">
<id>643</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="_563">
<id>644</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="_564">
<id>646</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="_565">
<id>647</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="_566">
<id>649</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="_567">
<id>650</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="_568">
<id>651</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="_569">
<id>652</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="_570">
<id>653</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="_571">
<id>654</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="_572">
<id>655</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="_573">
<id>656</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="_574">
<id>657</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="_575">
<id>658</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="_576">
<id>659</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="_577">
<id>660</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="_578">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>201</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>201</source_obj>
<sink_obj>202</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>144</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>581</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_582">
<id>665</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="_583">
<id>667</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="_584">
<id>668</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="_585">
<id>670</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="_586">
<id>671</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="_587">
<id>673</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="_588">
<id>674</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="_589">
<id>675</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="_590">
<id>676</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="_591">
<id>677</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="_592">
<id>678</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="_593">
<id>679</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="_594">
<id>680</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="_595">
<id>681</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="_596">
<id>682</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="_597">
<id>683</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="_598">
<id>684</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="_599">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>211</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>211</source_obj>
<sink_obj>212</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>145</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>581</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>689</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="_604">
<id>691</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="_605">
<id>692</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="_606">
<id>694</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="_607">
<id>695</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="_608">
<id>697</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="_609">
<id>698</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="_610">
<id>699</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="_611">
<id>700</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="_612">
<id>701</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="_613">
<id>702</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="_614">
<id>703</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="_615">
<id>704</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="_616">
<id>705</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="_617">
<id>706</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="_618">
<id>707</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="_619">
<id>708</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="_620">
<id>709</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>221</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>221</source_obj>
<sink_obj>222</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>146</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>581</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_624">
<id>713</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="_625">
<id>715</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="_626">
<id>716</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="_627">
<id>718</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="_628">
<id>719</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="_629">
<id>721</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="_630">
<id>722</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="_631">
<id>723</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="_632">
<id>724</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="_633">
<id>725</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="_634">
<id>726</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="_635">
<id>727</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="_636">
<id>728</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="_637">
<id>729</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="_638">
<id>730</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="_639">
<id>731</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="_640">
<id>732</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="_641">
<id>733</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>231</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>231</source_obj>
<sink_obj>232</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>147</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>581</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>737</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="_646">
<id>739</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="_647">
<id>740</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="_648">
<id>742</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="_649">
<id>743</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="_650">
<id>745</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="_651">
<id>746</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="_652">
<id>747</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="_653">
<id>748</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="_654">
<id>749</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="_655">
<id>750</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="_656">
<id>751</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="_657">
<id>752</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="_658">
<id>753</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="_659">
<id>754</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="_660">
<id>755</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="_661">
<id>756</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="_662">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>241</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>241</source_obj>
<sink_obj>242</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>148</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>581</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>761</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="_667">
<id>763</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="_668">
<id>764</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="_669">
<id>766</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="_670">
<id>767</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="_671">
<id>769</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="_672">
<id>770</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="_673">
<id>771</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="_674">
<id>772</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="_675">
<id>773</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="_676">
<id>774</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="_677">
<id>775</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="_678">
<id>776</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="_679">
<id>777</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="_680">
<id>778</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="_681">
<id>779</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="_682">
<id>780</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="_683">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>251</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>251</source_obj>
<sink_obj>252</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>149</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>581</source_obj>
<sink_obj>253</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>785</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="_688">
<id>787</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="_689">
<id>788</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="_690">
<id>790</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="_691">
<id>791</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="_692">
<id>793</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="_693">
<id>794</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="_694">
<id>795</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="_695">
<id>796</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="_696">
<id>797</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="_697">
<id>798</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="_698">
<id>799</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="_699">
<id>800</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="_700">
<id>801</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="_701">
<id>802</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="_702">
<id>803</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="_703">
<id>804</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="_704">
<id>805</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>261</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>261</source_obj>
<sink_obj>262</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>150</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>581</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>809</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="_709">
<id>811</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="_710">
<id>812</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="_711">
<id>814</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="_712">
<id>815</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="_713">
<id>817</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="_714">
<id>818</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="_715">
<id>819</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="_716">
<id>820</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="_717">
<id>821</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="_718">
<id>822</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="_719">
<id>823</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="_720">
<id>824</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="_721">
<id>825</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="_722">
<id>826</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="_723">
<id>827</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="_724">
<id>828</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="_725">
<id>829</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>271</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>271</source_obj>
<sink_obj>272</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>151</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>581</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>833</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="_730">
<id>835</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="_731">
<id>836</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="_732">
<id>838</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="_733">
<id>839</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="_734">
<id>841</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="_735">
<id>842</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="_736">
<id>843</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="_737">
<id>844</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="_738">
<id>845</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="_739">
<id>846</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="_740">
<id>847</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="_741">
<id>848</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="_742">
<id>849</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="_743">
<id>850</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="_744">
<id>851</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="_745">
<id>852</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="_746">
<id>853</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>281</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>281</source_obj>
<sink_obj>282</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>152</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>581</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_750">
<id>857</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="_751">
<id>859</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="_752">
<id>860</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="_753">
<id>862</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="_754">
<id>863</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="_755">
<id>865</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="_756">
<id>866</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="_757">
<id>867</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="_758">
<id>868</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="_759">
<id>869</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="_760">
<id>870</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="_761">
<id>871</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="_762">
<id>872</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="_763">
<id>873</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="_764">
<id>874</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="_765">
<id>875</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="_766">
<id>876</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="_767">
<id>877</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>291</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>291</source_obj>
<sink_obj>292</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>153</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>581</source_obj>
<sink_obj>293</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_771">
<id>881</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="_772">
<id>883</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="_773">
<id>884</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="_774">
<id>886</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="_775">
<id>887</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="_776">
<id>889</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="_777">
<id>890</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="_778">
<id>891</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="_779">
<id>892</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="_780">
<id>893</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="_781">
<id>894</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="_782">
<id>895</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="_783">
<id>896</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="_784">
<id>897</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="_785">
<id>898</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="_786">
<id>899</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="_787">
<id>900</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="_788">
<id>901</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>301</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>301</source_obj>
<sink_obj>302</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>154</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>581</source_obj>
<sink_obj>303</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_792">
<id>905</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="_793">
<id>907</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="_794">
<id>908</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="_795">
<id>910</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="_796">
<id>911</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="_797">
<id>913</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="_798">
<id>914</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="_799">
<id>915</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="_800">
<id>916</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="_801">
<id>917</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="_802">
<id>918</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="_803">
<id>919</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="_804">
<id>920</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="_805">
<id>921</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="_806">
<id>922</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="_807">
<id>923</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="_808">
<id>924</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="_809">
<id>925</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>311</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>311</source_obj>
<sink_obj>312</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>155</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>581</source_obj>
<sink_obj>313</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_813">
<id>929</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="_814">
<id>931</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="_815">
<id>932</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="_816">
<id>934</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="_817">
<id>935</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="_818">
<id>937</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="_819">
<id>938</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="_820">
<id>939</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="_821">
<id>940</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="_822">
<id>941</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="_823">
<id>942</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="_824">
<id>943</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="_825">
<id>944</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="_826">
<id>945</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="_827">
<id>946</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="_828">
<id>947</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="_829">
<id>948</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="_830">
<id>949</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>321</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>321</source_obj>
<sink_obj>322</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>156</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>581</source_obj>
<sink_obj>323</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_834">
<id>953</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="_835">
<id>955</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="_836">
<id>956</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="_837">
<id>958</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="_838">
<id>959</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="_839">
<id>961</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="_840">
<id>962</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="_841">
<id>963</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="_842">
<id>964</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="_843">
<id>965</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="_844">
<id>966</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="_845">
<id>967</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="_846">
<id>968</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="_847">
<id>969</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="_848">
<id>970</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="_849">
<id>971</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="_850">
<id>972</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="_851">
<id>973</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>331</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>331</source_obj>
<sink_obj>332</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>157</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>581</source_obj>
<sink_obj>333</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_855">
<id>977</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="_856">
<id>979</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="_857">
<id>980</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="_858">
<id>982</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="_859">
<id>983</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="_860">
<id>985</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="_861">
<id>986</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="_862">
<id>987</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="_863">
<id>988</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="_864">
<id>989</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="_865">
<id>990</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="_866">
<id>991</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="_867">
<id>992</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="_868">
<id>993</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="_869">
<id>994</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="_870">
<id>995</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="_871">
<id>996</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="_872">
<id>997</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>341</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>341</source_obj>
<sink_obj>342</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>158</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>581</source_obj>
<sink_obj>343</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_876">
<id>1001</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="_877">
<id>1003</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="_878">
<id>1004</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="_879">
<id>1006</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="_880">
<id>1007</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="_881">
<id>1009</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="_882">
<id>1010</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="_883">
<id>1011</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="_884">
<id>1012</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="_885">
<id>1013</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="_886">
<id>1014</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="_887">
<id>1015</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="_888">
<id>1016</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="_889">
<id>1017</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="_890">
<id>1018</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="_891">
<id>1019</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="_892">
<id>1020</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="_893">
<id>1021</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>351</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>351</source_obj>
<sink_obj>352</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>159</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>581</source_obj>
<sink_obj>353</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_897">
<id>1025</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="_898">
<id>1027</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="_899">
<id>1028</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="_900">
<id>1030</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="_901">
<id>1031</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="_902">
<id>1033</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="_903">
<id>1034</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="_904">
<id>1035</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="_905">
<id>1036</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="_906">
<id>1037</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="_907">
<id>1038</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="_908">
<id>1039</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="_909">
<id>1040</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="_910">
<id>1041</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="_911">
<id>1042</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="_912">
<id>1043</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="_913">
<id>1044</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="_914">
<id>1045</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>361</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>361</source_obj>
<sink_obj>362</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>160</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>581</source_obj>
<sink_obj>363</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_918">
<id>1049</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="_919">
<id>1051</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="_920">
<id>1052</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="_921">
<id>1054</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="_922">
<id>1055</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="_923">
<id>1057</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="_924">
<id>1058</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="_925">
<id>1059</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="_926">
<id>1060</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="_927">
<id>1061</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="_928">
<id>1062</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="_929">
<id>1063</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="_930">
<id>1064</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="_931">
<id>1065</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="_932">
<id>1066</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="_933">
<id>1067</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="_934">
<id>1068</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="_935">
<id>1069</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>371</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>371</source_obj>
<sink_obj>372</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>161</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>581</source_obj>
<sink_obj>373</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_939">
<id>1073</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="_940">
<id>1075</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="_941">
<id>1076</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="_942">
<id>1078</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="_943">
<id>1079</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="_944">
<id>1081</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="_945">
<id>1082</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="_946">
<id>1083</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="_947">
<id>1084</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="_948">
<id>1085</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="_949">
<id>1086</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="_950">
<id>1087</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="_951">
<id>1088</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="_952">
<id>1089</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="_953">
<id>1090</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="_954">
<id>1091</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="_955">
<id>1092</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="_956">
<id>1093</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>381</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>381</source_obj>
<sink_obj>382</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>162</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>581</source_obj>
<sink_obj>383</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_960">
<id>1097</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="_961">
<id>1099</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="_962">
<id>1100</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="_963">
<id>1102</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="_964">
<id>1103</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="_965">
<id>1105</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="_966">
<id>1106</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="_967">
<id>1107</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="_968">
<id>1108</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="_969">
<id>1109</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="_970">
<id>1110</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="_971">
<id>1111</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="_972">
<id>1112</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="_973">
<id>1113</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="_974">
<id>1114</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="_975">
<id>1115</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="_976">
<id>1116</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="_977">
<id>1117</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>391</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>391</source_obj>
<sink_obj>392</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>163</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>581</source_obj>
<sink_obj>393</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_981">
<id>1121</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="_982">
<id>1123</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="_983">
<id>1124</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="_984">
<id>1126</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="_985">
<id>1127</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="_986">
<id>1129</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="_987">
<id>1130</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="_988">
<id>1131</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="_989">
<id>1132</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="_990">
<id>1133</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="_991">
<id>1134</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="_992">
<id>1135</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="_993">
<id>1136</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="_994">
<id>1137</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="_995">
<id>1138</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="_996">
<id>1139</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="_997">
<id>1140</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="_998">
<id>1141</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>401</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>401</source_obj>
<sink_obj>402</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>164</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>581</source_obj>
<sink_obj>403</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1002">
<id>1145</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="_1003">
<id>1147</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="_1004">
<id>1148</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="_1005">
<id>1150</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="_1006">
<id>1151</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="_1007">
<id>1153</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="_1008">
<id>1154</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="_1009">
<id>1155</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="_1010">
<id>1156</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="_1011">
<id>1157</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="_1012">
<id>1158</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="_1013">
<id>1159</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="_1014">
<id>1160</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="_1015">
<id>1161</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="_1016">
<id>1162</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="_1017">
<id>1163</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="_1018">
<id>1164</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="_1019">
<id>1165</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>411</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>411</source_obj>
<sink_obj>412</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>165</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>581</source_obj>
<sink_obj>413</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1023">
<id>1169</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="_1024">
<id>1171</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="_1025">
<id>1172</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="_1026">
<id>1174</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="_1027">
<id>1175</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="_1028">
<id>1177</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="_1029">
<id>1178</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="_1030">
<id>1179</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="_1031">
<id>1180</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="_1032">
<id>1181</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="_1033">
<id>1182</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="_1034">
<id>1183</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="_1035">
<id>1184</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="_1036">
<id>1185</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="_1037">
<id>1186</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="_1038">
<id>1187</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="_1039">
<id>1188</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="_1040">
<id>1189</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>421</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>421</source_obj>
<sink_obj>422</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>166</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>581</source_obj>
<sink_obj>423</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1044">
<id>1193</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="_1045">
<id>1195</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="_1046">
<id>1196</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="_1047">
<id>1198</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="_1048">
<id>1199</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="_1049">
<id>1201</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="_1050">
<id>1202</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="_1051">
<id>1203</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="_1052">
<id>1204</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="_1053">
<id>1205</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="_1054">
<id>1206</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="_1055">
<id>1207</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="_1056">
<id>1208</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="_1057">
<id>1209</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="_1058">
<id>1210</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="_1059">
<id>1211</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="_1060">
<id>1212</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="_1061">
<id>1213</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>431</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>431</source_obj>
<sink_obj>432</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>167</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>581</source_obj>
<sink_obj>433</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1065">
<id>1217</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="_1066">
<id>1219</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="_1067">
<id>1220</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="_1068">
<id>1222</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="_1069">
<id>1223</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="_1070">
<id>1225</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="_1071">
<id>1226</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="_1072">
<id>1227</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="_1073">
<id>1228</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="_1074">
<id>1229</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="_1075">
<id>1230</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="_1076">
<id>1231</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="_1077">
<id>1232</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="_1078">
<id>1233</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="_1079">
<id>1234</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="_1080">
<id>1235</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="_1081">
<id>1236</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="_1082">
<id>1237</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>441</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>441</source_obj>
<sink_obj>442</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>168</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>581</source_obj>
<sink_obj>443</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1086">
<id>1241</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="_1087">
<id>1243</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="_1088">
<id>1244</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="_1089">
<id>1246</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="_1090">
<id>1247</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="_1091">
<id>1249</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="_1092">
<id>1250</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="_1093">
<id>1251</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="_1094">
<id>1252</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="_1095">
<id>1253</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="_1096">
<id>1254</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="_1097">
<id>1255</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="_1098">
<id>1256</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="_1099">
<id>1257</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="_1100">
<id>1258</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="_1101">
<id>1259</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="_1102">
<id>1260</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="_1103">
<id>1261</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>451</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>451</source_obj>
<sink_obj>452</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>169</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>581</source_obj>
<sink_obj>453</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1107">
<id>1265</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="_1108">
<id>1267</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="_1109">
<id>1268</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="_1110">
<id>1270</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="_1111">
<id>1271</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="_1112">
<id>1273</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="_1113">
<id>1274</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="_1114">
<id>1275</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="_1115">
<id>1276</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="_1116">
<id>1277</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="_1117">
<id>1278</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="_1118">
<id>1279</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="_1119">
<id>1280</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="_1120">
<id>1281</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="_1121">
<id>1282</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="_1122">
<id>1283</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="_1123">
<id>1284</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="_1124">
<id>1285</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>461</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>461</source_obj>
<sink_obj>462</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>170</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>581</source_obj>
<sink_obj>463</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1128">
<id>1289</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="_1129">
<id>1291</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="_1130">
<id>1292</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="_1131">
<id>1294</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="_1132">
<id>1295</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="_1133">
<id>1297</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="_1134">
<id>1298</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="_1135">
<id>1299</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="_1136">
<id>1300</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="_1137">
<id>1301</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="_1138">
<id>1302</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="_1139">
<id>1303</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="_1140">
<id>1304</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="_1141">
<id>1305</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="_1142">
<id>1306</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="_1143">
<id>1307</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="_1144">
<id>1308</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="_1145">
<id>1309</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>471</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>471</source_obj>
<sink_obj>472</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>171</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>581</source_obj>
<sink_obj>473</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1149">
<id>1313</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="_1150">
<id>1315</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="_1151">
<id>1316</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="_1152">
<id>1318</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="_1153">
<id>1319</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="_1154">
<id>1321</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="_1155">
<id>1322</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="_1156">
<id>1323</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="_1157">
<id>1324</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="_1158">
<id>1325</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="_1159">
<id>1326</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="_1160">
<id>1327</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="_1161">
<id>1328</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="_1162">
<id>1329</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="_1163">
<id>1330</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="_1164">
<id>1331</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="_1165">
<id>1332</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="_1166">
<id>1333</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>481</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>481</source_obj>
<sink_obj>482</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>172</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>581</source_obj>
<sink_obj>483</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1170">
<id>1337</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="_1171">
<id>1339</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="_1172">
<id>1340</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="_1173">
<id>1342</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="_1174">
<id>1343</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="_1175">
<id>1345</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="_1176">
<id>1346</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="_1177">
<id>1347</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="_1178">
<id>1348</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="_1179">
<id>1349</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="_1180">
<id>1350</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="_1181">
<id>1351</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="_1182">
<id>1352</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="_1183">
<id>1353</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="_1184">
<id>1354</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="_1185">
<id>1355</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="_1186">
<id>1356</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="_1187">
<id>1357</id>
<edge_type>1</edge_type>
<source_obj>612</source_obj>
<sink_obj>491</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_1188">
<id>1358</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="_1189">
<id>1361</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="_1190">
<id>1362</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="_1191">
<id>1363</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="_1192">
<id>1364</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="_1193">
<id>1365</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="_1194">
<id>1366</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="_1195">
<id>1367</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="_1196">
<id>1368</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="_1197">
<id>1369</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="_1198">
<id>1370</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="_1199">
<id>1371</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="_1200">
<id>1372</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="_1201">
<id>1373</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="_1202">
<id>1374</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="_1203">
<id>1375</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="_1204">
<id>1376</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="_1205">
<id>1377</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="_1206">
<id>1378</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="_1207">
<id>1379</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="_1208">
<id>1380</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="_1209">
<id>1381</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="_1210">
<id>1382</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="_1211">
<id>1383</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="_1212">
<id>1384</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="_1213">
<id>1385</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="_1214">
<id>1386</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="_1215">
<id>1387</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="_1216">
<id>1388</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="_1217">
<id>1389</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="_1218">
<id>1390</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="_1219">
<id>1391</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="_1220">
<id>1392</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="_1221">
<id>1393</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="_1222">
<id>1394</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="_1223">
<id>1395</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="_1224">
<id>1396</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="_1225">
<id>1397</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="_1226">
<id>1398</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="_1227">
<id>1399</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="_1228">
<id>1400</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="_1229">
<id>1401</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="_1230">
<id>1402</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="_1231">
<id>1403</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="_1232">
<id>1404</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="_1233">
<id>1405</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="_1234">
<id>1406</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="_1235">
<id>1407</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="_1236">
<id>1408</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="_1237">
<id>1409</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="_1238">
<id>1410</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="_1239">
<id>1411</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="_1240">
<id>1412</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="_1241">
<id>1413</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="_1242">
<id>1414</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="_1243">
<id>1415</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="_1244">
<id>1416</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="_1245">
<id>1417</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="_1246">
<id>1418</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="_1247">
<id>1419</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="_1248">
<id>1420</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="_1249">
<id>1421</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="_1250">
<id>1422</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="_1251">
<id>1423</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="_1252">
<id>1424</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="_1253">
<id>1425</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="_1254">
<id>2550</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="_1255">
<id>2551</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="_1256">
<id>2552</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="_1257">
<id>2553</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="_1258">
<mId>1</mId>
<mTag>relu<array,array<ap_fixed,32u>,relu_config4></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>1027</mMinLatency>
<mMaxLatency>1027</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1259">
<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="_1260">
<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>1024</mMinTripCount>
<mMaxTripCount>1024</mMaxTripCount>
<mMinLatency>1025</mMinLatency>
<mMaxLatency>1025</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_1261">
<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="_1262">
<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>
|
procedure All_Modes
(Default_In_Parm : Integer;
In_Parm : in Integer;
Out_Parm : out Integer;
In_Out_Parm : in out Integer;
Access_Parm : access Integer);
|
with System;
with Ada.Real_Time; use Ada.Real_Time;
with Time_Triggered_Scheduling; -- use Time_Triggered_Scheduling;
-- The following packages are for tracing and timing support
with Ada.Exceptions; use Ada.Exceptions;
with Logging_Support; use Logging_Support;
with Use_CPU; use Use_CPU;
with Ada.Text_IO; use Ada.Text_IO;
with Epoch_Support; use Epoch_Support;
with STM32.Board; use STM32.Board;
-- with Stats;
package body TTS_Example2 is
-- package MyStats is new Stats (5);
-- Instantiation of generic TT scheduler
No_Of_TT_Works : constant := 3;
package TT_Scheduler is new Time_Triggered_Scheduling (No_Of_TT_Works);
use TT_Scheduler;
function New_Slot (ms : Natural;
WId : Any_Work_Id;
Slot_Separation : Natural := 0) return Time_Slot;
function New_Slot (ms : Natural;
WId : Any_Work_Id;
Slot_Separation : Natural := 0) return Time_Slot is
Slot : Time_Slot;
begin
Slot.Slot_Duration := Milliseconds (ms);
Slot.Work_Id := WId;
Slot.Next_Slot_Separation := Milliseconds (Slot_Separation);
return Slot;
end New_Slot;
----------------------------
-- Time-triggered plans --
----------------------------
TTP1 : aliased Time_Triggered_Plan :=
(
New_Slot (30, 1),
New_Slot (70, Empty_Slot),
New_Slot (60, 2),
New_Slot (40, Empty_Slot),
New_Slot (90, 3),
New_Slot (10, Mode_Change_Slot)
);
TTP2 : aliased Time_Triggered_Plan :=
(
New_Slot (90, 3),
New_Slot (10, Empty_Slot),
New_Slot (60, 2),
New_Slot (40, Empty_Slot),
New_Slot (30, 1),
New_Slot (70, Mode_Change_Slot)
);
Null_Plan : aliased Time_Triggered_Plan :=
(
0 => New_Slot (100, Empty_Slot),
1 => New_Slot (100, Mode_Change_Slot)
);
-------------------
-- Task Patterns --
-------------------
-- A basic TT task
task type Basic_TT_Task (Work_Id : Regular_Work_Id;
Execution_Time_MS : Natural)
with Priority => System.Priority'Last is
end Basic_TT_Task;
task body Basic_TT_Task is
Work_To_Be_Done : constant Natural := Execution_Time_MS;
LED_To_Turn : User_LED;
When_Was_Released : Time;
-- Jitter : Time_Span;
begin
case Work_Id is
when 1 =>
LED_To_Turn := Red_LED;
when 2 =>
LED_To_Turn := Blue_LED;
when 3 =>
LED_To_Turn := Green_LED;
end case;
loop
Wait_For_Activation (Work_Id, When_Was_Released);
-- Jitter := Clock - When_Was_Released;
-- Log (No_Event, "|---> Jitter of Worker" & Integer'Image (Integer (Work_Id)) &
-- " = " & Duration'Image (1000.0 * To_Duration (Jitter)) & " ms.");
-- MyStats.Register_Time(Integer(Work_Id)*2-1, Jitter);
Set (Probe_TT_Point);
Turn_On (LED_To_Turn);
Work (Work_To_Be_Done);
Turn_Off (LED_To_Turn);
Clear (Probe_TT_Point);
-- Log (Stop_Task, "W" & Character'Val (Character'Pos ('0') + Integer (Work_Id)));
end loop;
exception
when E : others =>
Put_Line ("Periodic worker W" & Character'Val (Character'Pos ('0') + Integer (Work_Id)) &
": " & Exception_Message (E));
end Basic_TT_Task;
-------------------------------
-- Priority scheduled tasks --
-------------------------------
task type DM_Task (Id : Natural; Period : Integer; Prio : System.Priority)
with Priority => Prio;
task body DM_Task is
Next : Time := Epoch;
Per : constant Time_Span := Milliseconds (Period);
Jitter : Time_Span;
begin
loop
delay until Next;
Jitter := Clock - Next;
Log (No_Event, "|---------> Jitter of DM Task" & Integer'Image (Id) &
" = " & Duration'Image (1000.0 * To_Duration (Jitter)) & " ms.");
-- MyStats.Register_Time(Integer(Id)*2-1, Jitter);
-- Log (Start_Task, "T" & Character'Val (Character'Pos ('0') + Integer (Id)));
Set (Probe_ET_Point);
Turn_On (Orange_LED);
Work (5);
Next := Next + Per;
Turn_Off (Orange_LED);
Clear (Probe_ET_Point);
-- Log (Stop_Task, "T" & Character'Val (Character'Pos ('0') + Integer (Id)));
end loop;
exception
when E : others =>
Put_Line (Exception_Message (E));
end DM_Task;
-- Event-triggered tasks
T4 : DM_Task (Id => 4, Period => 90, Prio => System.Priority'First + 1);
T5 : DM_Task (Id => 5, Period => 210, Prio => System.Priority'First);
-- Time-triggered tasks
-- Work_ID, Execution (ms)
Wk1 : Basic_TT_Task (1, 20);
Wk2 : Basic_TT_Task (2, 40);
Wk3 : Basic_TT_Task (3, 60);
procedure Main is
K : Integer := 0; -- Number of iterations in main loop
begin
-- Generate trace header --
Log (No_Event, "1 M1"); -- Nr of modes
Log (No_Event, "5"); -- Nr of works + Nr of tasks
Log (No_Event, "W1 9.200 9.200 0.0 10"); -- Task_name Period Deadline Phasing Priority
Log (No_Event, "W2 9.200 9.200 0.0 9");
Log (No_Event, "W3 9.200 9.200 0.0 8");
Log (No_Event, "T4 0.600 0.600 0.0 5");
Log (No_Event, "T5 0.800 0.800 0.0 4");
Log (No_Event, ":BODY");
delay until Epoch;
loop
Log (Mode_Change, "M1");
Set_Plan (TTP1'Access);
delay until Epoch + Seconds (K * 30 + 10);
Log (Mode_Change, "Null Plan");
Set_Plan (Null_Plan'Access);
delay until Epoch + Seconds (K * 30 + 15);
Log (Mode_Change, "M2");
Set_Plan (TTP2'Access);
delay until Epoch + Seconds (K * 30 + 25);
Log (Mode_Change, "Null Plan");
Set_Plan (Null_Plan'Access);
delay until Epoch + Seconds (K * 30 + 30);
K := K + 1;
end loop;
-- MyStats.Print_Stats;
-- delay until Time_Last;
end Main;
procedure Configure_Probe_Points;
procedure Configure_Probe_Points is
Configuration : GPIO_Port_Configuration;
begin
Configuration.Mode := Mode_Out;
Configuration.Output_Type := Push_Pull;
Configuration.Speed := Speed_50MHz;
Configuration.Resistors := Floating;
Enable_Clock (Probe_TT_Point & Probe_ET_Point);
Configure_IO (Probe_TT_Point & Probe_ET_Point, Configuration);
Clear (Probe_TT_Point);
Clear (Probe_ET_Point);
end Configure_Probe_Points;
begin
Configure_Probe_Points;
Initialize_LEDs;
All_LEDs_Off;
end TTS_Example2;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2018 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with GL.Barriers;
with GL.Compute;
with GL.Types.Compute;
with Orka.Rendering.Programs.Modules;
package body Orka.Algorithms.Prefix_Sums is
function Create_Factory
(Location : Resources.Locations.Location_Ptr) return Factory
is
use Rendering.Programs;
begin
return
(Program_Prefix_Sum => Create_Program (Modules.Create_Module
(Location, CS => "algorithms/prefix-sum.comp")),
Program_Add => Create_Program (Modules.Create_Module
(Location, CS => "algorithms/prefix-sum-add.comp")));
end Create_Factory;
function Create_Prefix_Sum
(Object : Factory;
Length : Positive) return Prefix_Sum'Class
is
use Rendering.Buffers;
use all type Types.Numeric_Type;
Work_Group_Count : constant GL.Types.Compute.Dimension_Size_Array
:= GL.Compute.Max_Compute_Work_Group_Count;
Max_Group_Count : constant Natural := Natural (Work_Group_Count (X));
Work_Group_Size : constant GL.Types.Compute.Dimension_Size_Array
:= Object.Program_Prefix_Sum.Compute_Work_Group_Size;
-- Multiply by 4 because the shader processes 4 numbers per invocation
Local_Size : constant Natural := 4 * Natural (Work_Group_Size (X));
Padding : constant Boolean := Length rem Local_Size /= 0;
Work_Groups : constant Natural
:= Length / Local_Size + (if Padding then 1 else 0);
Sum_Padding : constant Boolean := Work_Groups rem Local_Size /= 0;
Sum_Work_Groups : constant Natural
:= Work_Groups / Local_Size + (if Sum_Padding then 1 else 0);
pragma Assert (Work_Groups <= Max_Group_Count);
pragma Assert (Sum_Work_Groups <= Max_Group_Count);
pragma Assert (Sum_Work_Groups <= Local_Size);
-- Support prefix sum of work group totals without recursion
begin
return
Prefix_Sum'(Programs => Object,
Length => Length,
Work_Groups => Work_Groups,
Sum_Work_Groups => Sum_Work_Groups,
-- Buffer_1 is the buffer given as a parameter to Compute_Prefix_Sum
-- and contains the initial/final values
Buffer_2 => Create_Buffer
(Flags => (others => False),
Kind => UInt_Type,
Length => Work_Groups),
Buffer_3 => Create_Buffer
(Flags => (others => False),
Kind => UInt_Type,
Length => Sum_Work_Groups),
Buffer_4 => Create_Buffer
(Flags => (others => False),
Kind => UInt_Type,
Length => 1));
end Create_Prefix_Sum;
procedure Compute_Prefix_Sum
(Object : in out Prefix_Sum;
Buffer : Rendering.Buffers.Buffer)
is
use GL.Types;
use all type Rendering.Buffers.Indexed_Buffer_Target;
procedure Compute_Sum
(Buffer_1, Buffer_2 : Rendering.Buffers.Buffer; Work_Groups : Natural) is
begin
Buffer_1.Bind (Shader_Storage, 0);
Buffer_2.Bind (Shader_Storage, 1);
GL.Barriers.Memory_Barrier ((Shader_Storage => True, others => False));
GL.Compute.Dispatch_Compute (X => UInt (Work_Groups));
end Compute_Sum;
procedure Add
(Buffer_1, Buffer_2 : Rendering.Buffers.Buffer; Work_Groups : Natural) is
begin
Buffer_1.Bind (Shader_Storage, 0);
Buffer_2.Bind (Shader_Storage, 1);
GL.Barriers.Memory_Barrier ((Shader_Storage => True, others => False));
GL.Compute.Dispatch_Compute (X => UInt (Work_Groups));
end Add;
begin
-- Phase 1a: Compute prefix sum
Object.Programs.Program_Prefix_Sum.Use_Program;
Compute_Sum (Buffer, Object.Buffer_2, Object.Work_Groups);
-- A prefix sum has been computed per work group. If we have multiple
-- groups, then we need to compute offsets and add them to the individual
-- prefix sums
if Object.Work_Groups > 1 then
-- Phase 2a: Apply prefix sum to buffer containing total of each work group
-- This will be an exclusive sum, so the first element will be set to zero
Compute_Sum (Object.Buffer_2, Object.Buffer_3, Object.Sum_Work_Groups);
if Object.Sum_Work_Groups > 1 then
-- Phase 3a
Compute_Sum (Object.Buffer_3, Object.Buffer_4, 1);
-- Buffer_4 is always unused because of the assumption that
-- Sum_Work_Groups <= Local_Size so that we only need one work group
-- (otherwise we would need to apply the algorithm to Buffer_4 as well)
-- Phase 3b: There is no phase 3b because there is only one work group
-- Phase 2b: Add offsets to the prefix sums of the totals
Object.Programs.Program_Add.Use_Program;
Add (Object.Buffer_2, Object.Buffer_3, Object.Work_Groups);
else
-- Buffer_3 is unused, we can directly use Buffer_2 for the
-- offsets (since it's an exclusive sum)
Object.Programs.Program_Add.Use_Program;
end if;
-- Phase 1b: Add offsets to the prefix sums
Add (Buffer, Object.Buffer_2, Object.Work_Groups);
else
-- Buffer_2 is unused, we can directly use Buffer as the final result
null;
end if;
end Compute_Prefix_Sum;
end Orka.Algorithms.Prefix_Sums;
|
-- C56002A.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 BLOCKS CAN HAVE DECLARATIVE PARTS AND THAT
-- THE EFFECT OF THESE DECLARATIONS IS LIMITED TO THE BLOCKS
-- IN WHICH THEY OCCUR.
-- RM 04/16/81
-- SPS 3/4/83
WITH REPORT;
PROCEDURE C56002A IS
USE REPORT ;
BEGIN
TEST( "C56002A" , "BLOCKS CAN HAVE DECLARATIVE PARTS AND" &
" THE EFFECT OF THESE DECLARATIONS IS LIMITED" &
" TO THE BLOCKS IN WHICH THEY OCCUR" ) ;
DECLARE
FIRST : CONSTANT INTEGER := IDENT_INT( 1) ;
SECOND : CONSTANT INTEGER := IDENT_INT( 2) ;
THIRD : CONSTANT INTEGER := IDENT_INT( 3) ;
FOURTH : CONSTANT INTEGER := IDENT_INT( 4) ;
FIFTH : CONSTANT INTEGER := IDENT_INT( 5) ;
TENTH : CONSTANT INTEGER := IDENT_INT(10) ;
ZEROTH : CONSTANT INTEGER := IDENT_INT( 0) ;
BEGIN
IF FIRST /= 1 OR
SECOND /= 2 OR
THIRD /= 3 OR
FOURTH /= 4 OR
FIFTH /= 5 OR
TENTH /=10 OR
ZEROTH /= 0
THEN
FAILED( "WRONG VALUES - 1" );
END IF;
DECLARE
TYPE ENUM IS ( AMINUS , A,B,C,D,E, F,G,H,I,J );
FIRST : CONSTANT ENUM := A ;
SECOND : CONSTANT ENUM := B ;
THIRD : CONSTANT ENUM := C ;
FOURTH : CONSTANT ENUM := D ;
FIFTH : CONSTANT ENUM := E ;
TENTH : CONSTANT ENUM := J ;
ZEROTH : CONSTANT ENUM := AMINUS ;
BEGIN
IF FIRST /= ENUM'VAL( IDENT_INT( 1 ) ) OR
SECOND /= ENUM'VAL( IDENT_INT( 2 ) ) OR
THIRD /= ENUM'VAL( IDENT_INT( 3 ) ) OR
FOURTH /= ENUM'VAL( IDENT_INT( 4 ) ) OR
FIFTH /= ENUM'VAL( IDENT_INT( 5 ) ) OR
TENTH /= ENUM'VAL( IDENT_INT(10 ) ) OR
ZEROTH /= ENUM'VAL( IDENT_INT( 0 ) )
THEN
FAILED( "WRONG VALUES - 2" );
END IF;
END ;
IF FIRST /= 1 OR
SECOND /= 2 OR
THIRD /= 3 OR
FOURTH /= 4 OR
FIFTH /= 5 OR
TENTH /=10 OR
ZEROTH /= 0
THEN
FAILED( "WRONG VALUES - 3" );
END IF;
DECLARE
FIRST : CONSTANT CHARACTER := 'A' ;
SECOND : CONSTANT CHARACTER := 'B' ;
THIRD : CONSTANT CHARACTER := 'C' ;
FOURTH : CONSTANT CHARACTER := 'D' ;
FIFTH : CONSTANT CHARACTER := 'E' ;
TENTH : CONSTANT CHARACTER := 'J' ;
ZEROTH : CONSTANT CHARACTER := '0' ;--ZERO < ANY LETTER
BEGIN
IF FIRST /= IDENT_CHAR( 'A' ) OR
SECOND /= IDENT_CHAR( 'B' ) OR
THIRD /= IDENT_CHAR( 'C' ) OR
FOURTH /= IDENT_CHAR( 'D' ) OR
FIFTH /= IDENT_CHAR( 'E' ) OR
TENTH /= IDENT_CHAR( 'J' ) OR
ZEROTH /= IDENT_CHAR( '0' )
THEN
FAILED( "WRONG VALUES - 4" );
END IF;
END ;
IF FIRST /= 1 OR
SECOND /= 2 OR
THIRD /= 3 OR
FOURTH /= 4 OR
FIFTH /= 5 OR
TENTH /=10 OR
ZEROTH /= 0
THEN
FAILED( "WRONG VALUES - 5" );
END IF;
END ;
RESULT ;
END C56002A ;
|
-- { dg-do run }
procedure Scalar_Mode_Agg_Compare is
type Point is record
Mapped : Boolean;
Tag : String (1 .. 2); -- HImode
end record;
pragma Pack (Point); -- Tag possibly at bitpos 1
function My_Point return Point is
begin
return (Mapped => True, Tag => "XX");
end;
A, B : Point := My_Point;
begin
-- The comparison below should find the two Tag fields equal and not
-- attempt to take their address, which might not be byte aligned.
if A.Tag /= B.Tag then
raise Program_Error;
end if;
end;
|
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl>
--
-- 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 Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Tcl.Tk.Ada.Widgets.Menu; use Tcl.Tk.Ada.Widgets.Menu;
with Ships; use Ships;
-- ****h* Maps/MUI
-- FUNCTION
-- Provide code for showing and interacting with maps
-- SOURCE
package Maps.UI is
-- ****
-- ****v* MUI/MUI.MenuAccelerators
-- FUNCTION
-- Array with the game menu default accelerators
-- SOURCE
MenuAccelerators: array(1 .. 11) of Unbounded_String :=
(To_Unbounded_String("s"), To_Unbounded_String("o"),
To_Unbounded_String("r"), To_Unbounded_String("m"),
To_Unbounded_String("k"), To_Unbounded_String("w"),
To_Unbounded_String("g"), To_Unbounded_String("F1"),
To_Unbounded_String("p"), To_Unbounded_String("q"),
To_Unbounded_String("x"));
-- ****
-- ****v* MUI/MUI.MapAccelerators
-- FUNCTION
-- Array with default map keyboard accelerators
-- SOURCE
MapAccelerators: array(1 .. 37) of Unbounded_String :=
(To_Unbounded_String("e"), To_Unbounded_String("v"),
To_Unbounded_String("plus"), To_Unbounded_String("minus"),
To_Unbounded_String("KP_Home"), To_Unbounded_String("KP_Up"),
To_Unbounded_String("KP_Prior"), To_Unbounded_String("KP_Left"),
To_Unbounded_String("KP_Begin"), To_Unbounded_String("KP_Right"),
To_Unbounded_String("KP_End"), To_Unbounded_String("KP_Down"),
To_Unbounded_String("KP_Next"), To_Unbounded_String("KP_Divide"),
To_Unbounded_String("Shift-Return"), To_Unbounded_String("Shift-h"),
To_Unbounded_String("Shift-KP_7"), To_Unbounded_String("Shift-KP_8"),
To_Unbounded_String("Shift-KP_9"), To_Unbounded_String("Shift-KP_4"),
To_Unbounded_String("Shift-KP_6"), To_Unbounded_String("Shift-KP_1"),
To_Unbounded_String("Shift-KP_2"), To_Unbounded_String("Shift-KP_3"),
To_Unbounded_String("Control-KP_Home"),
To_Unbounded_String("Control-KP_Up"),
To_Unbounded_String("Control-KP_Prior"),
To_Unbounded_String("Control-KP_Left"),
To_Unbounded_String("Control-KP_Right"),
To_Unbounded_String("Control-KP_End"),
To_Unbounded_String("Control-KP_Down"),
To_Unbounded_String("Control-KP_Next"),
To_Unbounded_String("Control-Return"),
To_Unbounded_String("Control-a"), To_Unbounded_String("Control-c"),
To_Unbounded_String("Control-b"), To_Unbounded_String("Control-d"));
-- ****
-- ****v* MUI/MUI.FullScreenAccel
-- FUNCTION
-- Keyboard shortcut for switching full screen mode
-- SOURCE
FullScreenAccel: Unbounded_String := To_Unbounded_String("Control-f");
-- ****
-- ****iv* MUI/MUI.CenterX
-- FUNCTION
-- Coordinates of the center point of the map
-- SOURCE
CenterX, CenterY: Positive;
-- ****
-- ****iv* MUI/MUI.GameMenu
-- FUNCTION
-- The main game menu
-- SOURCE
GameMenu: Tk_Menu;
-- ****
-- ****v* MUI/MUI.DefaultFontsSizes
-- FUNCTION
-- Default sizes of the game fonts
-- SOURCE
DefaultFontsSizes: array(1 .. 3) of Positive;
-- ****
-- ****f* MUI/MUI.CreateGameMenu
-- FUNCTION
-- Create the main game menu. Clear old elements and add all default
-- SOURCE
procedure CreateGameMenu;
-- ****
-- ****f* MUI/MUI.UpdateHeader
-- FUNCTION
-- Update the game information on the UI header (time, crew, etc)
-- SOURCE
procedure UpdateHeader;
-- ****
-- ****f* MUI/MUI.DrawMap
-- FUNCTION
-- Draw map on the screen
-- SOURCE
procedure DrawMap;
-- ****
-- ****f* MUI/MUI.CreateGameUI
-- FUNCTION
-- Create the game UI and show sky map to the player
-- SOURCE
procedure CreateGameUI;
-- ****
-- ****f* MUI/MUI.ShowSkyMap
-- FUNCTION
-- Show sky map - draw map, update header, etc
-- PARAMETERS
-- Clear - If true (when back from other screen), remove old subwindow and
-- add map
-- SOURCE
procedure ShowSkyMap(Clear: Boolean := False);
-- ****
-- ****f* MUI/MUI.SetKeys
-- FUNCTION
-- Set keyboard shortcuts
-- SOURCE
procedure SetKeys;
-- ****
-- ****f* MUI/MUI.FinishStory
-- FUNCTION
-- Finish the current story
-- SOURCE
procedure FinishStory;
-- ****
private
-- ****v* MUI/MUI.StartX_(private)
-- FUNCTION
-- Top left map coordinate
-- SOURCE
StartX, StartY: Integer;
-- ****
-- ****f* MUI/MUI.UpdateMapInfo_(private)
-- FUNCTION
-- Update information about map cell
-- PARAMETERS
-- X - X coordinate of the map cell
-- Y - Y coordinate of the map cell
-- SOURCE
procedure UpdateMapInfo
(X: Positive := Player_Ship.Sky_X; Y: Positive := Player_Ship.Sky_Y);
-- ****
-- ****f* MUI/MUI.UpdateMoveButtons_(private)
-- FUNCTION
-- Updated the player ship movement buttons
-- SOURCE
procedure UpdateMoveButtons;
-- ****
end Maps.UI;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . E X C E P T I O N S --
-- (Version for No Exception Handlers/No_Exception_Propagation) --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2021, 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. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Version is for use when there are no handlers in the partition (i.e. either
-- of Restriction No_Exception_Handlers or No_Exception_Propagation is set).
with System;
package Ada.Exceptions is
pragma Preelaborate;
-- In accordance with Ada 2005 AI-362
type Exception_Id is private;
pragma Preelaborable_Initialization (Exception_Id);
Null_Id : constant Exception_Id;
procedure Raise_Exception (E : Exception_Id; Message : String := "");
pragma No_Return (Raise_Exception);
-- Unconditionally call __gnat_last_chance_handler.
-- Note that the exception is still raised even if E is the null exception
-- id. This is a deliberate simplification for this profile (the use of
-- Raise_Exception with a null id is very rare in any case, and this way
-- we avoid introducing Raise_Exception_Always and we also avoid the if
-- test in Raise_Exception).
private
------------------
-- Exception_Id --
------------------
type Exception_Id is access all System.Address;
Null_Id : constant Exception_Id := null;
pragma Inline_Always (Raise_Exception);
end Ada.Exceptions;
|
------------------------------------------------------------------------------
-- --
-- ASIS-for-GNAT COMPONENTS --
-- --
-- A S I S . E X T E N S I O N S . I T E R A T O R --
-- --
-- S p e c --
-- --
-- Copyright (c) 2003-2006, Free Software Foundation, Inc. --
-- --
-- ASIS-for-GNAT is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. ASIS-for-GNAT is distributed in the hope that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General --
-- Public License for more details. You should have received a copy of the --
-- GNU General Public License distributed with ASIS-for-GNAT; see file --
-- COPYING. If not, write to the Free Software Foundation, 51 Franklin --
-- Street, Fifth Floor, Boston, MA 02110-1301, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the --
-- Software Engineering Laboratory of the Swiss Federal Institute of --
-- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the --
-- Scientific Research Computer Center of Moscow State University (SRCC --
-- MSU), Russia, with funding partially provided by grants from the Swiss --
-- National Science Foundation and the Swiss Academy of Engineering --
-- Sciences. ASIS-for-GNAT is now maintained by AdaCore --
-- (http://www.adacore.com). --
-- --
------------------------------------------------------------------------------
-- This package encapsulates the generic procedure Traverse_Unit which
-- is a generalization of the standard ASIS Asis.Iterator.Traverse_Element
-- procedure. Traverse_Unit traverses all the syntactical components of the
-- argument ASIS Compilation Unit.
package Asis.Extensions.Iterator is
generic
type State_Information is limited private;
with procedure Pre_Operation
(Element : Asis.Element;
Control : in out Traverse_Control;
State : in out State_Information) is <>;
with procedure Post_Operation
(Element : Asis.Element;
Control : in out Traverse_Control;
State : in out State_Information) is <>;
procedure Traverse_Unit
(Unit : Asis.Compilation_Unit;
Control : in out Traverse_Control;
State : in out State_Information);
-- Traverses all the syntactical structure of the argument Compilation
-- Unit. In ASIS, a Compilation Unit consists of context clause Elements
-- and of the Element representing the program unit, and these syntax
-- elements does not have a common root. Traverse_Unit instantiates
-- Asis.Iterator.Traverse_Element passing its own formal parameters as
-- actuals for Traverse_Element. Then it goes into all the
-- first-depth-level structural components of the argument Compilation
-- Unit by applying this instance of Traverse_Element to it.
--
-- If the value of traverse Control becomes Terminate_Immediately,
-- traversing of all the unit components is terminated (that is, if it
-- happens in some context clause Element, the Unit declaration Element
-- will not be traversed.
--
-- Appropriate Unit_Kinds:
-- A_Procedure
-- A_Function
-- A_Package
--
-- A_Generic_Procedure
-- A_Generic_Function
-- A_Generic_Package
--
-- A_Procedure_Instance
-- A_Function_Instance
-- A_Package_Instance
--
-- A_Procedure_Renaming
-- A_Function_Renaming
-- A_Package_Renaming
--
-- A_Generic_Procedure_Renaming
-- A_Generic_Function_Renaming
-- A_Generic_Package_Renaming
--
-- A_Procedure_Body
-- A_Procedure_Body
-- A_Function_Body
-- A_Package_Body
--
-- A_Procedure_Body_Subunit
-- A_Function_Body_Subunit
-- A_Package_Body_Subunit
-- A_Task_Body_Subunit
-- A_Protected_Body_Subunit
end Asis.Extensions.Iterator;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Visitors.UML_Iterators;
with AMF.Visitors.UML_Visitors;
with League.Strings.Internals;
with Matreshka.Internals.Strings;
package body AMF.Internals.UML_Merge_Nodes is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Merge_Node_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Enter_Merge_Node
(AMF.UML.Merge_Nodes.UML_Merge_Node_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Merge_Node_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Leave_Merge_Node
(AMF.UML.Merge_Nodes.UML_Merge_Node_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Merge_Node_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then
AMF.Visitors.UML_Iterators.UML_Iterator'Class
(Iterator).Visit_Merge_Node
(Visitor,
AMF.UML.Merge_Nodes.UML_Merge_Node_Access (Self),
Control);
end if;
end Visit_Element;
------------------
-- Get_Activity --
------------------
overriding function Get_Activity
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activities.UML_Activity_Access is
begin
return
AMF.UML.Activities.UML_Activity_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Activity
(Self.Element)));
end Get_Activity;
------------------
-- Set_Activity --
------------------
overriding procedure Set_Activity
(Self : not null access UML_Merge_Node_Proxy;
To : AMF.UML.Activities.UML_Activity_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Activity
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Activity;
------------------
-- Get_In_Group --
------------------
overriding function Get_In_Group
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activity_Groups.Collections.Set_Of_UML_Activity_Group is
begin
return
AMF.UML.Activity_Groups.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Group
(Self.Element)));
end Get_In_Group;
---------------------------------
-- Get_In_Interruptible_Region --
---------------------------------
overriding function Get_In_Interruptible_Region
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Interruptible_Activity_Regions.Collections.Set_Of_UML_Interruptible_Activity_Region is
begin
return
AMF.UML.Interruptible_Activity_Regions.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Interruptible_Region
(Self.Element)));
end Get_In_Interruptible_Region;
----------------------
-- Get_In_Partition --
----------------------
overriding function Get_In_Partition
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition is
begin
return
AMF.UML.Activity_Partitions.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Partition
(Self.Element)));
end Get_In_Partition;
----------------------------
-- Get_In_Structured_Node --
----------------------------
overriding function Get_In_Structured_Node
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access is
begin
return
AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Structured_Node
(Self.Element)));
end Get_In_Structured_Node;
----------------------------
-- Set_In_Structured_Node --
----------------------------
overriding procedure Set_In_Structured_Node
(Self : not null access UML_Merge_Node_Proxy;
To : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_In_Structured_Node
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_In_Structured_Node;
------------------
-- Get_Incoming --
------------------
overriding function Get_Incoming
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is
begin
return
AMF.UML.Activity_Edges.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Incoming
(Self.Element)));
end Get_Incoming;
------------------
-- Get_Outgoing --
------------------
overriding function Get_Outgoing
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is
begin
return
AMF.UML.Activity_Edges.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Outgoing
(Self.Element)));
end Get_Outgoing;
------------------------
-- Get_Redefined_Node --
------------------------
overriding function Get_Redefined_Node
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node is
begin
return
AMF.UML.Activity_Nodes.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefined_Node
(Self.Element)));
end Get_Redefined_Node;
-----------------
-- Get_Is_Leaf --
-----------------
overriding function Get_Is_Leaf
(Self : not null access constant UML_Merge_Node_Proxy)
return Boolean is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Is_Leaf
(Self.Element);
end Get_Is_Leaf;
-----------------
-- Set_Is_Leaf --
-----------------
overriding procedure Set_Is_Leaf
(Self : not null access UML_Merge_Node_Proxy;
To : Boolean) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Is_Leaf
(Self.Element, To);
end Set_Is_Leaf;
---------------------------
-- Get_Redefined_Element --
---------------------------
overriding function Get_Redefined_Element
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element is
begin
return
AMF.UML.Redefinable_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefined_Element
(Self.Element)));
end Get_Redefined_Element;
------------------------------
-- Get_Redefinition_Context --
------------------------------
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is
begin
return
AMF.UML.Classifiers.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefinition_Context
(Self.Element)));
end Get_Redefinition_Context;
---------------------------
-- Get_Client_Dependency --
---------------------------
overriding function Get_Client_Dependency
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is
begin
return
AMF.UML.Dependencies.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency
(Self.Element)));
end Get_Client_Dependency;
-------------------------
-- Get_Name_Expression --
-------------------------
overriding function Get_Name_Expression
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access is
begin
return
AMF.UML.String_Expressions.UML_String_Expression_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression
(Self.Element)));
end Get_Name_Expression;
-------------------------
-- Set_Name_Expression --
-------------------------
overriding procedure Set_Name_Expression
(Self : not null access UML_Merge_Node_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Name_Expression;
-------------------
-- Get_Namespace --
-------------------
overriding function Get_Namespace
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
return
AMF.UML.Namespaces.UML_Namespace_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace
(Self.Element)));
end Get_Namespace;
------------------------
-- Get_Qualified_Name --
------------------------
overriding function Get_Qualified_Name
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.Optional_String is
begin
declare
use type Matreshka.Internals.Strings.Shared_String_Access;
Aux : constant Matreshka.Internals.Strings.Shared_String_Access
:= AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element);
begin
if Aux = null then
return (Is_Empty => True);
else
return (False, League.Strings.Internals.Create (Aux));
end if;
end;
end Get_Qualified_Name;
------------------------
-- Is_Consistent_With --
------------------------
overriding function Is_Consistent_With
(Self : not null access constant UML_Merge_Node_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Consistent_With unimplemented");
raise Program_Error with "Unimplemented procedure UML_Merge_Node_Proxy.Is_Consistent_With";
return Is_Consistent_With (Self, Redefinee);
end Is_Consistent_With;
-----------------------------------
-- Is_Redefinition_Context_Valid --
-----------------------------------
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Merge_Node_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Redefinition_Context_Valid unimplemented");
raise Program_Error with "Unimplemented procedure UML_Merge_Node_Proxy.Is_Redefinition_Context_Valid";
return Is_Redefinition_Context_Valid (Self, Redefined);
end Is_Redefinition_Context_Valid;
-------------------------
-- All_Owning_Packages --
-------------------------
overriding function All_Owning_Packages
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented");
raise Program_Error with "Unimplemented procedure UML_Merge_Node_Proxy.All_Owning_Packages";
return All_Owning_Packages (Self);
end All_Owning_Packages;
-----------------------------
-- Is_Distinguishable_From --
-----------------------------
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Merge_Node_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented");
raise Program_Error with "Unimplemented procedure UML_Merge_Node_Proxy.Is_Distinguishable_From";
return Is_Distinguishable_From (Self, N, Ns);
end Is_Distinguishable_From;
---------------
-- Namespace --
---------------
overriding function Namespace
(Self : not null access constant UML_Merge_Node_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented");
raise Program_Error with "Unimplemented procedure UML_Merge_Node_Proxy.Namespace";
return Namespace (Self);
end Namespace;
end AMF.Internals.UML_Merge_Nodes;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . T T Y --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-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. --
-- --
------------------------------------------------------------------------------
with Interfaces.C.Strings; use Interfaces.C.Strings;
package body GNAT.TTY is
use System;
procedure Check_TTY (Handle : TTY_Handle);
-- Check the validity of Handle. Raise Program_Error if ttys are not
-- supported. Raise Constraint_Error if Handle is an invalid handle.
------------------
-- Allocate_TTY --
------------------
procedure Allocate_TTY (Handle : out TTY_Handle) is
function Internal return System.Address;
pragma Import (C, Internal, "__gnat_new_tty");
begin
if not TTY_Supported then
raise Program_Error;
end if;
Handle.Handle := Internal;
end Allocate_TTY;
---------------
-- Check_TTY --
---------------
procedure Check_TTY (Handle : TTY_Handle) is
begin
if not TTY_Supported then
raise Program_Error;
elsif Handle.Handle = System.Null_Address then
raise Constraint_Error;
end if;
end Check_TTY;
---------------
-- Close_TTY --
---------------
procedure Close_TTY (Handle : in out TTY_Handle) is
procedure Internal (Handle : System.Address);
pragma Import (C, Internal, "__gnat_close_tty");
begin
Check_TTY (Handle);
Internal (Handle.Handle);
Handle.Handle := System.Null_Address;
end Close_TTY;
---------------
-- Reset_TTY --
---------------
procedure Reset_TTY (Handle : TTY_Handle) is
procedure Internal (Handle : System.Address);
pragma Import (C, Internal, "__gnat_reset_tty");
begin
Check_TTY (Handle);
Internal (Handle.Handle);
end Reset_TTY;
--------------------
-- TTY_Descriptor --
--------------------
function TTY_Descriptor
(Handle : TTY_Handle) return GNAT.OS_Lib.File_Descriptor
is
function Internal
(Handle : System.Address) return GNAT.OS_Lib.File_Descriptor;
pragma Import (C, Internal, "__gnat_tty_fd");
begin
Check_TTY (Handle);
return Internal (Handle.Handle);
end TTY_Descriptor;
--------------
-- TTY_Name --
--------------
function TTY_Name (Handle : TTY_Handle) return String is
function Internal (Handle : System.Address) return chars_ptr;
pragma Import (C, Internal, "__gnat_tty_name");
begin
Check_TTY (Handle);
return Value (Internal (Handle.Handle));
end TTY_Name;
-------------------
-- TTY_Supported --
-------------------
function TTY_Supported return Boolean is
function Internal return Integer;
pragma Import (C, Internal, "__gnat_tty_supported");
begin
return Internal /= 0;
end TTY_Supported;
end GNAT.TTY;
|
with ObjectPack, AbstractStrategyCombinatorPackage, IntrospectorPackage, StrategyPackage;
use ObjectPack, AbstractStrategyCombinatorPackage, IntrospectorPackage, StrategyPackage;
package SequenceIdStrategy is
FIRST : constant Integer := 0;
SECOND : constant Integer := 1;
type SequenceId is new AbstractStrategyCombinator and Object with null record;
----------------------------------------------------------------------------
-- Object implementation
----------------------------------------------------------------------------
function toString(o: SequenceId) return String;
----------------------------------------------------------------------------
-- Strategy implementation
----------------------------------------------------------------------------
function visitLight(str:access SequenceId; any: ObjectPtr; i: access Introspector'Class) return ObjectPtr;
function visit(str: access SequenceId; i: access Introspector'Class) return Integer;
----------------------------------------------------------------------------
procedure makeSequenceId(s : in out SequenceId; str1, str2 : StrategyPtr);
function make(str1, str2: StrategyPtr) return StrategyPtr;
----------------------------------------------------------------------------
end SequenceIdStrategy;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME 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 --
-- --
-- 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. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the generic bare board version of this package
with System.Task_Primitives.Operations;
package body Ada.Synchronous_Task_Control with
SPARK_Mode => Off
is
protected body Suspension_Object is
--------------
-- Get_Open --
--------------
function Get_Open return Boolean is
begin
return Open;
end Get_Open;
---------------
-- Set_False --
---------------
procedure Set_False is
begin
Open := False;
end Set_False;
--------------
-- Set_True --
--------------
procedure Set_True is
begin
Open := True;
end Set_True;
----------
-- Wait --
----------
entry Wait when Open is
begin
Open := False;
end Wait;
end Suspension_Object;
-------------------
-- Current_State --
-------------------
function Current_State (S : Suspension_Object) return Boolean is
begin
return S.Get_Open;
end Current_State;
---------------
-- Set_False --
---------------
procedure Set_False (S : in out Suspension_Object) is
begin
S.Set_False;
end Set_False;
--------------
-- Set_True --
--------------
procedure Set_True (S : in out Suspension_Object) is
begin
S.Set_True;
end Set_True;
------------------------
-- Suspend_Until_True --
------------------------
procedure Suspend_Until_True (S : in out Suspension_Object) is
begin
S.Wait;
end Suspend_Until_True;
end Ada.Synchronous_Task_Control;
|
-- part of OpenGLAda, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "COPYING"
private with GL.Low_Level;
package GL.Enums.Queries is
pragma Preelaborate;
-- Texture_Kind is declared in GL.Low_Level.Enums to be accessible for
-- OpenCLAda
type Parameter is (Time_Elapsed, Samples_Passed, Any_Samples_Passed,
Transform_Feedback_Primitives_Written);
-- needs to be declared here because of subtypes
for Parameter use (Time_Elapsed => 16#88BF#,
Samples_Passed => 16#8914#,
Any_Samples_Passed => 16#8C2F#,
Transform_Feedback_Primitives_Written => 16#8C88#);
for Parameter'Size use Low_Level.Enum'Size;
private
end GL.Enums.Queries;
|
--------------------------------------------------------------------------------------------------------------------
-- 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.Events.Joysticks
--
-- Joystick specific events.
--------------------------------------------------------------------------------------------------------------------
package SDL.Events.Joysticks is
-- Joystick events.
Axis_Motion : constant Event_Types := 16#0000_0600#;
Ball_Motion : constant Event_Types := Axis_Motion + 1;
Hat_Motion : constant Event_Types := Axis_Motion + 2;
Button_Down : constant Event_Types := Axis_Motion + 3;
Button_Up : constant Event_Types := Axis_Motion + 4;
Device_Added : constant Event_Types := Axis_Motion + 5;
Device_Removed : constant Event_Types := Axis_Motion + 6;
type IDs is range -2 ** 31 .. 2 ** 31 - 1 with
Convention => C,
Size => 32;
type Axes is range 0 .. 255 with
Convention => C,
Size => 8;
type Axes_Values is range -32768 .. 32767 with
Convention => C,
Size => 16;
type Axis_Events is
record
Event_Type : Event_Types; -- Will be set to Axis_Motion.
Time_Stamp : Time_Stamps;
Which : IDs;
Axis : Axes;
Padding_1 : Padding_8;
Padding_2 : Padding_8;
Padding_3 : Padding_8;
Value : Axes_Values;
Padding_4 : Padding_16;
end record with
Convention => C;
type Balls is range 0 .. 255 with
Convention => C,
Size => 8;
type Ball_Values is range -32768 .. 32767 with
Convention => C,
Size => 16;
type Ball_Events is
record
Event_Type : Event_Types; -- Will be set to Ball_Motion.
Time_Stamp : Time_Stamps;
Which : IDs;
Ball : Balls;
Padding_1 : Padding_8;
Padding_2 : Padding_8;
Padding_3 : Padding_8;
X_Relative : Ball_Values;
Y_Relative : Ball_Values;
end record with
Convention => C;
type Hats is range 0 .. 255 with
Convention => C,
Size => 8;
type Hat_Positions is mod 2 ** 8 with
Convention => C,
Size => 8;
Hat_Centred : constant Hat_Positions := 0;
Hat_Up : constant Hat_Positions := 1;
Hat_Right : constant Hat_Positions := 2;
Hat_Down : constant Hat_Positions := 4;
Hat_Left : constant Hat_Positions := 8;
Hat_Right_Up : constant Hat_Positions := Hat_Right or Hat_Up;
Hat_Right_Down : constant Hat_Positions := Hat_Right or Hat_Down;
Hat_Left_Up : constant Hat_Positions := Hat_Left or Hat_Up;
Hat_Left_Down : constant Hat_Positions := Hat_Left or Hat_Down;
type Hat_Events is
record
Event_Type : Event_Types; -- Will be set to Hat_Motion.
Time_Stamp : Time_Stamps;
Which : IDs;
Hat : Hats;
Position : Hat_Positions;
Padding_1 : Padding_8;
Padding_2 : Padding_8;
end record with
Convention => C;
type Buttons is range 0 .. 255 with
Convention => C,
Size => 8;
type Button_Events is
record
Event_Type : Event_Types; -- Will be set to Button_Down or Button_Up.
Time_Stamp : Time_Stamps;
Which : IDs;
Button : Buttons;
State : Button_State;
Padding_1 : Padding_8;
Padding_2 : Padding_8;
end record with
Convention => C;
type Device_Events is
record
Event_Type : Event_Types; -- Will be set to Device_Added or Device_Removed.
Time_Stamp : Time_Stamps;
Which : IDs;
end record with
Convention => C;
-- Update the joystick event data. This is called by the event loop.
procedure Update with
Import => True,
Convention => C,
External_Name => "SDL_JoystickUpdate";
function Is_Polling_Enabled return Boolean;
procedure Enable_Polling with
Inline => True;
procedure Disable_Polling with
Inline => True;
private
for Axis_Events use
record
Event_Type at 0 * SDL.Word range 0 .. 31;
Time_Stamp at 1 * SDL.Word range 0 .. 31;
Which at 2 * SDL.Word range 0 .. 31;
Axis at 3 * SDL.Word range 0 .. 7;
Padding_1 at 3 * SDL.Word range 8 .. 15;
Padding_2 at 3 * SDL.Word range 16 .. 23;
Padding_3 at 3 * SDL.Word range 24 .. 31;
Value at 4 * SDL.Word range 0 .. 15;
Padding_4 at 4 * SDL.Word range 16 .. 31;
end record;
for Ball_Events use
record
Event_Type at 0 * SDL.Word range 0 .. 31;
Time_Stamp at 1 * SDL.Word range 0 .. 31;
Which at 2 * SDL.Word range 0 .. 31;
Ball at 3 * SDL.Word range 0 .. 7;
Padding_1 at 3 * SDL.Word range 8 .. 15;
Padding_2 at 3 * SDL.Word range 16 .. 23;
Padding_3 at 3 * SDL.Word range 24 .. 31;
X_Relative at 4 * SDL.Word range 0 .. 15;
Y_Relative at 4 * SDL.Word range 16 .. 31;
end record;
for Hat_Events use
record
Event_Type at 0 * SDL.Word range 0 .. 31;
Time_Stamp at 1 * SDL.Word range 0 .. 31;
Which at 2 * SDL.Word range 0 .. 31;
Hat at 3 * SDL.Word range 0 .. 7;
Position at 3 * SDL.Word range 8 .. 15;
Padding_1 at 3 * SDL.Word range 16 .. 23;
Padding_2 at 3 * SDL.Word range 24 .. 31;
end record;
for Button_Events use
record
Event_Type at 0 * SDL.Word range 0 .. 31;
Time_Stamp at 1 * SDL.Word range 0 .. 31;
Which at 2 * SDL.Word range 0 .. 31;
Button at 3 * SDL.Word range 0 .. 7;
State at 3 * SDL.Word range 8 .. 15;
Padding_1 at 3 * SDL.Word range 16 .. 23;
Padding_2 at 3 * SDL.Word range 24 .. 31;
end record;
for Device_Events use
record
Event_Type at 0 * SDL.Word range 0 .. 31;
Time_Stamp at 1 * SDL.Word range 0 .. 31;
Which at 2 * SDL.Word range 0 .. 31;
end record;
end SDL.Events.Joysticks;
|
-- C92003A.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 TASK CAN BE PASSED AS AN ACTUAL IN OR IN OUT PARAMETER
-- IN A SUBPROGRAM CALL AND THAT THE ACTUAL AND FORMAL PARAMETERS DENOTE
-- THE SAME TASK OBJECT.
-- JRK 1/17/81
-- TBN 12/19/85 ADDED IN OUT PARAMETER CASE.
-- PWB 8/04/86 ADDED CHECK THAT FORMAL AND ACTUAL PARAMETERS DENOTE
-- THE SAME TASK OBJECT.
WITH REPORT; USE REPORT;
PROCEDURE C92003A IS
BEGIN
TEST ("C92003A", "CHECK TASKS PASSED AS ACTUAL IN OR IN OUT " &
"PARAMETERS TO SUBPROGRAMS");
DECLARE
TASK TYPE TT IS
ENTRY E (I : INTEGER);
END TT;
T, S : TT;
TASK BODY TT IS
SOURCE : INTEGER;
BEGIN
SELECT
ACCEPT E (I : INTEGER) DO
SOURCE := I;
END E;
OR
TERMINATE;
END SELECT;
IF SOURCE /= 1 THEN
FAILED ("EXPECTED 1, GOT " & INTEGER'IMAGE(SOURCE));
END IF;
SELECT
ACCEPT E (I : INTEGER) DO
SOURCE := I;
END E;
OR
TERMINATE;
END SELECT;
IF SOURCE /= 2 THEN
FAILED ("EXPECTED 2, GOT " & INTEGER'IMAGE(SOURCE));
END IF;
SELECT
ACCEPT E (I : INTEGER) DO
SOURCE := I;
END E;
OR
TERMINATE;
END SELECT;
IF SOURCE /= 3 THEN
FAILED ("EXPECTED 3, GOT " & INTEGER'IMAGE(SOURCE));
END IF;
END TT;
PROCEDURE P (T : TT) IS
BEGIN
T.E(2);
END P;
PROCEDURE Q (S : IN OUT TT) IS
BEGIN
S.E(2);
END Q;
BEGIN
T.E(1); -- FIRST CALL TO T.E
P(T); -- SECOND CALL TO T.E
T.E(3); -- THIRD CALL TO T.E
S.E(1); -- FIRST CALL TO S.E
Q(S); -- SECOND CALL TO S.E
S.E(3); -- THIRD CALL TO S.E
END;
RESULT;
END C92003A;
|
-- Copyright 2007-2014 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
C : Character := 'a';
WC : Wide_Character := 'b';
WWC : Wide_Wide_Character := 'c';
begin
Do_Nothing (C'Address); -- START
Do_Nothing (WC'Address);
Do_Nothing (WWC'Address);
end Foo;
|
package body Padding with SPARK_Mode is
function Left_Pad (S : String; Pad_Char : Character; Len : Natural)
return String
-- (Len - S'Length) is the number of required padding chars. We create a
-- string of that length with only Pad_Chars, and then concatenate this
-- with S.
is ((1 .. Len - S'Length => Pad_Char) & S);
end Padding;
|
pragma License (Unrestricted);
-- extended unit specialized for Darwin
private with System.Storage_Map;
package System.Program is
-- Probing information of the program itself.
pragma Preelaborate;
-- the executable file
function Full_Name return String;
function Load_Address return Address;
pragma Inline (Load_Address); -- renamed
private
function Load_Address return Address
renames Storage_Map.Load_Address;
end System.Program;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . T H R E A D S --
-- --
-- B o d y --
-- --
-- Copyright (C) 1998-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. --
-- --
------------------------------------------------------------------------------
with Ada.Task_Identification; use Ada.Task_Identification;
with System.Task_Primitives.Operations;
with System.Tasking;
with System.Tasking.Stages; use System.Tasking.Stages;
with System.Tasking.Utilities;
with System.OS_Interface; use System.OS_Interface;
with System.Soft_Links; use System.Soft_Links;
with Ada.Unchecked_Conversion;
package body GNAT.Threads is
use System;
package STPO renames System.Task_Primitives.Operations;
type Thread_Id_Ptr is access all Thread_Id;
pragma Warnings (Off);
-- The following unchecked conversions are aliasing safe, since they
-- are never used to create pointers to improperly aliased data.
function To_Addr is new Ada.Unchecked_Conversion (Task_Id, Address);
function To_Id is new Ada.Unchecked_Conversion (Address, Task_Id);
function To_Id is new Ada.Unchecked_Conversion (Address, Tasking.Task_Id);
function To_Tid is new Ada.Unchecked_Conversion
(Address, Ada.Task_Identification.Task_Id);
function To_Thread is new Ada.Unchecked_Conversion (Address, Thread_Id_Ptr);
pragma Warnings (On);
type Code_Proc is access procedure (Id : Address; Parm : Void_Ptr);
task type Thread
(Stsz : Natural;
Prio : Any_Priority;
Parm : Void_Ptr;
Code : Code_Proc)
is
pragma Priority (Prio);
pragma Storage_Size (Stsz);
end Thread;
task body Thread is
begin
Code.all (To_Addr (Current_Task), Parm);
end Thread;
type Tptr is access Thread;
-------------------
-- Create_Thread --
-------------------
function Create_Thread
(Code : Address;
Parm : Void_Ptr;
Size : Natural;
Prio : Integer) return System.Address
is
TP : Tptr;
function To_CP is new Ada.Unchecked_Conversion (Address, Code_Proc);
begin
TP := new Thread (Size, Prio, Parm, To_CP (Code));
return To_Addr (TP'Identity);
end Create_Thread;
---------------------
-- Register_Thread --
---------------------
function Register_Thread return System.Address is
begin
return Task_Primitives.Operations.Register_Foreign_Thread.all'Address;
end Register_Thread;
-----------------------
-- Unregister_Thread --
-----------------------
procedure Unregister_Thread is
Self_Id : constant Tasking.Task_Id := Task_Primitives.Operations.Self;
begin
Self_Id.Common.State := Tasking.Terminated;
Destroy_TSD (Self_Id.Common.Compiler_Data);
Free_Task (Self_Id);
end Unregister_Thread;
--------------------------
-- Unregister_Thread_Id --
--------------------------
procedure Unregister_Thread_Id (Thread : System.Address) is
Thr : constant Thread_Id := To_Thread (Thread).all;
T : Tasking.Task_Id;
use type Tasking.Task_Id;
-- This use clause should be removed once a visibility problem
-- with the MaRTE run time has been fixed. ???
pragma Warnings (Off);
use type System.OS_Interface.Thread_Id;
pragma Warnings (On);
begin
STPO.Lock_RTS;
T := Tasking.All_Tasks_List;
loop
exit when T = null or else STPO.Get_Thread_Id (T) = Thr;
T := T.Common.All_Tasks_Link;
end loop;
STPO.Unlock_RTS;
if T /= null then
T.Common.State := Tasking.Terminated;
Destroy_TSD (T.Common.Compiler_Data);
Free_Task (T);
end if;
end Unregister_Thread_Id;
--------------------
-- Destroy_Thread --
--------------------
procedure Destroy_Thread (Id : Address) is
Tid : constant Task_Id := To_Id (Id);
begin
Abort_Task (Tid);
end Destroy_Thread;
----------------
-- Get_Thread --
----------------
procedure Get_Thread (Id : Address; Thread : Address) is
begin
To_Thread (Thread).all :=
Task_Primitives.Operations.Get_Thread_Id (To_Id (Id));
end Get_Thread;
procedure Get_Thread (Id : Task_Id; Thread : Address) is
begin
Get_Thread (To_Addr (Id), Thread);
end Get_Thread;
----------------------
-- Make_Independent --
----------------------
function Make_Independent return Boolean is
begin
return System.Tasking.Utilities.Make_Independent;
end Make_Independent;
----------------
-- To_Task_Id --
----------------
function To_Task_Id
(Id : System.Address) return Ada.Task_Identification.Task_Id
is
begin
return To_Tid (Id);
end To_Task_Id;
end GNAT.Threads;
|
-- C45531I.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT THE OPERATOR "*" PRODUCES CORRECT RESULTS
-- FOR MIXED FIXED POINT AND INTEGER TYPES USING 4 SUBTESTS.
-- THIS TEST REQUIRES MIN_WORD_LENGTH = 32.
-- THIS TEST USES VALUES OF DELTA WHICH ARE LESS THAN 0.5.
--
-- TEST CASES ARE:
-- A) INTEGER * FIXED WHEN ALL VALUES ARE MODEL NUMBERS.
-- B) FIXED * INTEGER WHEN ALL VALUES ARE MODEL NUMBERS.
-- C) INTEGER * FIXED FOR NON-MODEL NUMBERS.
-- D) FIXED * INTEGER FOR NON-MODEL NUMBERS.
--
-- REPEAT FOR MINIMUM REQUIRED WORD LENGTHS OF 12, 16, 32 AND 48,
-- WITH RANGE <, =, AND > THAN 1.0 AND
-- WITH DELTA <, =, AND > THAN 1.0.
-- HISTORY:
-- NTW 09/08/86 CREATED ORIGINAL TEST.
-- RJW 11/05/86 REVISED COMMENTS.
-- DHH 01/13/88 ADDED APPLICABILITY CRITERIA AND STANDARD HEADER.
-- BCB 04/27/90 REVISED APPLICABILITY CRITERIA.
-- BCB 10/03/90 REMOVED APPLICABILITY CRITERIA AND N/A => ERROR
-- LINE. CHANGED EXTENSION FROM '.DEP' TO '.ADA'.
WITH REPORT;
PROCEDURE C45531I IS
USE REPORT;
MIN_WORD_LENGTH : CONSTANT := 32;
FULL_SCALE : CONSTANT := 2 ** (MIN_WORD_LENGTH - 1);
FORTH : CONSTANT := FULL_SCALE / 4;
DEL1 : CONSTANT := 0.5 / FULL_SCALE;
DEL4 : CONSTANT := 4.0 * DEL1;
TYPE FX_0P5 IS DELTA DEL1 * 1 RANGE -0.5 .. 0.5 - DEL1 * 1;
TYPE FX_1 IS DELTA DEL1 * 2 RANGE -1.0 .. 1.0 - DEL1 * 2;
TYPE FX_2 IS DELTA DEL1 * 4 RANGE -2.0 .. 2.0 - DEL1 * 4;
BEGIN TEST ("C45531I", "MIXED FIXED POINT AND INTEGER ""*"" "
& "FOR RANGE <, =, > 1.0");
--------------------------------------------------
-- CASE A) INTEGER * FIXED WHEN ALL VALUES ARE MODEL NUMBERS.
A: DECLARE
A : INTEGER := 0;
B : FX_0P5 := 0.0;
RESULT_VALUE : FX_0P5 := 0.0;
LOWEST_ACCEPTABLE_VALUE : FX_0P5 := FX_0P5 (0.375);
HIGHEST_ACCEPTABLE_VALUE : FX_0P5 := FX_0P5 (0.375);
BEGIN
IF EQUAL (3, 3) THEN
A := 3;
B := FX_0P5 (0.125); -- A MODEL NUMBER
END IF;
RESULT_VALUE := A * B;
IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE)
OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN
FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL "
& "FOR INTEGER * FIXED "
& "WHEN ALL VALUES ARE MODEL NUMBERS");
END IF;
END A;
--------------------------------------------------
-- CASE B) FIXED * INTEGER WHEN ALL VALUES ARE MODEL NUMBERS.
B: DECLARE
A : FX_1 := 0.0;
B : INTEGER := 0;
RESULT_VALUE : FX_1 := 0.0;
LOWEST_ACCEPTABLE_VALUE : FX_1 := FX_1 (0.75);
HIGHEST_ACCEPTABLE_VALUE : FX_1 := FX_1 (0.75);
BEGIN
IF EQUAL (3, 3) THEN
A := FX_1 (0.125); -- A MODEL NUMBER
B := 6;
END IF;
RESULT_VALUE := A * B;
IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE)
OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN
FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL "
& "FOR FIXED * INTEGER "
& "WHEN ALL VALUES ARE MODEL NUMBERS");
END IF;
END B;
--------------------------------------------------
-- CASE C) INTEGER * FIXED FOR NON-MODEL NUMBERS.
C: DECLARE
A : INTEGER := 0;
B : FX_2 := 0.0;
RESULT_VALUE : FX_2 := 0.0;
LOW_COUNT : CONSTANT := (3 * (FORTH + 0) );
HIGH_COUNT : CONSTANT := (3 * (FORTH + 1) );
LOWEST_ACCEPTABLE_VALUE : FX_2
:= FX_2 (DEL4 * LOW_COUNT );
HIGHEST_ACCEPTABLE_VALUE : FX_2
:= FX_2 (DEL4 * HIGH_COUNT);
BEGIN
IF EQUAL (3, 3) THEN -- B NOT A MODEL NUMBER
A := 3;
B := FX_2 (DEL4 * FORTH + DEL1 );
END IF;
RESULT_VALUE := A * B;
IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE)
OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN
FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL "
& "FOR INTEGER * FIXED FOR NON-MODEL NUMBERS");
END IF;
END C;
--------------------------------------------------
-- CASE D) FIXED * INTEGER FOR NON-MODEL NUMBERS.
D: DECLARE
A : FX_2 := 0.0;
B : INTEGER := 0;
RESULT_VALUE : FX_2 := 0.0;
LOW_COUNT : CONSTANT := (3 * (FORTH + 0) );
HIGH_COUNT : CONSTANT := (3 * (FORTH + 1) );
LOWEST_ACCEPTABLE_VALUE : FX_2
:= FX_2 (DEL4 * LOW_COUNT );
HIGHEST_ACCEPTABLE_VALUE : FX_2
:= FX_2 (DEL4 * HIGH_COUNT);
BEGIN
IF EQUAL (3, 3) THEN -- A NOT A MODEL NUMBER
A := FX_2 (DEL4 * FORTH + DEL1 );
B := 3;
END IF;
RESULT_VALUE := A * B;
IF (RESULT_VALUE < LOWEST_ACCEPTABLE_VALUE)
OR (RESULT_VALUE > HIGHEST_ACCEPTABLE_VALUE) THEN
FAILED ("RESULT OF ""*"" OUTSIDE RESULT MODEL INTERVAL "
& "FOR FIXED * INTEGER FOR NON-MODEL NUMBERS");
END IF;
END D;
--------------------------------------------------
RESULT;
END C45531I;
|
-----------------------------------------------------------------------
-- ado-queries-tests -- Test loading of database queries
-- Copyright (C) 2011, 2012 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Tests;
package ADO.Queries.Tests is
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite);
type Test is new Util.Tests.Test with null record;
procedure Test_Load_Queries (T : in out Test);
-- Test the Initialize operation called several times
procedure Test_Initialize (T : in out Test);
end ADO.Queries.Tests;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.INDEFINITE_ORDERED_MAPS --
-- --
-- B o d y --
-- --
-- Copyright (C) 2004-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
with Ada.Containers.Helpers; use Ada.Containers.Helpers;
with Ada.Containers.Red_Black_Trees.Generic_Operations;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations);
with Ada.Containers.Red_Black_Trees.Generic_Keys;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with System; use type System.Address;
with System.Put_Images;
package body Ada.Containers.Indefinite_Ordered_Maps with
SPARK_Mode => Off
is
pragma Suppress (All_Checks);
pragma Warnings (Off, "variable ""Busy*"" is not referenced");
pragma Warnings (Off, "variable ""Lock*"" is not referenced");
-- See comment in Ada.Containers.Helpers
-----------------------------
-- Node Access Subprograms --
-----------------------------
-- These subprograms provide a functional interface to access fields
-- of a node, and a procedural interface for modifying these values.
function Color (Node : Node_Access) return Color_Type;
pragma Inline (Color);
function Left (Node : Node_Access) return Node_Access;
pragma Inline (Left);
function Parent (Node : Node_Access) return Node_Access;
pragma Inline (Parent);
function Right (Node : Node_Access) return Node_Access;
pragma Inline (Right);
procedure Set_Parent (Node : Node_Access; Parent : Node_Access);
pragma Inline (Set_Parent);
procedure Set_Left (Node : Node_Access; Left : Node_Access);
pragma Inline (Set_Left);
procedure Set_Right (Node : Node_Access; Right : Node_Access);
pragma Inline (Set_Right);
procedure Set_Color (Node : Node_Access; Color : Color_Type);
pragma Inline (Set_Color);
-----------------------
-- Local Subprograms --
-----------------------
function Copy_Node (Source : Node_Access) return Node_Access;
pragma Inline (Copy_Node);
procedure Free (X : in out Node_Access);
function Is_Equal_Node_Node
(L, R : Node_Access) return Boolean;
pragma Inline (Is_Equal_Node_Node);
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean;
pragma Inline (Is_Greater_Key_Node);
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean;
pragma Inline (Is_Less_Key_Node);
--------------------------
-- Local Instantiations --
--------------------------
package Tree_Operations is
new Red_Black_Trees.Generic_Operations (Tree_Types);
procedure Delete_Tree is
new Tree_Operations.Generic_Delete_Tree (Free);
function Copy_Tree is
new Tree_Operations.Generic_Copy_Tree (Copy_Node, Delete_Tree);
use Tree_Operations;
package Key_Ops is
new Red_Black_Trees.Generic_Keys
(Tree_Operations => Tree_Operations,
Key_Type => Key_Type,
Is_Less_Key_Node => Is_Less_Key_Node,
Is_Greater_Key_Node => Is_Greater_Key_Node);
procedure Free_Key is
new Ada.Unchecked_Deallocation (Key_Type, Key_Access);
procedure Free_Element is
new Ada.Unchecked_Deallocation (Element_Type, Element_Access);
function Is_Equal is
new Tree_Operations.Generic_Equal (Is_Equal_Node_Node);
---------
-- "<" --
---------
function "<" (Left, Right : Cursor) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
end if;
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in ""<"" is bad");
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in ""<"" is bad");
return Left.Node.Key.all < Right.Node.Key.all;
end "<";
function "<" (Left : Cursor; Right : Key_Type) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of ""<"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in ""<"" is bad");
return Left.Node.Key.all < Right;
end "<";
function "<" (Left : Key_Type; Right : Cursor) return Boolean is
begin
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of ""<"" equals No_Element";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in ""<"" is bad");
return Left < Right.Node.Key.all;
end "<";
---------
-- "=" --
---------
function "=" (Left, Right : Map) return Boolean is
begin
return Is_Equal (Left.Tree, Right.Tree);
end "=";
---------
-- ">" --
---------
function ">" (Left, Right : Cursor) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of "">"" equals No_Element";
end if;
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of "">"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in "">"" is bad");
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in "">"" is bad");
return Right.Node.Key.all < Left.Node.Key.all;
end ">";
function ">" (Left : Cursor; Right : Key_Type) return Boolean is
begin
if Checks and then Left.Node = null then
raise Constraint_Error with "Left cursor of "">"" equals No_Element";
end if;
if Checks and then Left.Node.Key = null then
raise Program_Error with "Left cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Left.Container.Tree, Left.Node),
"Left cursor in "">"" is bad");
return Right < Left.Node.Key.all;
end ">";
function ">" (Left : Key_Type; Right : Cursor) return Boolean is
begin
if Checks and then Right.Node = null then
raise Constraint_Error with "Right cursor of "">"" equals No_Element";
end if;
if Checks and then Right.Node.Key = null then
raise Program_Error with "Right cursor in ""<"" is bad";
end if;
pragma Assert (Vet (Right.Container.Tree, Right.Node),
"Right cursor in "">"" is bad");
return Right.Node.Key.all < Left;
end ">";
------------
-- Adjust --
------------
procedure Adjust is new Tree_Operations.Generic_Adjust (Copy_Tree);
procedure Adjust (Container : in out Map) is
begin
Adjust (Container.Tree);
end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is
new Tree_Operations.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key.all, New_Item => Node.Element.all);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Insert_Items (Source.Tree);
end Assign;
-------------
-- Ceiling --
-------------
function Ceiling (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Ceiling (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Ceiling;
-----------
-- Clear --
-----------
procedure Clear is new Tree_Operations.Generic_Clear (Delete_Tree);
procedure Clear (Container : in out Map) is
begin
Clear (Container.Tree);
end Clear;
-----------
-- Color --
-----------
function Color (Node : Node_Access) return Color_Type is
begin
return Node.Color;
end Color;
------------------------
-- Constant_Reference --
------------------------
function Constant_Reference
(Container : aliased Map;
Position : Cursor) return Constant_Reference_Type
is
begin
if Checks and then Position.Container = null then
raise Constraint_Error with
"Position cursor has no element";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor designates wrong map";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with "Node has no element";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor in Constant_Reference is bad");
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Constant_Reference_Type :=
(Element => Position.Node.Element.all'Access,
Control => (Controlled with TC))
do
Busy (TC.all);
end return;
end;
end Constant_Reference;
function Constant_Reference
(Container : aliased Map;
Key : Key_Type) return Constant_Reference_Type
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
if Checks and then Node.Element = null then
raise Program_Error with "Node has no element";
end if;
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Constant_Reference_Type :=
(Element => Node.Element.all'Access,
Control => (Controlled with TC))
do
Busy (TC.all);
end return;
end;
end Constant_Reference;
--------------
-- Contains --
--------------
function Contains (Container : Map; Key : Key_Type) return Boolean is
begin
return Find (Container, Key) /= No_Element;
end Contains;
----------
-- Copy --
----------
function Copy (Source : Map) return Map is
begin
return Target : Map do
Target.Assign (Source);
end return;
end Copy;
---------------
-- Copy_Node --
---------------
function Copy_Node (Source : Node_Access) return Node_Access is
K : Key_Access := new Key_Type'(Source.Key.all);
E : Element_Access;
begin
E := new Element_Type'(Source.Element.all);
return new Node_Type'(Parent => null,
Left => null,
Right => null,
Color => Source.Color,
Key => K,
Element => E);
exception
when others =>
Free_Key (K);
Free_Element (E);
raise;
end Copy_Node;
------------
-- Delete --
------------
procedure Delete
(Container : in out Map;
Position : in out Cursor)
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Delete equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with "Position cursor of Delete is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Delete designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Delete is bad");
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, Position.Node);
Free (Position.Node);
Position.Container := null;
end Delete;
procedure Delete (Container : in out Map; Key : Key_Type) is
X : Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then X = null then
raise Constraint_Error with "key not in map";
end if;
Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end Delete;
------------------
-- Delete_First --
------------------
procedure Delete_First (Container : in out Map) is
X : Node_Access := Container.Tree.First;
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Delete_First;
-----------------
-- Delete_Last --
-----------------
procedure Delete_Last (Container : in out Map) is
X : Node_Access := Container.Tree.Last;
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Delete_Last;
-------------
-- Element --
-------------
function Element (Position : Cursor) return Element_Type is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of function Element equals No_Element";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with
"Position cursor of function Element is bad";
end if;
if Checks
and then (Left (Position.Node) = Position.Node
or else
Right (Position.Node) = Position.Node)
then
raise Program_Error with "dangling cursor";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of function Element is bad");
return Position.Node.Element.all;
end Element;
function Element (Container : Map; Key : Key_Type) return Element_Type is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
return Node.Element.all;
end Element;
---------------------
-- Equivalent_Keys --
---------------------
function Equivalent_Keys (Left, Right : Key_Type) return Boolean is
begin
return (if Left < Right or else Right < Left then False else True);
end Equivalent_Keys;
-------------
-- Exclude --
-------------
procedure Exclude (Container : in out Map; Key : Key_Type) is
X : Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if X /= null then
Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X);
Free (X);
end if;
end Exclude;
--------------
-- Finalize --
--------------
procedure Finalize (Object : in out Iterator) is
begin
if Object.Container /= null then
Unbusy (Object.Container.Tree.TC);
end if;
end Finalize;
----------
-- Find --
----------
function Find (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Find;
-----------
-- First --
-----------
function First (Container : Map) return Cursor is
T : Tree_Type renames Container.Tree;
begin
return (if T.First = null then No_Element
else Cursor'(Container'Unrestricted_Access, T.First));
end First;
function First (Object : Iterator) return Cursor is
begin
-- The value of the iterator object's Node component influences the
-- behavior of the First (and Last) selector function.
-- When the Node component is null, this means the iterator object was
-- constructed without a start expression, in which case the (forward)
-- iteration starts from the (logical) beginning of the entire sequence
-- of items (corresponding to Container.First for a forward iterator).
-- Otherwise, this is iteration over a partial sequence of items. When
-- the Node component is non-null, the iterator object was constructed
-- with a start expression, that specifies the position from which the
-- (forward) partial iteration begins.
if Object.Node = null then
return Object.Container.First;
else
return Cursor'(Object.Container, Object.Node);
end if;
end First;
-------------------
-- First_Element --
-------------------
function First_Element (Container : Map) return Element_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.First = null then
raise Constraint_Error with "map is empty";
end if;
return T.First.Element.all;
end First_Element;
---------------
-- First_Key --
---------------
function First_Key (Container : Map) return Key_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.First = null then
raise Constraint_Error with "map is empty";
end if;
return T.First.Key.all;
end First_Key;
-----------
-- Floor --
-----------
function Floor (Container : Map; Key : Key_Type) return Cursor is
Node : constant Node_Access := Key_Ops.Floor (Container.Tree, Key);
begin
return (if Node = null then No_Element
else Cursor'(Container'Unrestricted_Access, Node));
end Floor;
----------
-- Free --
----------
procedure Free (X : in out Node_Access) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (Node_Type, Node_Access);
begin
if X = null then
return;
end if;
X.Parent := X;
X.Left := X;
X.Right := X;
begin
Free_Key (X.Key);
exception
when others =>
X.Key := null;
begin
Free_Element (X.Element);
exception
when others =>
X.Element := null;
end;
Deallocate (X);
raise;
end;
begin
Free_Element (X.Element);
exception
when others =>
X.Element := null;
Deallocate (X);
raise;
end;
Deallocate (X);
end Free;
------------------------
-- Get_Element_Access --
------------------------
function Get_Element_Access
(Position : Cursor) return not null Element_Access is
begin
return Position.Node.Element;
end Get_Element_Access;
-----------------
-- Has_Element --
-----------------
function Has_Element (Position : Cursor) return Boolean is
begin
return Position /= No_Element;
end Has_Element;
-------------
-- Include --
-------------
procedure Include
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Position : Cursor;
Inserted : Boolean;
K : Key_Access;
E : Element_Access;
begin
Insert (Container, Key, New_Item, Position, Inserted);
if not Inserted then
TE_Check (Container.Tree.TC);
K := Position.Node.Key;
E := Position.Node.Element;
Position.Node.Key := new Key_Type'(Key);
declare
-- The element allocator may need an accessibility check in the
-- case the actual type is class-wide or has access discriminants
-- (see RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Position.Node.Element := new Element_Type'(New_Item);
exception
when others =>
Free_Key (K);
raise;
end;
Free_Key (K);
Free_Element (E);
end if;
end Include;
------------
-- Insert --
------------
procedure Insert
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type;
Position : out Cursor;
Inserted : out Boolean)
is
function New_Node return Node_Access;
pragma Inline (New_Node);
procedure Insert_Post is
new Key_Ops.Generic_Insert_Post (New_Node);
procedure Insert_Sans_Hint is
new Key_Ops.Generic_Conditional_Insert (Insert_Post);
--------------
-- New_Node --
--------------
function New_Node return Node_Access is
Node : Node_Access := new Node_Type;
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Node.Key := new Key_Type'(Key);
Node.Element := new Element_Type'(New_Item);
return Node;
exception
when others =>
-- On exception, deallocate key and elem. Note that free
-- deallocates both the key and the elem.
Free (Node);
raise;
end New_Node;
-- Start of processing for Insert
begin
Insert_Sans_Hint
(Container.Tree,
Key,
Position.Node,
Inserted);
Position.Container := Container'Unrestricted_Access;
end Insert;
procedure Insert
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Position : Cursor;
pragma Unreferenced (Position);
Inserted : Boolean;
begin
Insert (Container, Key, New_Item, Position, Inserted);
if Checks and then not Inserted then
raise Constraint_Error with "key already in map";
end if;
end Insert;
--------------
-- Is_Empty --
--------------
function Is_Empty (Container : Map) return Boolean is
begin
return Container.Tree.Length = 0;
end Is_Empty;
------------------------
-- Is_Equal_Node_Node --
------------------------
function Is_Equal_Node_Node (L, R : Node_Access) return Boolean is
begin
return (if L.Key.all < R.Key.all then False
elsif R.Key.all < L.Key.all then False
else L.Element.all = R.Element.all);
end Is_Equal_Node_Node;
-------------------------
-- Is_Greater_Key_Node --
-------------------------
function Is_Greater_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean
is
begin
-- k > node same as node < k
return Right.Key.all < Left;
end Is_Greater_Key_Node;
----------------------
-- Is_Less_Key_Node --
----------------------
function Is_Less_Key_Node
(Left : Key_Type;
Right : Node_Access) return Boolean is
begin
return Left < Right.Key.all;
end Is_Less_Key_Node;
-------------
-- Iterate --
-------------
procedure Iterate
(Container : Map;
Process : not null access procedure (Position : Cursor))
is
procedure Process_Node (Node : Node_Access);
pragma Inline (Process_Node);
procedure Local_Iterate is
new Tree_Operations.Generic_Iteration (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Node_Access) is
begin
Process (Cursor'(Container'Unrestricted_Access, Node));
end Process_Node;
Busy : With_Busy (Container.Tree.TC'Unrestricted_Access);
-- Start of processing for Iterate
begin
Local_Iterate (Container.Tree);
end Iterate;
function Iterate
(Container : Map) return Map_Iterator_Interfaces.Reversible_Iterator'Class
is
begin
-- The value of the Node component influences the behavior of the First
-- and Last selector functions of the iterator object. When the Node
-- component is null (as is the case here), this means the iterator
-- object was constructed without a start expression. This is a complete
-- iterator, meaning that the iteration starts from the (logical)
-- beginning of the sequence of items.
-- Note: For a forward iterator, Container.First is the beginning, and
-- for a reverse iterator, Container.Last is the beginning.
return It : constant Iterator :=
(Limited_Controlled with
Container => Container'Unrestricted_Access,
Node => null)
do
Busy (Container.Tree.TC'Unrestricted_Access.all);
end return;
end Iterate;
function Iterate
(Container : Map;
Start : Cursor)
return Map_Iterator_Interfaces.Reversible_Iterator'Class
is
begin
-- It was formerly the case that when Start = No_Element, the partial
-- iterator was defined to behave the same as for a complete iterator,
-- and iterate over the entire sequence of items. However, those
-- semantics were unintuitive and arguably error-prone (it is too easy
-- to accidentally create an endless loop), and so they were changed,
-- per the ARG meeting in Denver on 2011/11. However, there was no
-- consensus about what positive meaning this corner case should have,
-- and so it was decided to simply raise an exception. This does imply,
-- however, that it is not possible to use a partial iterator to specify
-- an empty sequence of items.
if Checks and then Start = No_Element then
raise Constraint_Error with
"Start position for iterator equals No_Element";
end if;
if Checks and then Start.Container /= Container'Unrestricted_Access then
raise Program_Error with
"Start cursor of Iterate designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Start.Node),
"Start cursor of Iterate is bad");
-- The value of the Node component influences the behavior of the First
-- and Last selector functions of the iterator object. When the Node
-- component is non-null (as is the case here), it means that this
-- is a partial iteration, over a subset of the complete sequence of
-- items. The iterator object was constructed with a start expression,
-- indicating the position from which the iteration begins. Note that
-- the start position has the same value irrespective of whether this
-- is a forward or reverse iteration.
return It : constant Iterator :=
(Limited_Controlled with
Container => Container'Unrestricted_Access,
Node => Start.Node)
do
Busy (Container.Tree.TC'Unrestricted_Access.all);
end return;
end Iterate;
---------
-- Key --
---------
function Key (Position : Cursor) return Key_Type is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of function Key equals No_Element";
end if;
if Checks and then Position.Node.Key = null then
raise Program_Error with
"Position cursor of function Key is bad";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of function Key is bad");
return Position.Node.Key.all;
end Key;
----------
-- Last --
----------
function Last (Container : Map) return Cursor is
T : Tree_Type renames Container.Tree;
begin
return (if T.Last = null then No_Element
else Cursor'(Container'Unrestricted_Access, T.Last));
end Last;
function Last (Object : Iterator) return Cursor is
begin
-- The value of the iterator object's Node component influences the
-- behavior of the Last (and First) selector function.
-- When the Node component is null, this means the iterator object was
-- constructed without a start expression, in which case the (reverse)
-- iteration starts from the (logical) beginning of the entire sequence
-- (corresponding to Container.Last, for a reverse iterator).
-- Otherwise, this is iteration over a partial sequence of items. When
-- the Node component is non-null, the iterator object was constructed
-- with a start expression, that specifies the position from which the
-- (reverse) partial iteration begins.
if Object.Node = null then
return Object.Container.Last;
else
return Cursor'(Object.Container, Object.Node);
end if;
end Last;
------------------
-- Last_Element --
------------------
function Last_Element (Container : Map) return Element_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.Last = null then
raise Constraint_Error with "map is empty";
end if;
return T.Last.Element.all;
end Last_Element;
--------------
-- Last_Key --
--------------
function Last_Key (Container : Map) return Key_Type is
T : Tree_Type renames Container.Tree;
begin
if Checks and then T.Last = null then
raise Constraint_Error with "map is empty";
end if;
return T.Last.Key.all;
end Last_Key;
----------
-- Left --
----------
function Left (Node : Node_Access) return Node_Access is
begin
return Node.Left;
end Left;
------------
-- Length --
------------
function Length (Container : Map) return Count_Type is
begin
return Container.Tree.Length;
end Length;
----------
-- Move --
----------
procedure Move is new Tree_Operations.Generic_Move (Clear);
procedure Move (Target : in out Map; Source : in out Map) is
begin
Move (Target => Target.Tree, Source => Source.Tree);
end Move;
----------
-- Next --
----------
function Next (Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
pragma Assert (Position.Node /= null);
pragma Assert (Position.Node.Key /= null);
pragma Assert (Position.Node.Element /= null);
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Next is bad");
declare
Node : constant Node_Access :=
Tree_Operations.Next (Position.Node);
begin
return (if Node = null then No_Element
else Cursor'(Position.Container, Node));
end;
end Next;
procedure Next (Position : in out Cursor) is
begin
Position := Next (Position);
end Next;
function Next
(Object : Iterator;
Position : Cursor) return Cursor
is
begin
if Position.Container = null then
return No_Element;
end if;
if Checks and then Position.Container /= Object.Container then
raise Program_Error with
"Position cursor of Next designates wrong map";
end if;
return Next (Position);
end Next;
------------
-- Parent --
------------
function Parent (Node : Node_Access) return Node_Access is
begin
return Node.Parent;
end Parent;
--------------
-- Previous --
--------------
function Previous (Position : Cursor) return Cursor is
begin
if Position = No_Element then
return No_Element;
end if;
pragma Assert (Position.Node /= null);
pragma Assert (Position.Node.Key /= null);
pragma Assert (Position.Node.Element /= null);
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Previous is bad");
declare
Node : constant Node_Access :=
Tree_Operations.Previous (Position.Node);
begin
return (if Node = null then No_Element
else Cursor'(Position.Container, Node));
end;
end Previous;
procedure Previous (Position : in out Cursor) is
begin
Position := Previous (Position);
end Previous;
function Previous
(Object : Iterator;
Position : Cursor) return Cursor
is
begin
if Position.Container = null then
return No_Element;
end if;
if Checks and then Position.Container /= Object.Container then
raise Program_Error with
"Position cursor of Previous designates wrong map";
end if;
return Previous (Position);
end Previous;
----------------------
-- Pseudo_Reference --
----------------------
function Pseudo_Reference
(Container : aliased Map'Class) return Reference_Control_Type
is
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Control_Type := (Controlled with TC) do
Busy (TC.all);
end return;
end Pseudo_Reference;
-------------------
-- Query_Element --
-------------------
procedure Query_Element
(Position : Cursor;
Process : not null access procedure (Key : Key_Type;
Element : Element_Type))
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Query_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Query_Element is bad";
end if;
pragma Assert (Vet (Position.Container.Tree, Position.Node),
"Position cursor of Query_Element is bad");
declare
T : Tree_Type renames Position.Container.Tree;
Lock : With_Lock (T.TC'Unrestricted_Access);
K : Key_Type renames Position.Node.Key.all;
E : Element_Type renames Position.Node.Element.all;
begin
Process (K, E);
end;
end Query_Element;
---------------
-- Put_Image --
---------------
procedure Put_Image
(S : in out Ada.Strings.Text_Buffers.Root_Buffer_Type'Class; V : Map)
is
First_Time : Boolean := True;
use System.Put_Images;
procedure Put_Key_Value (Position : Cursor);
procedure Put_Key_Value (Position : Cursor) is
begin
if First_Time then
First_Time := False;
else
Simple_Array_Between (S);
end if;
Key_Type'Put_Image (S, Key (Position));
Put_Arrow (S);
Element_Type'Put_Image (S, Element (Position));
end Put_Key_Value;
begin
Array_Before (S);
Iterate (V, Put_Key_Value'Access);
Array_After (S);
end Put_Image;
----------
-- Read --
----------
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Container : out Map)
is
function Read_Node
(Stream : not null access Root_Stream_Type'Class) return Node_Access;
pragma Inline (Read_Node);
procedure Read is
new Tree_Operations.Generic_Read (Clear, Read_Node);
---------------
-- Read_Node --
---------------
function Read_Node
(Stream : not null access Root_Stream_Type'Class) return Node_Access
is
Node : Node_Access := new Node_Type;
begin
Node.Key := new Key_Type'(Key_Type'Input (Stream));
Node.Element := new Element_Type'(Element_Type'Input (Stream));
return Node;
exception
when others =>
Free (Node); -- Note that Free deallocates key and elem too
raise;
end Read_Node;
-- Start of processing for Read
begin
Read (Stream, Container.Tree);
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Cursor)
is
begin
raise Program_Error with "attempt to stream map cursor";
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Read;
procedure Read
(Stream : not null access Root_Stream_Type'Class;
Item : out Constant_Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Read;
---------------
-- Reference --
---------------
function Reference
(Container : aliased in out Map;
Position : Cursor) return Reference_Type
is
begin
if Checks and then Position.Container = null then
raise Constraint_Error with
"Position cursor has no element";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor designates wrong map";
end if;
if Checks and then Position.Node.Element = null then
raise Program_Error with "Node has no element";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor in function Reference is bad");
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Type :=
(Element => Position.Node.Element.all'Access,
Control => (Controlled with TC))
do
Busy (TC.all);
end return;
end;
end Reference;
function Reference
(Container : aliased in out Map;
Key : Key_Type) return Reference_Type
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
begin
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
if Checks and then Node.Element = null then
raise Program_Error with "Node has no element";
end if;
declare
TC : constant Tamper_Counts_Access :=
Container.Tree.TC'Unrestricted_Access;
begin
return R : constant Reference_Type :=
(Element => Node.Element.all'Access,
Control => (Controlled with TC))
do
Busy (TC.all);
end return;
end;
end Reference;
-------------
-- Replace --
-------------
procedure Replace
(Container : in out Map;
Key : Key_Type;
New_Item : Element_Type)
is
Node : constant Node_Access := Key_Ops.Find (Container.Tree, Key);
K : Key_Access;
E : Element_Access;
begin
TE_Check (Container.Tree.TC);
if Checks and then Node = null then
raise Constraint_Error with "key not in map";
end if;
K := Node.Key;
E := Node.Element;
Node.Key := new Key_Type'(Key);
declare
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Node.Element := new Element_Type'(New_Item);
exception
when others =>
Free_Key (K);
raise;
end;
Free_Key (K);
Free_Element (E);
end Replace;
---------------------
-- Replace_Element --
---------------------
procedure Replace_Element
(Container : in out Map;
Position : Cursor;
New_Item : Element_Type)
is
begin
TE_Check (Container.Tree.TC);
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Replace_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Replace_Element is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Replace_Element designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Replace_Element is bad");
declare
X : Element_Access := Position.Node.Element;
-- The element allocator may need an accessibility check in the case
-- the actual type is class-wide or has access discriminants (see
-- RM 4.8(10.1) and AI12-0035).
pragma Unsuppress (Accessibility_Check);
begin
Position.Node.Element := new Element_Type'(New_Item);
Free_Element (X);
end;
end Replace_Element;
---------------------
-- Reverse_Iterate --
---------------------
procedure Reverse_Iterate
(Container : Map;
Process : not null access procedure (Position : Cursor))
is
procedure Process_Node (Node : Node_Access);
pragma Inline (Process_Node);
procedure Local_Reverse_Iterate is
new Tree_Operations.Generic_Reverse_Iteration (Process_Node);
------------------
-- Process_Node --
------------------
procedure Process_Node (Node : Node_Access) is
begin
Process (Cursor'(Container'Unrestricted_Access, Node));
end Process_Node;
Busy : With_Busy (Container.Tree.TC'Unrestricted_Access);
-- Start of processing for Reverse_Iterate
begin
Local_Reverse_Iterate (Container.Tree);
end Reverse_Iterate;
-----------
-- Right --
-----------
function Right (Node : Node_Access) return Node_Access is
begin
return Node.Right;
end Right;
---------------
-- Set_Color --
---------------
procedure Set_Color (Node : Node_Access; Color : Color_Type) is
begin
Node.Color := Color;
end Set_Color;
--------------
-- Set_Left --
--------------
procedure Set_Left (Node : Node_Access; Left : Node_Access) is
begin
Node.Left := Left;
end Set_Left;
----------------
-- Set_Parent --
----------------
procedure Set_Parent (Node : Node_Access; Parent : Node_Access) is
begin
Node.Parent := Parent;
end Set_Parent;
---------------
-- Set_Right --
---------------
procedure Set_Right (Node : Node_Access; Right : Node_Access) is
begin
Node.Right := Right;
end Set_Right;
--------------------
-- Update_Element --
--------------------
procedure Update_Element
(Container : in out Map;
Position : Cursor;
Process : not null access procedure (Key : Key_Type;
Element : in out Element_Type))
is
begin
if Checks and then Position.Node = null then
raise Constraint_Error with
"Position cursor of Update_Element equals No_Element";
end if;
if Checks and then
(Position.Node.Key = null or else Position.Node.Element = null)
then
raise Program_Error with
"Position cursor of Update_Element is bad";
end if;
if Checks and then Position.Container /= Container'Unrestricted_Access
then
raise Program_Error with
"Position cursor of Update_Element designates wrong map";
end if;
pragma Assert (Vet (Container.Tree, Position.Node),
"Position cursor of Update_Element is bad");
declare
T : Tree_Type renames Position.Container.Tree;
Lock : With_Lock (T.TC'Unrestricted_Access);
K : Key_Type renames Position.Node.Key.all;
E : Element_Type renames Position.Node.Element.all;
begin
Process (K, E);
end;
end Update_Element;
-----------
-- Write --
-----------
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Container : Map)
is
procedure Write_Node
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Access);
pragma Inline (Write_Node);
procedure Write is
new Tree_Operations.Generic_Write (Write_Node);
----------------
-- Write_Node --
----------------
procedure Write_Node
(Stream : not null access Root_Stream_Type'Class;
Node : Node_Access)
is
begin
Key_Type'Output (Stream, Node.Key.all);
Element_Type'Output (Stream, Node.Element.all);
end Write_Node;
-- Start of processing for Write
begin
Write (Stream, Container.Tree);
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Cursor)
is
begin
raise Program_Error with "attempt to stream map cursor";
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Write;
procedure Write
(Stream : not null access Root_Stream_Type'Class;
Item : Constant_Reference_Type)
is
begin
raise Program_Error with "attempt to stream reference";
end Write;
end Ada.Containers.Indefinite_Ordered_Maps;
|
with Interfaces;
generic
Resistor_Value : Unsigned_32 := 10_000;
NTC_Is_Upper : Boolean := True;
Beta : Positive := 3976;
V_In_Max : Unsigned_32 := 2 ** 10 - 1;
package Drivers.NTC is
pragma Preelaborate;
function Value (V : Positive) return Unsigned_32;
function Temperature (V : Positive) return Integer;
end Drivers.NTC;
|
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C;
use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C;
procedure carre is
type stringptr is access all char_array;
procedure PString(s : stringptr) is
begin
String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all));
end;
procedure PInt(i : in Integer) is
begin
String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left));
end;
procedure SkipSpaces is
C : Character;
Eol : Boolean;
begin
loop
Look_Ahead(C, Eol);
exit when Eol or C /= ' ';
Get(C);
end loop;
end;
function min2_0(a : in Integer; b : in Integer) return Integer is
begin
if a < b
then
return a;
else
return b;
end if;
end;
type g is Array (Integer range <>) of Integer;
type g_PTR is access g;
type h is Array (Integer range <>) of g_PTR;
type h_PTR is access h;
y : Integer;
x : Integer;
tab : h_PTR;
e : g_PTR;
begin
Get(x);
SkipSpaces;
Get(y);
SkipSpaces;
tab := new h (0..y - 1);
for d in integer range 0..y - 1 loop
e := new g (0..x - 1);
for f in integer range 0..x - 1 loop
Get(e(f));
SkipSpaces;
end loop;
tab(d) := e;
end loop;
for ix in integer range 1..x - 1 loop
for iy in integer range 1..y - 1 loop
if tab(iy)(ix) = 1
then
tab(iy)(ix) := min2_0(min2_0(tab(iy)(ix - 1), tab(iy - 1)(ix)), tab(iy - 1)(ix - 1)) + 1;
end if;
end loop;
end loop;
for jy in integer range 0..y - 1 loop
for jx in integer range 0..x - 1 loop
PInt(tab(jy)(jx));
PString(new char_array'( To_C(" ")));
end loop;
PString(new char_array'( To_C("" & Character'Val(10))));
end loop;
end;
|
with GNAT.IO; use GNAT.IO;
package body Except
is
procedure Do_Something
is
begin
raise Test_Exception;
end Do_Something;
procedure Do_Sth_2
is
begin
begin
Do_Something;
exception
when others => Put_Line ("Exception caught (inner)");
end;
end Do_Sth_2;
end Except;
|
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Pointers;
with Interfaces.C.Strings; use Interfaces.C.Strings;
with System; use System;
-- ****h* Tcl/Commands
-- FUNCTION
-- Provide code to manipulate Tcl commands (adding, deleting, etc)
-- SOURCE
package Tcl.Commands with
SPARK_Mode => Off
is
-- ****
-----------------------------
-- Creating a new Tcl command
-----------------------------
--## rule off REDUCEABLE_SCOPE
-- ****t* Commands/Commands.Argv_Pointer
-- FUNCTION
-- Used to store arguments of the selected Tcl command
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
package Argv_Pointer is new Interfaces.C.Pointers
(Index => size_t, Element => chars_ptr, Element_Array => chars_ptr_array,
Default_Terminator => Null_Ptr);
-- ****
-- ****t* Commands/Commands.Tcl_Cmd_Proc
-- FUNCTION
-- The Ada code which will be executed when the selected command will be
-- invoked.
-- PARAMETERS
-- Cliend_Data - Generally unused
-- Interpreter - The Tcl interpreter on which the command was invoked
-- Argc - The number of arguments passed to the command. Minimum one.
-- Argv - The pointer to the list of arguments passed to the command.
-- The first element is always the name of invoked procedure
-- RESULT
-- Should be one of TCL_OK, TCL_ERROR, TCL_RETURN, TCL_BREAK, TCL_CONTINUE
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Tcl_Cmd_Proc is access function
(Client_Data: System.Address; Interpreter: Tcl_Interpreter;
Argc: Positive; Argv: Argv_Pointer.Pointer) return Tcl_Results with
Convention => C;
-- ****
-- ****d* Commands/Commands.Null_Tcl_Cmd_Proc
-- FUNCTION
-- Null Tcl command procedure
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Null_Tcl_Cmd_Proc: constant Tcl_Cmd_Proc := null;
-- ****
-- ****t* Commands/Commands.Tcl_Cmd_Delete_Proc
-- FUNCTION
-- The Ada code which will be executed when the selected command will be
-- deleted.
-- PARAMETERS
-- Client_Data - Generally unused
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Tcl_Cmd_Delete_Proc is access procedure
(Client_Data: System.Address) with
Convention => C;
-- ****
-- ****d* Commands/Commands.Null_Tcl_Cmd_Delete_Proc
-- FUNCTION
-- Null Tcl command delete procedure
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Null_Tcl_Cmd_Delete_Proc: constant Tcl_Cmd_Delete_Proc := null;
-- ****
-- ****t* Commands/Commands.Tcl_Command
-- FUNCTION
-- The pointer to a Tcl command
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
type Tcl_Command is new System.Address;
-- ****
-- ****d* Commands/Commands.Null_Tcl_Command
-- FUNCTION
-- Null Tcl command
-- HISTORY
-- 8.6.0 - Added
-- SOURCE
Null_Tcl_Command: constant Tcl_Command := Tcl_Command(System.Null_Address);
-- ****
-- ****f* Commands/Commands.Tcl_Create_Command
-- FUNCTION
-- Add a new Tcl command to the selected Tcl interpreter
-- PARAMETERS
-- Command_Name - The name of the Tcl command to add
-- Proc - The code of the Tcl command to add
-- Interpreter - The Tcl interpreter to which the command will be added.
-- By default it is the default Tcl interpreter
-- Delete_Proc - The code which will be executed on deleting Tcl command.
-- Default value is null
-- RESULT
-- The pointer to the newly created Tcl command or Null_Tcl_Command is the
-- command can't be created
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Add command MyProc with Ada function My_Command as code on default interpreter without deleting code
-- My_Command: constant Tcl_Command := Tcl_Create_Command("MyProc", My_Command'Access);
-- SOURCE
function Tcl_Create_Command
(Command_Name: String; Proc: Tcl_Cmd_Proc;
Interpreter: Tcl_Interpreter := Get_Interpreter;
Delete_Proc: Tcl_Cmd_Delete_Proc := Null_Tcl_Cmd_Delete_Proc)
return Tcl_Command with
Pre => Command_Name'Length > 0 and Proc /= Null_Tcl_Cmd_Proc and
Interpreter /= Null_Interpreter,
Test_Case => (Name => "Test_Tcl_CreateCommand", Mode => Nominal);
-- ****
-----------------------------------------
-- Manipulating a Tcl command arguments
-----------------------------------------
-- ****f* Commands/Commands.Get_Argument
-- FUNCTION
-- Get the selected argument from the arguments list
-- PARAMETERS
-- Arguments_Pointer - C pointer to the list of arguments from which the
-- argument will be taken
-- Index - Index of the argument to take
-- RESULT
-- The selected argument from the list
-- HISTORY
-- 8.6.0 - Added
-- EXAMPLE
-- -- Get the name of the Tcl command (always the first argument) from My_Arguments pointer
-- Proc_Name: constant String := Get_Argument(My_Arguments, 0);
-- SOURCE
function Get_Argument
(Arguments_Pointer: not null Argv_Pointer.Pointer; Index: Natural)
return String;
-- ****
--## rule on REDUCEABLE_SCOPE
end Tcl.Commands;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.UML.Time_Expressions.Hash is
new AMF.Elements.Generic_Hash (UML_Time_Expression, UML_Time_Expression_Access);
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- C H E C K S --
-- --
-- S p e c --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- Package containing routines used to deal with runtime checks. These
-- routines are used both by the semantics and by the expander. In some
-- cases, checks are enabled simply by setting flags for gigi, and in
-- other cases the code for the check is expanded.
-- The approach used for range and length checks, in regards to suppressed
-- checks, is to attempt to detect at compilation time that a constraint
-- error will occur. If this is detected a warning or error is issued and the
-- offending expression or statement replaced with a constraint error node.
-- This always occurs whether checks are suppressed or not. Dynamic range
-- checks are, of course, not inserted if checks are suppressed.
with Errout; use Errout;
with Namet; use Namet;
with Table;
with Types; use Types;
with Uintp; use Uintp;
with Urealp; use Urealp;
package Checks is
procedure Initialize;
-- Called for each new main source program, to initialize internal
-- variables used in the package body of the Checks unit.
function Access_Checks_Suppressed (E : Entity_Id) return Boolean;
function Accessibility_Checks_Suppressed (E : Entity_Id) return Boolean;
function Alignment_Checks_Suppressed (E : Entity_Id) return Boolean;
function Allocation_Checks_Suppressed (E : Entity_Id) return Boolean;
function Atomic_Synchronization_Disabled (E : Entity_Id) return Boolean;
function Discriminant_Checks_Suppressed (E : Entity_Id) return Boolean;
function Division_Checks_Suppressed (E : Entity_Id) return Boolean;
function Duplicated_Tag_Checks_Suppressed (E : Entity_Id) return Boolean;
function Elaboration_Checks_Suppressed (E : Entity_Id) return Boolean;
function Index_Checks_Suppressed (E : Entity_Id) return Boolean;
function Length_Checks_Suppressed (E : Entity_Id) return Boolean;
function Overflow_Checks_Suppressed (E : Entity_Id) return Boolean;
function Predicate_Checks_Suppressed (E : Entity_Id) return Boolean;
function Range_Checks_Suppressed (E : Entity_Id) return Boolean;
function Storage_Checks_Suppressed (E : Entity_Id) return Boolean;
function Tag_Checks_Suppressed (E : Entity_Id) return Boolean;
function Validity_Checks_Suppressed (E : Entity_Id) return Boolean;
-- These functions check to see if the named check is suppressed, either
-- by an active scope suppress setting, or because the check has been
-- specifically suppressed for the given entity. If no entity is relevant
-- for the current check, then Empty is used as an argument. Note: the
-- reason we insist on specifying Empty is to force the caller to think
-- about whether there is any relevant entity that should be checked.
function Is_Check_Suppressed (E : Entity_Id; C : Check_Id) return Boolean;
-- This function is called if Checks_May_Be_Suppressed (E) is True to
-- determine whether check C is suppressed either on the entity E or
-- as the result of a scope suppress pragma. If Checks_May_Be_Suppressed
-- is False, then the status of the check can be determined simply by
-- examining Scope_Suppress, so this routine is not called in that case.
function Overflow_Check_Mode return Overflow_Mode_Type;
-- Returns current overflow checking mode, taking into account whether
-- we are inside an assertion expression and the assertion policy.
-----------------------------------------
-- Control of Alignment Check Warnings --
-----------------------------------------
-- When we have address clauses, there is an issue of whether the address
-- specified is appropriate to the alignment. In the general case where the
-- address is dynamic, we generate a check and a possible warning (this
-- warning occurs for example if we have a restricted run time with the
-- restriction No_Exception_Propagation). We also issue this warning in
-- the case where the address is static, but we don't know the alignment
-- at the time we process the address clause. In such a case, we issue the
-- warning, but we may be able to find out later (after the back end has
-- annotated the actual alignment chosen) that the warning was not needed.
-- To deal with deleting these potentially annoying warnings, we save the
-- warning information in a table, and then delete the waranings in the
-- post compilation validation stage if we can tell that the check would
-- never fail (in general the back end will also optimize away the check
-- in such cases).
-- Table used to record information
type Alignment_Warnings_Record is record
E : Entity_Id;
-- Entity whose alignment possibly warrants a warning
A : Uint;
-- Compile time known value of address clause for which the alignment
-- is to be checked once we know the alignment.
W : Error_Msg_Id;
-- Id of warning message we might delete
end record;
package Alignment_Warnings is new Table.Table (
Table_Component_Type => Alignment_Warnings_Record,
Table_Index_Type => Int,
Table_Low_Bound => 0,
Table_Initial => 10,
Table_Increment => 200,
Table_Name => "Alignment_Warnings");
procedure Validate_Alignment_Check_Warnings;
-- This routine is called after back annotation of type data to delete any
-- alignment warnings that turn out to be false alarms, based on knowing
-- the actual alignment, and a compile-time known alignment value.
-------------------------------------------
-- Procedures to Activate Checking Flags --
-------------------------------------------
procedure Activate_Division_Check (N : Node_Id);
pragma Inline (Activate_Division_Check);
-- Sets Do_Division_Check flag in node N, and handles possible local raise.
-- Always call this routine rather than calling Set_Do_Division_Check to
-- set an explicit value of True, to ensure handling the local raise case.
procedure Activate_Overflow_Check (N : Node_Id);
pragma Inline (Activate_Overflow_Check);
-- Sets Do_Overflow_Check flag in node N, and handles possible local raise.
-- Always call this routine rather than calling Set_Do_Overflow_Check to
-- set an explicit value of True, to ensure handling the local raise case.
-- Note that for discrete types, this call has no effect for MOD, REM, and
-- unary "+" for which overflow is never possible in any case.
--
-- Note: for the discrete-type case, it is legitimate to call this routine
-- on an unanalyzed node where the Etype field is not set. However, for the
-- floating-point case, Etype must be set (to a floating-point type).
--
-- For floating-point, we set the flag if we have automatic overflow checks
-- on the target, or if Check_Float_Overflow mode is set. For the floating-
-- point case, we ignore all the unary operators ("+", "-", and abs) since
-- none of these can result in overflow. If there are no overflow checks on
-- the target, and Check_Float_Overflow mode is not set, then the call has
-- no effect, since in such cases we want to generate NaN's and infinities.
procedure Activate_Range_Check (N : Node_Id);
pragma Inline (Activate_Range_Check);
-- Sets Do_Range_Check flag in node N, and handles possible local raise
-- Always call this routine rather than calling Set_Do_Range_Check to
-- set an explicit value of True, to ensure handling the local raise case.
--------------------------------
-- Procedures to Apply Checks --
--------------------------------
-- General note on following checks. These checks are always active if
-- Expander_Active and not Inside_A_Generic. They are inactive and have
-- no effect Inside_A_Generic. In the case where not Expander_Active
-- and not Inside_A_Generic, most of them are inactive, but some of them
-- operate anyway since they may generate useful compile time warnings.
procedure Apply_Access_Check (N : Node_Id);
-- Determines whether an expression node requires a runtime access
-- check and if so inserts the appropriate run-time check.
procedure Apply_Accessibility_Check
(N : Node_Id;
Typ : Entity_Id;
Insert_Node : Node_Id);
-- Given a name N denoting an access parameter, emits a run-time
-- accessibility check (if necessary), checking that the level of
-- the object denoted by the access parameter is not deeper than the
-- level of the type Typ. Program_Error is raised if the check fails.
-- Insert_Node indicates the node where the check should be inserted.
procedure Apply_Address_Clause_Check (E : Entity_Id; N : Node_Id);
-- E is the entity for an object which has an address clause. If checks
-- are enabled, then this procedure generates a check that the specified
-- address has an alignment consistent with the alignment of the object,
-- raising PE if this is not the case. The resulting check (if one is
-- generated) is prepended to the Actions list of N_Freeze_Entity node N.
-- Note that the check references E'Alignment, so it cannot be emitted
-- before N (its freeze node), otherwise this would cause an illegal
-- access before elaboration error in GIGI. For the case of a clear overlay
-- situation, we also check that the size of the overlaying object is not
-- larger than the overlaid object.
procedure Apply_Arithmetic_Overflow_Check (N : Node_Id);
-- Handle overflow checking for an arithmetic operator. Also handles the
-- cases of ELIMINATED and MINIMIZED overflow checking mode. If the mode
-- is one of the latter two, then this routine can also be called with
-- an if or case expression node to make sure that we properly handle
-- overflow checking for dependent expressions. This routine handles
-- front end vs back end overflow checks (in the front end case it expands
-- the necessary check). Note that divide is handled separately using
-- Apply_Divide_Checks. Node N may or may not have Do_Overflow_Check.
-- In STRICT mode, there is nothing to do if this flag is off, but in
-- MINIMIZED/ELIMINATED mode we still have to deal with possible use
-- of doing operations in Long_Long_Integer or Bignum mode.
procedure Apply_Constraint_Check
(N : Node_Id;
Typ : Entity_Id;
No_Sliding : Boolean := False);
-- Top-level procedure, calls all the others depending on the class of
-- Typ. Checks that expression N satisfies the constraint of type Typ.
-- No_Sliding is only relevant for constrained array types, if set to
-- True, it checks that indexes are in range.
procedure Apply_Discriminant_Check
(N : Node_Id;
Typ : Entity_Id;
Lhs : Node_Id := Empty);
-- Given an expression N of a discriminated type, or of an access type
-- whose designated type is a discriminanted type, generates a check to
-- ensure that the expression can be converted to the subtype given as
-- the second parameter. Lhs is empty except in the case of assignments,
-- where the target object may be needed to determine the subtype to
-- check against (such as the cases of unconstrained formal parameters
-- and unconstrained aliased objects). For the case of unconstrained
-- formals, the check is performed only if the corresponding actual is
-- constrained, i.e., whether Lhs'Constrained is True.
procedure Apply_Divide_Checks (N : Node_Id);
-- The node kind is N_Op_Divide, N_Op_Mod, or N_Op_Rem if either of the
-- flags Do_Division_Check or Do_Overflow_Check is set, then this routine
-- ensures that the appropriate checks are made. Note that overflow can
-- occur in the signed case for the case of the largest negative number
-- divided by minus one. This procedure only applies to Integer types.
procedure Apply_Parameter_Aliasing_Checks
(Call : Node_Id;
Subp : Entity_Id);
-- Given a subprogram call Call, add a check to verify that none of the
-- actuals overlap. Subp denotes the subprogram being called.
procedure Apply_Parameter_Validity_Checks (Subp : Entity_Id);
-- Given a subprogram Subp, add both a pre and post condition pragmas that
-- verify the proper initialization of scalars in parameters and function
-- results.
procedure Apply_Predicate_Check
(N : Node_Id;
Typ : Entity_Id;
Fun : Entity_Id := Empty);
-- N is an expression to which a predicate check may need to be applied for
-- Typ, if Typ has a predicate function. When N is an actual in a call, Fun
-- is the function being called, which is used to generate a better warning
-- if the call leads to an infinite recursion.
procedure Apply_Type_Conversion_Checks (N : Node_Id);
-- N is an N_Type_Conversion node. A type conversion actually involves
-- two sorts of checks. The first check is the checks that ensures that
-- the operand in the type conversion fits onto the base type of the
-- subtype it is being converted to (see RM 4.6 (28)-(50)). The second
-- check is there to ensure that once the operand has been converted to
-- a value of the target type, this converted value meets the
-- constraints imposed by the target subtype (see RM 4.6 (51)).
procedure Apply_Universal_Integer_Attribute_Checks (N : Node_Id);
-- The argument N is an attribute reference node intended for processing
-- by gigi. The attribute is one that returns a universal integer, but
-- the attribute reference node is currently typed with the expected
-- result type. This routine deals with range and overflow checks needed
-- to make sure that the universal result is in range.
function Build_Discriminant_Checks
(N : Node_Id;
T_Typ : Entity_Id)
return Node_Id;
-- Subsidiary routine for Apply_Discriminant_Check. Builds the expression
-- that compares discriminants of the expression with discriminants of the
-- type. Also used directly for membership tests (see Exp_Ch4.Expand_N_In).
function Convert_From_Bignum (N : Node_Id) return Node_Id;
-- Returns result of converting node N from Bignum. The returned value is
-- not analyzed, the caller takes responsibility for this. Node N must be
-- a subexpression node of type Bignum. The result is Long_Long_Integer.
function Convert_To_Bignum (N : Node_Id) return Node_Id;
-- Returns result of converting node N to Bignum. The returned value is not
-- analyzed, the caller takes responsibility for this. Node N must be a
-- subexpression node of a signed integer type or Bignum type (if it is
-- already a Bignum, the returned value is Relocate_Node (N)).
procedure Determine_Range
(N : Node_Id;
OK : out Boolean;
Lo : out Uint;
Hi : out Uint;
Assume_Valid : Boolean := False);
-- N is a node for a subexpression. If N is of a discrete type with no
-- error indications, and no other peculiarities (e.g. missing Etype),
-- then OK is True on return, and Lo and Hi are set to a conservative
-- estimate of the possible range of values of N. Thus if OK is True on
-- return, the value of the subexpression N is known to lie in the range
-- Lo .. Hi (inclusive). If the expression is not of a discrete type, or
-- some kind of error condition is detected, then OK is False on exit, and
-- Lo/Hi are set to No_Uint. Thus the significance of OK being False on
-- return is that no useful information is available on the range of the
-- expression. Assume_Valid determines whether the processing is allowed to
-- assume that values are in range of their subtypes. If it is set to True,
-- then this assumption is valid, if False, then processing is done using
-- base types to allow invalid values.
procedure Determine_Range_R
(N : Node_Id;
OK : out Boolean;
Lo : out Ureal;
Hi : out Ureal;
Assume_Valid : Boolean := False);
-- Similar to Determine_Range, but for a node N of floating-point type. OK
-- is True on return only for IEEE floating-point types and only if we do
-- not have to worry about extended precision (i.e. on the x86, we must be
-- using -msse2 -mfpmath=sse). At the current time, this is used only in
-- GNATprove, though we could consider using it more generally in future.
-- For that to happen, the possibility of arguments of infinite or NaN
-- value should be taken into account, which is not the case currently.
procedure Install_Null_Excluding_Check (N : Node_Id);
-- Determines whether an access node requires a runtime access check and
-- if so inserts the appropriate run-time check.
function Make_Bignum_Block (Loc : Source_Ptr) return Node_Id;
-- This function is used by top level overflow checking routines to do a
-- mark/release operation on the secondary stack around bignum operations.
-- The block created looks like:
--
-- declare
-- M : Mark_Id := SS_Mark;
-- begin
-- SS_Release (M);
-- end;
--
-- The idea is that the caller will insert any needed extra declarations
-- after the declaration of M, and any needed statements (in particular
-- the bignum operations) before the call to SS_Release, and then do an
-- Insert_Action of the whole block (it is returned unanalyzed). The Loc
-- parameter is used to supply Sloc values for the constructed tree.
procedure Minimize_Eliminate_Overflows
(N : Node_Id;
Lo : out Uint;
Hi : out Uint;
Top_Level : Boolean);
-- This is the main routine for handling MINIMIZED and ELIMINATED overflow
-- processing. On entry N is a node whose result is a signed integer
-- subtype. The Do_Overflow_Check flag may or may not be set on N. If the
-- node is an arithmetic operation, then a range analysis is carried out,
-- and there are three possibilities:
--
-- The node is left unchanged (apart from expansion of an exponentiation
-- operation). This happens if the routine can determine that the result
-- is definitely in range. The Do_Overflow_Check flag is turned off in
-- this case.
--
-- The node is transformed into an arithmetic operation with a result
-- type of Long_Long_Integer.
--
-- The node is transformed into a function call that calls an appropriate
-- function in the System.Bignums package to compute a Bignum result.
--
-- In the first two cases, Lo and Hi are set to the bounds of the possible
-- range of results, computed as accurately as possible. In the third case
-- Lo and Hi are set to No_Uint (there are some cases where we could get an
-- advantage from keeping result ranges for Bignum values, but it could use
-- a lot of space and is very unlikely to be valuable).
--
-- If the node is not an arithmetic operation, then it is unchanged but
-- Lo and Hi are still set (to the bounds of the result subtype if nothing
-- better can be determined).
--
-- Note: this function is recursive, if called with an arithmetic operator,
-- recursive calls are made to process the operands using this procedure.
-- So we end up doing things top down. Nothing happens to an arithmetic
-- expression until this procedure is called on the top level node and
-- then the recursive calls process all the children. We have to do it
-- this way. If we try to do it bottom up in natural expansion order, then
-- there are two problems. First, where do we stash the bounds, and more
-- importantly, semantic processing will be messed up. Consider A+B+C where
-- A,B,C are all of type integer, if we processed A+B before doing semantic
-- analysis of the addition of this result to C, that addition could end up
-- with a Long_Long_Integer left operand and an Integer right operand, and
-- we would get a semantic error.
--
-- The routine is called in three situations if we are operating in either
-- MINIMIZED or ELIMINATED modes.
--
-- Overflow processing applied to the top node of an expression tree when
-- that node is an arithmetic operator. In this case the result is
-- converted to the appropriate result type (there is special processing
-- when the parent is a conversion, see body for details).
--
-- Overflow processing applied to the operands of a comparison operation.
-- In this case, the comparison is done on the result Long_Long_Integer
-- or Bignum values, without raising any exceptions.
--
-- Overflow processing applied to the left operand of a membership test.
-- In this case no exception is raised if a Long_Long_Integer or Bignum
-- result is outside the range of the type of that left operand (it is
-- just that the result of IN is false in that case).
--
-- Note that if Bignum values appear, the caller must take care of doing
-- the appropriate mark/release operations on the secondary stack.
--
-- Top_Level is used to avoid inefficient unnecessary transitions into the
-- Bignum domain. If Top_Level is True, it means that the caller will have
-- to convert any Bignum value back to Long_Long_Integer, possibly checking
-- that the value is in range. This is the normal case for a top level
-- operator in a subexpression. There is no point in going into Bignum mode
-- to avoid an overflow just so we can check for overflow the next moment.
-- For calls from comparisons and membership tests, and for all recursive
-- calls, we do want to transition into the Bignum domain if necessary.
-- Note that this setting is only relevant in ELIMINATED mode.
-------------------------------------------------------
-- Control and Optimization of Range/Overflow Checks --
-------------------------------------------------------
-- Range checks are controlled by the Do_Range_Check flag. The front end
-- is responsible for setting this flag in relevant nodes. Originally
-- the back end generated all corresponding range checks. But later on
-- we decided to generate many range checks in the front end. We are now
-- in the transitional phase where some of these checks are still done
-- by the back end, but many are done by the front end. It is possible
-- that in the future we might move all the checks to the front end. The
-- main remaining back end checks are for subscript checking.
-- Overflow checks are similarly controlled by the Do_Overflow_Check flag.
-- The difference here is that if back end overflow checks are inactive
-- (Backend_Overflow_Checks_On_Target set False), then the actual overflow
-- checks are generated by the front end, but if back end overflow checks
-- are active (Backend_Overflow_Checks_On_Target set True), then the back
-- end does generate the checks.
-- The following two routines are used to set these flags, they allow
-- for the possibility of eliminating checks. Checks can be eliminated
-- if an identical check has already been performed.
procedure Enable_Overflow_Check (N : Node_Id);
-- First this routine determines if an overflow check is needed by doing
-- an appropriate range check. If a check is not needed, then the call
-- has no effect. If a check is needed then this routine sets the flag
-- Do_Overflow_Check in node N to True, unless it can be determined that
-- the check is not needed. The only condition under which this is the
-- case is if there was an identical check earlier on.
procedure Enable_Range_Check (N : Node_Id);
-- Set Do_Range_Check flag in node N True, unless it can be determined
-- that the check is not needed. The only condition under which this is
-- the case is if there was an identical check earlier on. This routine
-- is not responsible for doing range analysis to determine whether or
-- not such a check is needed -- the caller is expected to do this. The
-- one other case in which the request to set the flag is ignored is
-- when Kill_Range_Check is set in an N_Unchecked_Conversion node.
-- The following routines are used to keep track of processing sequences
-- of statements (e.g. the THEN statements of an IF statement). A check
-- that appears within such a sequence can eliminate an identical check
-- within this sequence of statements. However, after the end of the
-- sequence of statements, such a check is no longer of interest, since
-- it may not have been executed.
procedure Conditional_Statements_Begin;
-- This call marks the start of processing of a sequence of statements.
-- Every call to this procedure must be followed by a matching call to
-- Conditional_Statements_End.
procedure Conditional_Statements_End;
-- This call removes from consideration all saved checks since the
-- corresponding call to Conditional_Statements_Begin. These two
-- procedures operate in a stack like manner.
-- The mechanism for optimizing checks works by remembering checks
-- that have already been made, but certain conditions, for example
-- an assignment to a variable involved in a check, may mean that the
-- remembered check is no longer valid, in the sense that if the same
-- expression appears again, another check is required because the
-- value may have changed.
-- The following routines are used to note conditions which may render
-- some or all of the stored and remembered checks to be invalidated.
procedure Kill_Checks (V : Entity_Id);
-- This procedure records an assignment or other condition that causes
-- the value of the variable to be changed, invalidating any stored
-- checks that reference the value. Note that all such checks must
-- be discarded, even if they are not in the current statement range.
procedure Kill_All_Checks;
-- This procedure kills all remembered checks
-----------------------------
-- Length and Range Checks --
-----------------------------
-- In the following procedures, there are three arguments which have
-- a common meaning as follows:
-- Expr The expression to be checked. If a check is required,
-- the appropriate flag will be placed on this node. Whether
-- this node is further examined depends on the setting of
-- the parameter Source_Typ, as described below.
-- ??? Apply_Length_Check and Apply_Range_Check do not have an Expr
-- formal
-- ??? Apply_Length_Check and Apply_Range_Check have a Ck_Node formal
-- which is undocumented, is it the same as Expr?
-- Target_Typ The target type on which the check is to be based. For
-- example, if we have a scalar range check, then the check
-- is that we are in range of this type.
-- Source_Typ Normally Empty, but can be set to a type, in which case
-- this type is used for the check, see below.
-- The checks operate in one of two modes:
-- If Source_Typ is Empty, then the node Expr is examined, at the very
-- least to get the source subtype. In addition for some of the checks,
-- the actual form of the node may be examined. For example, a node of
-- type Integer whose actual form is an Integer conversion from a type
-- with range 0 .. 3 can be determined to have a value in range 0 .. 3.
-- If Source_Typ is given, then nothing can be assumed about the Expr,
-- and indeed its contents are not examined. In this case the check is
-- based on the assumption that Expr can be an arbitrary value of the
-- given Source_Typ.
-- Currently, the only case in which a Source_Typ is explicitly supplied
-- is for the case of Out and In_Out parameters, where, for the conversion
-- on return (the Out direction), the types must be reversed. This is
-- handled by the caller.
procedure Apply_Length_Check
(Ck_Node : Node_Id;
Target_Typ : Entity_Id;
Source_Typ : Entity_Id := Empty);
-- This procedure builds a sequence of declarations to do a length check
-- that checks if the lengths of the two arrays Target_Typ and source type
-- are the same. The resulting actions are inserted at Node using a call
-- to Insert_Actions.
--
-- For access types, the Directly_Designated_Type is retrieved and
-- processing continues as enumerated above, with a guard against null
-- values.
--
-- Note: calls to Apply_Length_Check currently never supply an explicit
-- Source_Typ parameter, but Apply_Length_Check takes this parameter and
-- processes it as described above for consistency with the other routines
-- in this section.
procedure Apply_Range_Check
(Ck_Node : Node_Id;
Target_Typ : Entity_Id;
Source_Typ : Entity_Id := Empty);
-- For a Node of kind N_Range, constructs a range check action that tests
-- first that the range is not null and then that the range is contained in
-- the Target_Typ range.
--
-- For scalar types, constructs a range check action that first tests that
-- the expression is contained in the Target_Typ range. The difference
-- between this and Apply_Scalar_Range_Check is that the latter generates
-- the actual checking code against the Etype of the expression.
--
-- For constrained array types, construct series of range check actions
-- to check that each Expr range is properly contained in the range of
-- Target_Typ.
--
-- For a type conversion to an unconstrained array type, constructs a range
-- check action to check that the bounds of the source type are within the
-- constraints imposed by the Target_Typ.
--
-- For access types, the Directly_Designated_Type is retrieved and
-- processing continues as enumerated above, with a guard against null
-- values.
--
-- The source type is used by type conversions to unconstrained array
-- types to retrieve the corresponding bounds.
procedure Apply_Static_Length_Check
(Expr : Node_Id;
Target_Typ : Entity_Id;
Source_Typ : Entity_Id := Empty);
-- Tries to determine statically whether the two array types source type
-- and Target_Typ have the same length. If it can be determined at compile
-- time that they do not, then an N_Raise_Constraint_Error node replaces
-- Expr, and a warning message is issued.
procedure Apply_Scalar_Range_Check
(Expr : Node_Id;
Target_Typ : Entity_Id;
Source_Typ : Entity_Id := Empty;
Fixed_Int : Boolean := False);
-- For scalar types, determines whether an expression node should be
-- flagged as needing a runtime range check. If the node requires such a
-- check, the Do_Range_Check flag is turned on. The Fixed_Int flag if set
-- causes any fixed-point values to be treated as though they were discrete
-- values (i.e. the underlying integer value is used).
type Check_Result is private;
-- Type used to return result of Get_Range_Checks call, for later use in
-- call to Insert_Range_Checks procedure.
function Get_Range_Checks
(Ck_Node : Node_Id;
Target_Typ : Entity_Id;
Source_Typ : Entity_Id := Empty;
Warn_Node : Node_Id := Empty) return Check_Result;
-- Like Apply_Range_Check, except it does not modify anything. Instead
-- it returns an encapsulated result of the check operations for later
-- use in a call to Insert_Range_Checks. If Warn_Node is non-empty, its
-- Sloc is used, in the static case, for the generated warning or error.
-- Additionally, it is used rather than Expr (or Low/High_Bound of Expr)
-- in constructing the check.
procedure Append_Range_Checks
(Checks : Check_Result;
Stmts : List_Id;
Suppress_Typ : Entity_Id;
Static_Sloc : Source_Ptr;
Flag_Node : Node_Id);
-- Called to append range checks as returned by a call to Get_Range_Checks.
-- Stmts is a list to which either the dynamic check is appended or the
-- raise Constraint_Error statement is appended (for static checks).
-- Static_Sloc is the Sloc at which the raise CE node points, Flag_Node is
-- used as the node at which to set the Has_Dynamic_Check flag. Checks_On
-- is a boolean value that says if range and index checking is on or not.
procedure Insert_Range_Checks
(Checks : Check_Result;
Node : Node_Id;
Suppress_Typ : Entity_Id;
Static_Sloc : Source_Ptr := No_Location;
Flag_Node : Node_Id := Empty;
Do_Before : Boolean := False);
-- Called to insert range checks as returned by a call to Get_Range_Checks.
-- Node is the node after which either the dynamic check is inserted or
-- the raise Constraint_Error statement is inserted (for static checks).
-- Suppress_Typ is the type to check to determine if checks are suppressed.
-- Static_Sloc, if passed, is the Sloc at which the raise CE node points,
-- otherwise Sloc (Node) is used. The Has_Dynamic_Check flag is normally
-- set at Node. If Flag_Node is present, then this is used instead as the
-- node at which to set the Has_Dynamic_Check flag. Normally the check is
-- inserted after, if Do_Before is True, the check is inserted before
-- Node.
-----------------------
-- Expander Routines --
-----------------------
-- Some of the earlier processing for checks results in temporarily setting
-- the Do_Range_Check flag rather than actually generating checks. Now we
-- are moving the generation of such checks into the front end for reasons
-- of efficiency and simplicity (there were difficulties in handling this
-- in the back end when side effects were present in the expressions being
-- checked).
-- Probably we could eliminate the Do_Range_Check flag entirely and
-- generate the checks earlier, but this is a delicate area and it
-- seemed safer to implement the following routines, which are called
-- late on in the expansion process. They check the Do_Range_Check flag
-- and if it is set, generate the actual checks and reset the flag.
procedure Generate_Range_Check
(N : Node_Id;
Target_Type : Entity_Id;
Reason : RT_Exception_Code);
-- This procedure is called to actually generate and insert a range check.
-- A check is generated to ensure that the value of N lies within the range
-- of the target type. Note that the base type of N may be different from
-- the base type of the target type. This happens in the conversion case.
-- The Reason parameter is the exception code to be used for the exception
-- if raised.
--
-- Note: if the expander is not active, or if we are in GNATprove mode,
-- then we do not generate explicit range code. Instead we just turn the
-- Do_Range_Check flag on, since in these cases that's what we want to see
-- in the tree (GNATprove in particular depends on this flag being set). If
-- we generate the actual range check, then we make sure the flag is off,
-- since the code we generate takes complete care of the check.
--
-- Historical note: We used to just pass on the Do_Range_Check flag to the
-- back end to generate the check, but now in code-generation mode we never
-- have this flag set, since the front end takes care of the check. The
-- normal processing flow now is that the analyzer typically turns on the
-- Do_Range_Check flag, and if it is set, this routine is called, which
-- turns the flag off in code-generation mode.
procedure Generate_Index_Checks (N : Node_Id);
-- This procedure is called to generate index checks on the subscripts for
-- the indexed component node N. Each subscript expression is examined, and
-- if the Do_Range_Check flag is set, an appropriate index check is
-- generated and the flag is reset.
-- Similarly, we set the flag Do_Discriminant_Check in the semantic
-- analysis to indicate that a discriminant check is required for selected
-- component of a discriminated type. The following routine is called from
-- the expander to actually generate the call.
procedure Generate_Discriminant_Check (N : Node_Id);
-- N is a selected component for which a discriminant check is required to
-- make sure that the discriminants have appropriate values for the
-- selection. This is done by calling the appropriate discriminant checking
-- routine for the selector.
-----------------------
-- Validity Checking --
-----------------------
-- In (RM 13.9.1(9-11)) we have the following rules on invalid values
-- If the representation of a scalar object does not represent value of
-- the object's subtype (perhaps because the object was not initialized),
-- the object is said to have an invalid representation. It is a bounded
-- error to evaluate the value of such an object. If the error is
-- detected, either Constraint_Error or Program_Error is raised.
-- Otherwise, execution continues using the invalid representation. The
-- rules of the language outside this subclause assume that all objects
-- have valid representations. The semantics of operations on invalid
-- representations are as follows:
--
-- 10 If the representation of the object represents a value of the
-- object's type, the value of the type is used.
--
-- 11 If the representation of the object does not represent a value
-- of the object's type, the semantics of operations on such
-- representations is implementation-defined, but does not by
-- itself lead to erroneous or unpredictable execution, or to
-- other objects becoming abnormal.
-- We quote the rules in full here since they are quite delicate. Most
-- of the time, we can just compute away with wrong values, and get a
-- possibly wrong result, which is well within the range of allowed
-- implementation defined behavior. The two tricky cases are subscripted
-- array assignments, where we don't want to do wild stores, and case
-- statements where we don't want to do wild jumps.
-- In GNAT, we control validity checking with a switch -gnatV that can take
-- three parameters, n/d/f for None/Default/Full. These modes have the
-- following meanings:
-- None (no validity checking)
-- In this mode, there is no specific checking for invalid values
-- and the code generator assumes that all stored values are always
-- within the bounds of the object subtype. The consequences are as
-- follows:
-- For case statements, an out of range invalid value will cause
-- Constraint_Error to be raised, or an arbitrary one of the case
-- alternatives will be executed. Wild jumps cannot result even
-- in this mode, since we always do a range check
-- For subscripted array assignments, wild stores will result in
-- the expected manner when addresses are calculated using values
-- of subscripts that are out of range.
-- It could perhaps be argued that this mode is still conformant with
-- the letter of the RM, since implementation defined is a rather
-- broad category, but certainly it is not in the spirit of the
-- RM requirement, since wild stores certainly seem to be a case of
-- erroneous behavior.
-- Default (default standard RM-compatible validity checking)
-- In this mode, which is the default, minimal validity checking is
-- performed to ensure no erroneous behavior as follows:
-- For case statements, an out of range invalid value will cause
-- Constraint_Error to be raised.
-- For subscripted array assignments, invalid out of range
-- subscript values will cause Constraint_Error to be raised.
-- Full (Full validity checking)
-- In this mode, the protections guaranteed by the standard mode are
-- in place, and the following additional checks are made:
-- For every assignment, the right side is checked for validity
-- For every call, IN and IN OUT parameters are checked for validity
-- For every subscripted array reference, both for stores and loads,
-- all subscripts are checked for validity.
-- These checks are not required by the RM, but will in practice
-- improve the detection of uninitialized variables, particularly
-- if used in conjunction with pragma Normalize_Scalars.
-- In the above description, we talk about performing validity checks,
-- but we don't actually generate a check in a case where the compiler
-- can be sure that the value is valid. Note that this assurance must
-- be achieved without assuming that any uninitialized value lies within
-- the range of its type. The following are cases in which values are
-- known to be valid. The flag Is_Known_Valid is used to keep track of
-- some of these cases.
-- If all possible stored values are valid, then any uninitialized
-- value must be valid.
-- Literals, including enumeration literals, are clearly always valid
-- Constants are always assumed valid, with a validity check being
-- performed on the initializing value where necessary to ensure that
-- this is the case.
-- For variables, the status is set to known valid if there is an
-- initializing expression. Again a check is made on the initializing
-- value if necessary to ensure that this assumption is valid. The
-- status can change as a result of local assignments to a variable.
-- If a known valid value is unconditionally assigned, then we mark
-- the left side as known valid. If a value is assigned that is not
-- known to be valid, then we mark the left side as invalid. This
-- kind of processing does NOT apply to non-local variables since we
-- are not following the flow graph (more properly the flow of actual
-- processing only corresponds to the flow graph for local assignments).
-- For non-local variables, we preserve the current setting, i.e. a
-- validity check is performed when assigning to a knonwn valid global.
-- Note: no validity checking is required if range checks are suppressed
-- regardless of the setting of the validity checking mode.
-- The following procedures are used in handling validity checking
procedure Apply_Subscript_Validity_Checks (Expr : Node_Id);
-- Expr is the node for an indexed component. If validity checking and
-- range checking are enabled, all subscripts for this indexed component
-- are checked for validity.
procedure Check_Valid_Lvalue_Subscripts (Expr : Node_Id);
-- Expr is a lvalue, i.e. an expression representing the target of an
-- assignment. This procedure checks for this expression involving an
-- assignment to an array value. We have to be sure that all the subscripts
-- in such a case are valid, since according to the rules in (RM
-- 13.9.1(9-11)) such assignments are not permitted to result in erroneous
-- behavior in the case of invalid subscript values.
procedure Ensure_Valid
(Expr : Node_Id;
Holes_OK : Boolean := False;
Related_Id : Entity_Id := Empty;
Is_Low_Bound : Boolean := False;
Is_High_Bound : Boolean := False);
-- Ensure that Expr represents a valid value of its type. If this type
-- is not a scalar type, then the call has no effect, since validity
-- is only an issue for scalar types. The effect of this call is to
-- check if the value is known valid, if so, nothing needs to be done.
-- If this is not known, then either Expr is set to be range checked,
-- or specific checking code is inserted so that an exception is raised
-- if the value is not valid.
--
-- The optional argument Holes_OK indicates whether it is necessary to
-- worry about enumeration types with non-standard representations leading
-- to "holes" in the range of possible representations. If Holes_OK is
-- True, then such values are assumed valid (this is used when the caller
-- will make a separate check for this case anyway). If Holes_OK is False,
-- then this case is checked, and code is inserted to ensure that Expr is
-- valid, raising Constraint_Error if the value is not valid.
--
-- Related_Id denotes the entity of the context where Expr appears. Flags
-- Is_Low_Bound and Is_High_Bound specify whether the expression to check
-- is the low or the high bound of a range. These three optional arguments
-- signal Remove_Side_Effects to create an external symbol of the form
-- Chars (Related_Id)_FIRST/_LAST. For suggested use of these parameters
-- see the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
function Expr_Known_Valid (Expr : Node_Id) return Boolean;
-- This function tests it the value of Expr is known to be valid in the
-- sense of RM 13.9.1(9-11). In the case of GNAT, it is only discrete types
-- which are a concern, since for non-discrete types we simply continue
-- computation with invalid values, which does not lead to erroneous
-- behavior. Thus Expr_Known_Valid always returns True if the type of Expr
-- is non-discrete. For discrete types the value returned is True only if
-- it can be determined that the value is Valid. Otherwise False is
-- returned.
procedure Insert_Valid_Check
(Expr : Node_Id;
Related_Id : Entity_Id := Empty;
Is_Low_Bound : Boolean := False;
Is_High_Bound : Boolean := False);
-- Inserts code that will check for the value of Expr being valid, in the
-- sense of the 'Valid attribute returning True. Constraint_Error will be
-- raised if the value is not valid.
--
-- Related_Id denotes the entity of the context where Expr appears. Flags
-- Is_Low_Bound and Is_High_Bound specify whether the expression to check
-- is the low or the high bound of a range. These three optional arguments
-- signal Remove_Side_Effects to create an external symbol of the form
-- Chars (Related_Id)_FIRST/_LAST. For suggested use of these parameters
-- see the warning in the body of Sem_Ch3.Process_Range_Expr_In_Decl.
procedure Null_Exclusion_Static_Checks (N : Node_Id);
-- Ada 2005 (AI-231): Check bad usages of the null-exclusion issue
procedure Remove_Checks (Expr : Node_Id);
-- Remove all checks from Expr except those that are only executed
-- conditionally (on the right side of And Then/Or Else. This call
-- removes only embedded checks (Do_Range_Check, Do_Overflow_Check).
procedure Validity_Check_Range
(N : Node_Id;
Related_Id : Entity_Id := Empty);
-- If N is an N_Range node, then Ensure_Valid is called on its bounds, if
-- validity checking of operands is enabled. Related_Id denotes the entity
-- of the context where N appears.
-----------------------------
-- Handling of Check Names --
-----------------------------
-- The following table contains Name_Id's for recognized checks. The first
-- entries (corresponding to the values of the subtype Predefined_Check_Id)
-- contain the Name_Id values for the checks that are predefined, including
-- All_Checks (see Types). Remaining entries are those that are introduced
-- by pragma Check_Names.
package Check_Names is new Table.Table (
Table_Component_Type => Name_Id,
Table_Index_Type => Check_Id,
Table_Low_Bound => 1,
Table_Initial => 30,
Table_Increment => 200,
Table_Name => "Name_Check_Names");
function Get_Check_Id (N : Name_Id) return Check_Id;
-- Function to search above table for matching name. If found returns the
-- corresponding Check_Id value in the range 1 .. Check_Name.Last. If not
-- found returns No_Check_Id.
private
type Check_Result is array (Positive range 1 .. 2) of Node_Id;
-- There are two cases for the result returned by Range_Check:
--
-- For the static case the result is one or two nodes that should cause
-- a Constraint_Error. Typically these will include Expr itself or the
-- direct descendants of Expr, such as Low/High_Bound (Expr)). It is the
-- responsibility of the caller to rewrite and substitute the nodes with
-- N_Raise_Constraint_Error nodes.
--
-- For the non-static case a single N_Raise_Constraint_Error node with a
-- non-empty Condition field is returned.
--
-- Unused entries in Check_Result, if any, are simply set to Empty For
-- external clients, the required processing on this result is achieved
-- using the Insert_Range_Checks routine.
pragma Inline (Apply_Length_Check);
pragma Inline (Apply_Range_Check);
pragma Inline (Apply_Static_Length_Check);
end Checks;
|
------------------------------------------------------------------------------
-- --
-- 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 stm32f4_discovery.c --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief This file provides set of firmware functions to manage Leds --
-- and push-button available on STM32F42-Discovery Kit from --
-- STMicroelectronics. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
with Ada.Real_Time; use Ada.Real_Time;
with STM32.Setup;
with HAL.SPI;
with LIS3DSH; use LIS3DSH;
package body STM32.Board is
------------------
-- All_LEDs_Off --
------------------
procedure All_LEDs_Off is
begin
Clear (All_LEDs);
end All_LEDs_Off;
-----------------
-- All_LEDs_On --
-----------------
procedure All_LEDs_On is
begin
Set (All_LEDs);
end All_LEDs_On;
---------------------
-- Initialize_LEDs --
---------------------
procedure Initialize_LEDs is
begin
Enable_Clock (All_LEDs);
Configure_IO
(All_LEDs,
(Mode_Out,
Resistors => Floating,
Output_Type => Push_Pull,
Speed => Speed_100MHz));
end Initialize_LEDs;
----------------------
-- Initialize_Audio --
----------------------
procedure Initialize_Audio is
procedure Initialize_GPIO;
---------------------
-- Initialize_GPIO --
---------------------
procedure Initialize_GPIO is
begin
-- I2S --
Enable_Clock (Audio_I2S_Points);
Configure_IO (Audio_I2S_Points,
(Mode => Mode_AF,
Resistors => Floating,
AF_Speed => Speed_High,
AF_Output_Type => Push_Pull,
AF => GPIO_AF_I2S3_6));
Lock (Audio_I2S_Points);
-- DAC reset --
Enable_Clock (DAC_Reset_Point);
Configure_IO (DAC_Reset_Point,
(Speed => Speed_High,
Mode => Mode_Out,
Output_Type => Push_Pull,
Resistors => Pull_Down));
Lock (DAC_Reset_Point);
end Initialize_GPIO;
Conf : I2S_Configuration;
begin
Initialize_GPIO;
STM32.Setup.Setup_I2C_Master (Port => I2C_1,
SDA => Audio_I2C_SDA,
SCL => Audio_I2C_SCL,
SDA_AF => GPIO_AF_I2C1_4,
SCL_AF => GPIO_AF_I2C1_4,
Clock_Speed => 100_000);
Set_PLLI2S_Factors (Pll_N => 258,
Pll_R => 3);
Enable_PLLI2S;
Enable_Clock (Audio_I2S);
Conf.Mode := Master_Transmit;
Conf.Standard := I2S_Philips_Standard;
Conf.Clock_Polarity := Steady_State_Low;
Conf.Data_Length := Data_16bits;
Conf.Chan_Length := Channel_16bits;
Conf.Master_Clock_Out_Enabled := True;
Conf.Transmit_DMA_Enabled := True;
Conf.Receive_DMA_Enabled := False;
Audio_I2S.Configure (Conf);
Audio_I2S.Set_Frequency (Audio_Freq_48kHz);
Audio_I2S.Enable;
DAC_Reset_Point.Clear;
delay until Clock + Microseconds (200);
DAC_Reset_Point.Set;
delay until Clock + Microseconds (200);
Audio_DAC.Init (Output => CS43L22.Headphone,
Volume => 0,
Frequency => Audio_Rate);
end Initialize_Audio;
--------------------------------
-- Configure_User_Button_GPIO --
--------------------------------
procedure Configure_User_Button_GPIO is
begin
Enable_Clock (User_Button_Point);
Configure_IO (User_Button_Point, (Mode_In, Resistors => Floating));
end Configure_User_Button_GPIO;
------------------------------
-- Initialize_Accelerometer --
------------------------------
procedure Initialize_Accelerometer is
procedure Init_SPI;
procedure Init_GPIO;
--------------
-- Init_SPI --
--------------
procedure Init_SPI is
Config : SPI_Configuration;
begin
Enable_Clock (Acc_SPI);
Config.Mode := Master;
Config.Baud_Rate_Prescaler := BRP_32;
Config.Clock_Polarity := Low;
Config.Clock_Phase := P1Edge;
Config.First_Bit := MSB;
Config.CRC_Poly := 7;
Config.Slave_Management := Software_Managed; -- essential!!
Config.Direction := D2Lines_FullDuplex;
Config.Data_Size := HAL.SPI.Data_Size_8b;
Disable (Acc_SPI);
Configure (Acc_SPI, Config);
Enable (Acc_SPI);
end Init_SPI;
---------------
-- Init_GPIO --
---------------
procedure Init_GPIO is
SPI_Points : constant GPIO_Points := Acc_SPI_MOSI_Pin &
Acc_SPI_MISO_Pin & Acc_SPI_SCK_Pin;
begin
Enable_Clock (SPI_Points);
Configure_IO (SPI_Points,
(Mode_AF,
AF => Acc_SPI_AF,
Resistors => Floating,
AF_Speed => Speed_50MHz,
AF_Output_Type => Push_Pull));
Enable_Clock (Acc_Chip_Select_Pin);
Acc_Chip_Select_Pin.Configure_IO
((Mode_Out,
Resistors => Pull_Up,
Output_Type => Push_Pull,
Speed => Speed_25MHz));
Acc_Chip_Select_Pin.Set;
end Init_GPIO;
begin
Init_GPIO;
Init_SPI;
end Initialize_Accelerometer;
end STM32.Board;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.UML.Protocol_Transitions.Collections is
pragma Preelaborate;
package UML_Protocol_Transition_Collections is
new AMF.Generic_Collections
(UML_Protocol_Transition,
UML_Protocol_Transition_Access);
type Set_Of_UML_Protocol_Transition is
new UML_Protocol_Transition_Collections.Set with null record;
Empty_Set_Of_UML_Protocol_Transition : constant Set_Of_UML_Protocol_Transition;
type Ordered_Set_Of_UML_Protocol_Transition is
new UML_Protocol_Transition_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Protocol_Transition : constant Ordered_Set_Of_UML_Protocol_Transition;
type Bag_Of_UML_Protocol_Transition is
new UML_Protocol_Transition_Collections.Bag with null record;
Empty_Bag_Of_UML_Protocol_Transition : constant Bag_Of_UML_Protocol_Transition;
type Sequence_Of_UML_Protocol_Transition is
new UML_Protocol_Transition_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Protocol_Transition : constant Sequence_Of_UML_Protocol_Transition;
private
Empty_Set_Of_UML_Protocol_Transition : constant Set_Of_UML_Protocol_Transition
:= (UML_Protocol_Transition_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Protocol_Transition : constant Ordered_Set_Of_UML_Protocol_Transition
:= (UML_Protocol_Transition_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Protocol_Transition : constant Bag_Of_UML_Protocol_Transition
:= (UML_Protocol_Transition_Collections.Bag with null record);
Empty_Sequence_Of_UML_Protocol_Transition : constant Sequence_Of_UML_Protocol_Transition
:= (UML_Protocol_Transition_Collections.Sequence with null record);
end AMF.UML.Protocol_Transitions.Collections;
|
-- Abstract :
--
-- Output Elisp code implementing the grammar defined by the parameters.
--
-- Copyright (C) 2012 - 2015, 2017 - 2019 Free Software Foundation, Inc.
--
-- The WisiToken package is free software; you can redistribute it
-- and/or modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, or
-- (at your option) any later version. This library is distributed in
-- the hope that it will be useful, but WITHOUT ANY WARRANTY; without
-- even the implied warranty of 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.
pragma License (Modified_GPL);
with Ada.Text_IO; use Ada.Text_IO;
with WisiToken.BNF.Generate_Utils;
with WisiToken.BNF.Output_Elisp_Common;
with WisiToken.Generate.Packrat;
with WisiToken.Parse.LR;
with WisiToken_Grammar_Runtime;
procedure WisiToken.BNF.Output_Elisp
(Input_Data : in WisiToken_Grammar_Runtime.User_Data_Type;
Elisp_Package : in String;
Generate_Data : aliased in WisiToken.BNF.Generate_Utils.Generate_Data;
Packrat_Data : in WisiToken.Generate.Packrat.Data;
Tuple : in Generate_Tuple)
is
pragma Unreferenced (Packrat_Data);
procedure Action_Table (Table : in WisiToken.Parse.LR.Parse_Table; Descriptor : in WisiToken.Descriptor)
is
use WisiToken.Parse.LR;
begin
Put (" [");
for State in Table.States'Range loop
if State = Table.States'First then
Put ("(");
else
Put (" (");
end if;
Put ("(default . error)");
declare
Action : Action_Node_Ptr := Table.States (State).Action_List;
begin
loop
declare
Parse_Action_Node : Parse_Action_Node_Ptr := Action.Action;
Conflict : constant Boolean := Parse_Action_Node.Next /= null;
begin
Put (" (" & Image (Action.Symbol, Descriptor) & " . ");
if Conflict then
Put ("(");
end if;
loop
declare
Parse_Action : Parse_Action_Rec renames Parse_Action_Node.Item;
begin
case Parse_Action.Verb is
when Accept_It =>
Put ("accept");
when Error =>
Put ("error");
when Reduce =>
Put
("(" & Image (Parse_Action.Production.LHS, Descriptor) & " ." &
Integer'Image (Parse_Action.Production.RHS) & ")");
when Shift =>
Put (State_Index'Image (Parse_Action.State));
end case;
if Parse_Action_Node.Next = null then
if Conflict then
Put (")");
end if;
Put (")");
exit;
else
Put (" ");
Parse_Action_Node := Parse_Action_Node.Next;
end if;
end;
end loop;
end;
Action := Action.Next;
if Action.Next = null then
if Action.Action.Item.Verb /= Error then
raise SAL.Programmer_Error with "state" &
State_Index'Image (State) & ": default action is not error";
end if;
-- let default handle it
Action := null;
end if;
if Action = null then
if State = Table.States'Last then
Put (")");
else
Put_Line (")");
end if;
exit;
end if;
end loop;
end;
end loop;
Put_Line ("]");
end Action_Table;
procedure Goto_Table (Table : in WisiToken.Parse.LR.Parse_Table; Descriptor : in WisiToken.Descriptor)
is
use WisiToken.Parse.LR;
subtype Nonterminals is Token_ID range Descriptor.First_Nonterminal .. Descriptor.Last_Nonterminal;
function Count_Nonterminals (List : in Goto_Node_Ptr) return Integer
is
Item : Goto_Node_Ptr := List;
Count : Integer := 0;
begin
while Item /= null loop
if Symbol (Item) in Nonterminals then
Count := Count + 1;
end if;
Item := Next (Item);
end loop;
return Count;
end Count_Nonterminals;
begin
Put (" [");
for State in Table.States'Range loop
declare
Nonterminal_Count : constant Integer := Count_Nonterminals (Table.States (State).Goto_List);
Gotos : Goto_Node_Ptr := Table.States (State).Goto_List;
begin
if Nonterminal_Count = 0 then
if State = Table.States'First then
Put_Line ("nil");
else
if State = Table.States'Last then
Put (" nil");
else
Put_Line (" nil");
end if;
end if;
else
if State = Table.States'First then
Put ("(");
else
Put (" (");
end if;
loop
if Symbol (Gotos) in Nonterminals then
Put ("(" & Image (Symbol (Gotos), Descriptor) & " ." &
State_Index'Image (Parse.LR.State (Gotos)) & ")");
end if;
Gotos := Next (Gotos);
exit when Gotos = null;
end loop;
if State = Table.States'Last then
Put (")");
else
Put_Line (")");
end if;
end if;
end;
end loop;
Put ("]");
end Goto_Table;
procedure Output
(Elisp_Package : in String;
Tokens : in WisiToken.BNF.Tokens;
Parser : in WisiToken.Parse.LR.Parse_Table_Ptr;
Descriptor : in WisiToken.Descriptor)
is
use Ada.Strings.Unbounded;
use Ada.Containers; -- count_type
Rule_Length : constant Count_Type := Tokens.Rules.Length;
Rule_Count : Count_Type := 1;
RHS_Length : Count_Type;
RHS_Count : Count_Type;
begin
Put_Line ("(defconst " & Elisp_Package & "-elisp-parse-table");
Put_Line (" (wisi-compile-grammar");
-- nonterminal productions
Put (" '((");
for Rule of Tokens.Rules loop
if Rule_Count = 1 then
Put ("(");
else
Put (" (");
end if;
Put_Line (-Rule.Left_Hand_Side);
RHS_Length := Rule.Right_Hand_Sides.Length;
RHS_Count := 1;
for RHS of Rule.Right_Hand_Sides loop
Put (" ((");
for Token of RHS.Tokens loop
Put (-Token.Identifier & " ");
end loop;
if Length (RHS.Action) = 0 then
Put (")");
else
Put_Line (")");
Put (" " & (-RHS.Action));
end if;
if RHS_Count = RHS_Length then
Put (")");
else
Put_Line (")");
end if;
RHS_Count := RHS_Count + 1;
end loop;
if Rule_Count = Rule_Length then
Put (")");
else
Put_Line (")");
end if;
Rule_Count := Rule_Count + 1;
end loop;
Put_Line (")");
Action_Table (Parser.all, Descriptor);
Goto_Table (Parser.all, Descriptor);
Put_Line ("))");
Put_Line (" ""Parser table."")");
end Output;
procedure Create_Elisp (Algorithm : in LR_Generate_Algorithm)
is
use Ada.Strings.Unbounded;
File : File_Type;
Elisp_Package_1 : constant String :=
(case Algorithm is
when LALR => Elisp_Package & "-lalr",
when LR1 => Elisp_Package & "-lr1");
begin
Create (File, Out_File, Elisp_Package_1 & "-elisp.el");
Set_Output (File);
Put_Line (";;; " & Elisp_Package_1 & "-elisp.el --- Generated parser support file -*- lexical-binding:t -*-");
Put_Command_Line (Elisp_Comment & " ", Use_Tuple => True, Tuple => Tuple);
Put_Raw_Code (Elisp_Comment, Input_Data.Raw_Code (Copyright_License));
Put_Raw_Code (Elisp_Comment, Input_Data.Raw_Code (Actions_Spec_Context));
New_Line;
Put_Line ("(require 'wisi)");
Put_Line ("(require 'wisi-compile)");
Put_Line ("(require 'wisi-elisp-parse)");
New_Line;
Output_Elisp_Common.Indent_Keyword_Table
(Elisp_Package_1, "elisp", Input_Data.Tokens.Keywords, To_String'Access);
New_Line;
Output_Elisp_Common.Indent_Token_Table (Elisp_Package_1, "elisp", Input_Data.Tokens.Tokens, To_String'Access);
New_Line;
Output (Elisp_Package_1, Input_Data.Tokens, Generate_Data.LR_Parse_Table, Generate_Data.Descriptor.all);
New_Line;
Put_Line ("(provide '" & Elisp_Package_1 & "-elisp)");
Put_Line (";; end of file");
Close (File);
Set_Output (Standard_Output);
end Create_Elisp;
begin
Create_Elisp (Tuple.Gen_Alg);
if WisiToken.Trace_Generate > 0 then
WisiToken.BNF.Generate_Utils.Put_Stats (Input_Data, Generate_Data);
end if;
end WisiToken.BNF.Output_Elisp;
|
-- { dg-do compile }
-- { dg-options "-O3" }
package body Loop_Optimization15 is
type Integer_Array_T is array (B16_T range <>) of Integer;
Len : constant B16_T := 10;
Src : constant Integer_Array_T (1 .. Len) := (others => 0);
Dst : Integer_Array_T (1 .. Len);
procedure Proc (L : B16_T) is
begin
for I in 1 .. B16_T'Min (L, Len) loop
Dst (I) := Src (I);
end loop;
end;
end Loop_Optimization15;
|
------------------------------------------------------------------------------
-- --
-- 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_00A1 is
pragma Preelaborate;
Group_00A1 : aliased constant Core_Second_Stage
:= (others =>
(Other_Letter, Wide,
Other, A_Letter, O_Letter, Ideographic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_00A1;
|
-- { dg-do compile }
-- { dg-options "-O -Wall" }
function uninit_func (A, B : Boolean) return Boolean is
C : Boolean;
begin
if A then
C := False;
elsif B then
C := True;
end if;
return C; -- { dg-warning "may be used uninitialized" }
end;
|
-- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2022 onox <denkpadje@gmail.com>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
generic
type Unsigned_64 is mod <>;
package Xoshiro256 with SPARK_Mode => On is
pragma Pure;
pragma Compile_Time_Error (Unsigned_64'Size /= 64,
"Invalid mod type for Xoshiro256");
pragma Compile_Time_Error (Unsigned_64'Modulus /= 2**64,
"Invalid mod type for Xoshiro256");
subtype Unit_Interval is Long_Float range 0.0 .. 1.0;
function To_Float (Value : Unsigned_64) return Unit_Interval
with Inline_Always,
Global => null,
Depends => (To_Float'Result => Value);
type Generator is limited private;
procedure Next (S : in out Generator; Value : out Unsigned_64)
with Inline_Always,
Global => null,
Depends => (S => S, Value => S);
procedure Reset (S : out Generator; Seed : Unsigned_64)
with Global => null,
Depends => (S => Seed),
Pre => Seed /= 0;
private
type Generator is array (0 .. 3) of Unsigned_64;
end Xoshiro256;
|
with Renaming8_Pkg2; use Renaming8_Pkg2;
package Renaming8_Pkg1 is
B: Boolean renames F.E(1);
end Renaming8_Pkg1;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- Factory for UML Testing Profile module.
------------------------------------------------------------------------------
package AMF.Internals.Factories.Utp_Module_Factory is
type Utp_Module_Factory is
limited new AMF.Internals.Factories.Abstract_Module_Factory
with null record;
------------------------------
-- AMF_Factory's operations --
------------------------------
overriding procedure Connect_Extent
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element;
Extent : AMF.Internals.AMF_Extent);
overriding procedure Connect_Link_End
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element;
Property : AMF.Internals.CMOF_Element;
Link : AMF.Internals.AMF_Link;
Other : AMF.Internals.AMF_Element);
overriding function To_Element
(Self : not null access constant Utp_Module_Factory;
Element : AMF.Internals.AMF_Element) return AMF.Elements.Element_Access;
end AMF.Internals.Factories.Utp_Module_Factory;
|
with Ada.Unchecked_Conversion;
package Tkmrpc.Response.Ike.Dh_Get_Shared_Secret.Convert is
function To_Response is new Ada.Unchecked_Conversion (
Source => Dh_Get_Shared_Secret.Response_Type,
Target => Response.Data_Type);
function From_Response is new Ada.Unchecked_Conversion (
Source => Response.Data_Type,
Target => Dh_Get_Shared_Secret.Response_Type);
end Tkmrpc.Response.Ike.Dh_Get_Shared_Secret.Convert;
|
-- Copyright 2007-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Pck is
procedure Do_Nothing (A : System.Address) is
begin
null;
end Do_Nothing;
end Pck;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with HAL.SPI;
package body OpenMV is
---------------------
-- Initialize_LEDs --
---------------------
procedure Initialize_LEDs is
Conf : GPIO_Port_Configuration;
begin
Enable_Clock (All_LEDs);
Conf.Mode := Mode_Out;
Conf.Output_Type := Push_Pull;
Conf.Speed := Speed_100MHz;
Conf.Resistors := Floating;
Configure_IO (All_LEDs, Conf);
end Initialize_LEDs;
-----------------
-- Set_RGB_LED --
-----------------
procedure Set_RGB_LED (C : LED_Color) is
begin
-- Clear to turn on LED
-- Set to turn off
case C is
when White | Red | Yellow | Magenta =>
Clear (Red_LED);
when others =>
Set (Red_LED);
end case;
case C is
when White | Green | Yellow | Cyan =>
Clear (Green_LED);
when others =>
Set (Green_LED);
end case;
case C is
when White | Cyan | Blue | Magenta =>
Clear (Blue_LED);
when others =>
Set (Blue_LED);
end case;
end Set_RGB_LED;
----------------
-- Turn_On_IR --
----------------
procedure Turn_On_IR is
begin
Set (IR_LED);
end Turn_On_IR;
-----------------
-- Turn_Off_IR --
-----------------
procedure Turn_Off_IR is
begin
Clear (IR_LED);
end Turn_Off_IR;
---------------------------
-- Initialize_Shield_SPI --
---------------------------
procedure Initialize_Shield_SPI is
SPI_Conf : STM32.SPI.SPI_Configuration;
GPIO_Conf : STM32.GPIO.GPIO_Port_Configuration;
begin
STM32.Device.Enable_Clock (Shield_SPI_Points);
GPIO_Conf.Speed := STM32.GPIO.Speed_100MHz;
GPIO_Conf.Mode := STM32.GPIO.Mode_AF;
GPIO_Conf.Output_Type := STM32.GPIO.Push_Pull;
GPIO_Conf.Resistors := STM32.GPIO.Pull_Down; -- SPI low polarity
STM32.GPIO.Configure_IO (Shield_SPI_Points, GPIO_Conf);
STM32.GPIO.Configure_Alternate_Function
(Shield_SPI_Points,
GPIO_AF_SPI2_5);
STM32.Device.Enable_Clock (Shield_SPI);
STM32.SPI.Disable (Shield_SPI);
SPI_Conf.Direction := STM32.SPI.D2Lines_FullDuplex;
SPI_Conf.Mode := STM32.SPI.Master;
SPI_Conf.Data_Size := HAL.SPI.Data_Size_8b;
SPI_Conf.Clock_Polarity := STM32.SPI.Low;
SPI_Conf.Clock_Phase := STM32.SPI.P1Edge;
SPI_Conf.Slave_Management := STM32.SPI.Software_Managed;
SPI_Conf.Baud_Rate_Prescaler := STM32.SPI.BRP_2;
SPI_Conf.First_Bit := STM32.SPI.MSB;
SPI_Conf.CRC_Poly := 7;
STM32.SPI.Configure (Shield_SPI, SPI_Conf);
STM32.SPI.Enable (Shield_SPI);
end Initialize_Shield_SPI;
-----------------------------
-- Initialize_Shield_USART --
-----------------------------
procedure Initialize_Shield_USART (Baud : STM32.USARTs.Baud_Rates) is
Configuration : GPIO_Port_Configuration;
begin
Enable_Clock (Shield_USART);
Enable_Clock (Shield_USART_Points);
Configuration.Mode := Mode_AF;
Configuration.Speed := Speed_50MHz;
Configuration.Output_Type := Push_Pull;
Configuration.Resistors := Pull_Up;
Configure_IO (Shield_USART_Points, Configuration);
Configure_Alternate_Function (Shield_USART_Points, Shield_USART_AF);
Disable (Shield_USART);
Set_Baud_Rate (Shield_USART, Baud);
Set_Mode (Shield_USART, Tx_Rx_Mode);
Set_Stop_Bits (Shield_USART, Stopbits_1);
Set_Word_Length (Shield_USART, Word_Length_8);
Set_Parity (Shield_USART, No_Parity);
Set_Flow_Control (Shield_USART, No_Flow_Control);
Enable (Shield_USART);
end Initialize_Shield_USART;
----------------------
-- Get_Shield_USART --
----------------------
function Get_Shield_USART return not null HAL.UART.Any_UART_Port is
(USART_3'Access);
end OpenMV;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 1 7 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 17
package System.Pack_17 is
pragma Preelaborate;
Bits : constant := 17;
type Bits_17 is mod 2 ** Bits;
for Bits_17'Size use Bits;
-- In all subprograms below, Rev_SSO is set True if the array has the
-- non-default scalar storage order.
function Get_17
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_17 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_17
(Arr : System.Address;
N : Natural;
E : Bits_17;
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_17;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . S T O R A G E _ P O O L S . S U B P O O L 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. --
-- --
------------------------------------------------------------------------------
with Ada.Exceptions; use Ada.Exceptions;
with Ada.Unchecked_Conversion;
with System.Address_Image;
with System.Finalization_Masters; use System.Finalization_Masters;
with System.IO; use System.IO;
with System.Soft_Links; use System.Soft_Links;
with System.Storage_Elements; use System.Storage_Elements;
with System.Storage_Pools.Subpools.Finalization;
use System.Storage_Pools.Subpools.Finalization;
package body System.Storage_Pools.Subpools is
Finalize_Address_Table_In_Use : Boolean := False;
-- This flag should be set only when a successful allocation on a subpool
-- has been performed and the associated Finalize_Address has been added to
-- the hash table in System.Finalization_Masters.
function Address_To_FM_Node_Ptr is
new Ada.Unchecked_Conversion (Address, FM_Node_Ptr);
procedure Attach (N : not null SP_Node_Ptr; L : not null SP_Node_Ptr);
-- Attach a subpool node to a pool
-----------------------------------
-- Adjust_Controlled_Dereference --
-----------------------------------
procedure Adjust_Controlled_Dereference
(Addr : in out System.Address;
Storage_Size : in out System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count)
is
Header_And_Padding : constant Storage_Offset :=
Header_Size_With_Padding (Alignment);
begin
-- Expose the two hidden pointers by shifting the address from the
-- start of the object to the FM_Node equivalent of the pointers.
Addr := Addr - Header_And_Padding;
-- Update the size of the object to include the two pointers
Storage_Size := Storage_Size + Header_And_Padding;
end Adjust_Controlled_Dereference;
--------------
-- Allocate --
--------------
overriding procedure Allocate
(Pool : in out Root_Storage_Pool_With_Subpools;
Storage_Address : out System.Address;
Size_In_Storage_Elements : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count)
is
begin
-- Dispatch to the user-defined implementations of Allocate_From_Subpool
-- and Default_Subpool_For_Pool.
Allocate_From_Subpool
(Root_Storage_Pool_With_Subpools'Class (Pool),
Storage_Address,
Size_In_Storage_Elements,
Alignment,
Default_Subpool_For_Pool
(Root_Storage_Pool_With_Subpools'Class (Pool)));
end Allocate;
-----------------------------
-- Allocate_Any_Controlled --
-----------------------------
procedure Allocate_Any_Controlled
(Pool : in out Root_Storage_Pool'Class;
Context_Subpool : Subpool_Handle;
Context_Master : Finalization_Masters.Finalization_Master_Ptr;
Fin_Address : Finalization_Masters.Finalize_Address_Ptr;
Addr : out System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count;
Is_Controlled : Boolean;
On_Subpool : Boolean)
is
Is_Subpool_Allocation : constant Boolean :=
Pool in Root_Storage_Pool_With_Subpools'Class;
Master : Finalization_Master_Ptr := null;
N_Addr : Address;
N_Ptr : FM_Node_Ptr;
N_Size : Storage_Count;
Subpool : Subpool_Handle := null;
Lock_Taken : Boolean := False;
Header_And_Padding : Storage_Offset;
-- This offset includes the size of a FM_Node plus any additional
-- padding due to a larger alignment.
begin
-- Step 1: Pool-related runtime checks
-- Allocation on a pool_with_subpools. In this scenario there is a
-- master for each subpool. The master of the access type is ignored.
if Is_Subpool_Allocation then
-- Case of an allocation without a Subpool_Handle. Dispatch to the
-- implementation of Default_Subpool_For_Pool.
if Context_Subpool = null then
Subpool :=
Default_Subpool_For_Pool
(Root_Storage_Pool_With_Subpools'Class (Pool));
-- Allocation with a Subpool_Handle
else
Subpool := Context_Subpool;
end if;
-- Ensure proper ownership and chaining of the subpool
if Subpool.Owner /=
Root_Storage_Pool_With_Subpools'Class (Pool)'Unchecked_Access
or else Subpool.Node = null
or else Subpool.Node.Prev = null
or else Subpool.Node.Next = null
then
raise Program_Error with "incorrect owner of subpool";
end if;
Master := Subpool.Master'Unchecked_Access;
-- Allocation on a simple pool. In this scenario there is a master for
-- each access-to-controlled type. No context subpool should be present.
else
-- If the master is missing, then the expansion of the access type
-- failed to create one. This is a compiler bug.
pragma Assert
(Context_Master /= null, "missing master in pool allocation");
-- If a subpool is present, then this is the result of erroneous
-- allocator expansion. This is not a serious error, but it should
-- still be detected.
if Context_Subpool /= null then
raise Program_Error
with "subpool not required in pool allocation";
end if;
-- If the allocation is intended to be on a subpool, but the access
-- type's pool does not support subpools, then this is the result of
-- incorrect end-user code.
if On_Subpool then
raise Program_Error
with "pool of access type does not support subpools";
end if;
Master := Context_Master;
end if;
-- Step 2: Master, Finalize_Address-related runtime checks and size
-- calculations.
-- Allocation of a descendant from [Limited_]Controlled, a class-wide
-- object or a record with controlled components.
if Is_Controlled then
-- Synchronization:
-- Read - allocation, finalization
-- Write - finalization
Lock_Taken := True;
Lock_Task.all;
-- Do not allow the allocation of controlled objects while the
-- associated master is being finalized.
if Finalization_Started (Master.all) then
raise Program_Error with "allocation after finalization started";
end if;
-- Check whether primitive Finalize_Address is available. If it is
-- not, then either the expansion of the designated type failed or
-- the expansion of the allocator failed. This is a compiler bug.
pragma Assert
(Fin_Address /= null, "primitive Finalize_Address not available");
-- The size must account for the hidden header preceding the object.
-- Account for possible padding space before the header due to a
-- larger alignment.
Header_And_Padding := Header_Size_With_Padding (Alignment);
N_Size := Storage_Size + Header_And_Padding;
-- Non-controlled allocation
else
N_Size := Storage_Size;
end if;
-- Step 3: Allocation of object
-- For descendants of Root_Storage_Pool_With_Subpools, dispatch to the
-- implementation of Allocate_From_Subpool.
if Is_Subpool_Allocation then
Allocate_From_Subpool
(Root_Storage_Pool_With_Subpools'Class (Pool),
N_Addr, N_Size, Alignment, Subpool);
-- For descendants of Root_Storage_Pool, dispatch to the implementation
-- of Allocate.
else
Allocate (Pool, N_Addr, N_Size, Alignment);
end if;
-- Step 4: Attachment
if Is_Controlled then
-- Note that we already did "Lock_Task.all;" in Step 2 above
-- Map the allocated memory into a FM_Node record. This converts the
-- top of the allocated bits into a list header. If there is padding
-- due to larger alignment, the header is placed right next to the
-- object:
-- N_Addr N_Ptr
-- | |
-- V V
-- +-------+---------------+----------------------+
-- |Padding| Header | Object |
-- +-------+---------------+----------------------+
-- ^ ^ ^
-- | +- Header_Size -+
-- | |
-- +- Header_And_Padding --+
N_Ptr :=
Address_To_FM_Node_Ptr (N_Addr + Header_And_Padding - Header_Size);
-- Prepend the allocated object to the finalization master
-- Synchronization:
-- Write - allocation, deallocation, finalization
Attach_Unprotected (N_Ptr, Objects (Master.all));
-- Move the address from the hidden list header to the start of the
-- object. This operation effectively hides the list header.
Addr := N_Addr + Header_And_Padding;
-- Homogeneous masters service the following:
-- 1) Allocations on / Deallocations from regular pools
-- 2) Named access types
-- 3) Most cases of anonymous access types usage
-- Synchronization:
-- Read - allocation, finalization
-- Write - outside
if Master.Is_Homogeneous then
-- Synchronization:
-- Read - finalization
-- Write - allocation, outside
Set_Finalize_Address_Unprotected (Master.all, Fin_Address);
-- Heterogeneous masters service the following:
-- 1) Allocations on / Deallocations from subpools
-- 2) Certain cases of anonymous access types usage
else
-- Synchronization:
-- Read - finalization
-- Write - allocation, deallocation
Set_Heterogeneous_Finalize_Address_Unprotected (Addr, Fin_Address);
Finalize_Address_Table_In_Use := True;
end if;
Unlock_Task.all;
Lock_Taken := False;
-- Non-controlled allocation
else
Addr := N_Addr;
end if;
exception
when others =>
-- Unlock the task in case the allocation step failed and reraise the
-- exception.
if Lock_Taken then
Unlock_Task.all;
end if;
raise;
end Allocate_Any_Controlled;
------------
-- Attach --
------------
procedure Attach (N : not null SP_Node_Ptr; L : not null SP_Node_Ptr) is
begin
-- Ensure that the node has not been attached already
pragma Assert (N.Prev = null and then N.Next = null);
Lock_Task.all;
L.Next.Prev := N;
N.Next := L.Next;
L.Next := N;
N.Prev := L;
Unlock_Task.all;
-- Note: No need to unlock in case of an exception because the above
-- code can never raise one.
end Attach;
-------------------------------
-- Deallocate_Any_Controlled --
-------------------------------
procedure Deallocate_Any_Controlled
(Pool : in out Root_Storage_Pool'Class;
Addr : System.Address;
Storage_Size : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count;
Is_Controlled : Boolean)
is
N_Addr : Address;
N_Ptr : FM_Node_Ptr;
N_Size : Storage_Count;
Header_And_Padding : Storage_Offset;
-- This offset includes the size of a FM_Node plus any additional
-- padding due to a larger alignment.
begin
-- Step 1: Detachment
if Is_Controlled then
Lock_Task.all;
begin
-- Destroy the relation pair object - Finalize_Address since it is
-- no longer needed.
if Finalize_Address_Table_In_Use then
-- Synchronization:
-- Read - finalization
-- Write - allocation, deallocation
Delete_Finalize_Address_Unprotected (Addr);
end if;
-- Account for possible padding space before the header due to a
-- larger alignment.
Header_And_Padding := Header_Size_With_Padding (Alignment);
-- N_Addr N_Ptr Addr (from input)
-- | | |
-- V V V
-- +-------+---------------+----------------------+
-- |Padding| Header | Object |
-- +-------+---------------+----------------------+
-- ^ ^ ^
-- | +- Header_Size -+
-- | |
-- +- Header_And_Padding --+
-- Convert the bits preceding the object into a list header
N_Ptr := Address_To_FM_Node_Ptr (Addr - Header_Size);
-- Detach the object from the related finalization master. This
-- action does not need to know the prior context used during
-- allocation.
-- Synchronization:
-- Write - allocation, deallocation, finalization
Detach_Unprotected (N_Ptr);
-- Move the address from the object to the beginning of the list
-- header.
N_Addr := Addr - Header_And_Padding;
-- The size of the deallocated object must include the size of the
-- hidden list header.
N_Size := Storage_Size + Header_And_Padding;
Unlock_Task.all;
exception
when others =>
-- Unlock the task in case the computations performed above
-- fail for some reason.
Unlock_Task.all;
raise;
end;
else
N_Addr := Addr;
N_Size := Storage_Size;
end if;
-- Step 2: Deallocation
-- Dispatch to the proper implementation of Deallocate. This action
-- covers both Root_Storage_Pool and Root_Storage_Pool_With_Subpools
-- implementations.
Deallocate (Pool, N_Addr, N_Size, Alignment);
end Deallocate_Any_Controlled;
------------------------------
-- Default_Subpool_For_Pool --
------------------------------
function Default_Subpool_For_Pool
(Pool : in out Root_Storage_Pool_With_Subpools)
return not null Subpool_Handle
is
pragma Unreferenced (Pool);
begin
return raise Program_Error with
"default Default_Subpool_For_Pool called; must be overridden";
end Default_Subpool_For_Pool;
------------
-- Detach --
------------
procedure Detach (N : not null SP_Node_Ptr) is
begin
-- Ensure that the node is attached to some list
pragma Assert (N.Next /= null and then N.Prev /= null);
Lock_Task.all;
N.Prev.Next := N.Next;
N.Next.Prev := N.Prev;
N.Prev := null;
N.Next := null;
Unlock_Task.all;
-- Note: No need to unlock in case of an exception because the above
-- code can never raise one.
end Detach;
--------------
-- Finalize --
--------------
overriding procedure Finalize (Controller : in out Pool_Controller) is
begin
Finalize_Pool (Controller.Enclosing_Pool.all);
end Finalize;
-------------------
-- Finalize_Pool --
-------------------
procedure Finalize_Pool (Pool : in out Root_Storage_Pool_With_Subpools) is
Curr_Ptr : SP_Node_Ptr;
Ex_Occur : Exception_Occurrence;
Raised : Boolean := False;
function Is_Empty_List (L : not null SP_Node_Ptr) return Boolean;
-- Determine whether a list contains only one element, the dummy head
-------------------
-- Is_Empty_List --
-------------------
function Is_Empty_List (L : not null SP_Node_Ptr) return Boolean is
begin
return L.Next = L and then L.Prev = L;
end Is_Empty_List;
-- Start of processing for Finalize_Pool
begin
-- It is possible for multiple tasks to cause the finalization of a
-- common pool. Allow only one task to finalize the contents.
if Pool.Finalization_Started then
return;
end if;
-- Lock the pool to prevent the creation of additional subpools while
-- the available ones are finalized. The pool remains locked because
-- either it is about to be deallocated or the associated access type
-- is about to go out of scope.
Pool.Finalization_Started := True;
while not Is_Empty_List (Pool.Subpools'Unchecked_Access) loop
Curr_Ptr := Pool.Subpools.Next;
-- Perform the following actions:
-- 1) Finalize all objects chained on the subpool's master
-- 2) Remove the subpool from the owner's list of subpools
-- 3) Deallocate the doubly linked list node associated with the
-- subpool.
-- 4) Call Deallocate_Subpool
begin
Finalize_And_Deallocate (Curr_Ptr.Subpool);
exception
when Fin_Occur : others =>
if not Raised then
Raised := True;
Save_Occurrence (Ex_Occur, Fin_Occur);
end if;
end;
end loop;
-- If the finalization of a particular master failed, reraise the
-- exception now.
if Raised then
Reraise_Occurrence (Ex_Occur);
end if;
end Finalize_Pool;
------------------------------
-- Header_Size_With_Padding --
------------------------------
function Header_Size_With_Padding
(Alignment : System.Storage_Elements.Storage_Count)
return System.Storage_Elements.Storage_Count
is
Size : constant Storage_Count := Header_Size;
begin
if Size mod Alignment = 0 then
return Size;
-- Add enough padding to reach the nearest multiple of the alignment
-- rounding up.
else
return ((Size + Alignment - 1) / Alignment) * Alignment;
end if;
end Header_Size_With_Padding;
----------------
-- Initialize --
----------------
overriding procedure Initialize (Controller : in out Pool_Controller) is
begin
Initialize_Pool (Controller.Enclosing_Pool.all);
end Initialize;
---------------------
-- Initialize_Pool --
---------------------
procedure Initialize_Pool (Pool : in out Root_Storage_Pool_With_Subpools) is
begin
-- The dummy head must point to itself in both directions
Pool.Subpools.Next := Pool.Subpools'Unchecked_Access;
Pool.Subpools.Prev := Pool.Subpools'Unchecked_Access;
end Initialize_Pool;
---------------------
-- Pool_Of_Subpool --
---------------------
function Pool_Of_Subpool
(Subpool : not null Subpool_Handle)
return access Root_Storage_Pool_With_Subpools'Class
is
begin
return Subpool.Owner;
end Pool_Of_Subpool;
----------------
-- Print_Pool --
----------------
procedure Print_Pool (Pool : Root_Storage_Pool_With_Subpools) is
Head : constant SP_Node_Ptr := Pool.Subpools'Unrestricted_Access;
Head_Seen : Boolean := False;
SP_Ptr : SP_Node_Ptr;
begin
-- Output the contents of the pool
-- Pool : 0x123456789
-- Subpools : 0x123456789
-- Fin_Start : TRUE <or> FALSE
-- Controller: OK <or> NOK
Put ("Pool : ");
Put_Line (Address_Image (Pool'Address));
Put ("Subpools : ");
Put_Line (Address_Image (Pool.Subpools'Address));
Put ("Fin_Start : ");
Put_Line (Pool.Finalization_Started'Img);
Put ("Controlled: ");
if Pool.Controller.Enclosing_Pool = Pool'Unrestricted_Access then
Put_Line ("OK");
else
Put_Line ("NOK (ERROR)");
end if;
SP_Ptr := Head;
while SP_Ptr /= null loop -- Should never be null
Put_Line ("V");
-- We see the head initially; we want to exit when we see the head a
-- second time.
if SP_Ptr = Head then
exit when Head_Seen;
Head_Seen := True;
end if;
-- The current element is null. This should never happend since the
-- list is circular.
if SP_Ptr.Prev = null then
Put_Line ("null (ERROR)");
-- The current element points back to the correct element
elsif SP_Ptr.Prev.Next = SP_Ptr then
Put_Line ("^");
-- The current element points to an erroneous element
else
Put_Line ("? (ERROR)");
end if;
-- Output the contents of the node
Put ("|Header: ");
Put (Address_Image (SP_Ptr.all'Address));
if SP_Ptr = Head then
Put_Line (" (dummy head)");
else
Put_Line ("");
end if;
Put ("| Prev: ");
if SP_Ptr.Prev = null then
Put_Line ("null");
else
Put_Line (Address_Image (SP_Ptr.Prev.all'Address));
end if;
Put ("| Next: ");
if SP_Ptr.Next = null then
Put_Line ("null");
else
Put_Line (Address_Image (SP_Ptr.Next.all'Address));
end if;
Put ("| Subp: ");
if SP_Ptr.Subpool = null then
Put_Line ("null");
else
Put_Line (Address_Image (SP_Ptr.Subpool.all'Address));
end if;
SP_Ptr := SP_Ptr.Next;
end loop;
end Print_Pool;
-------------------
-- Print_Subpool --
-------------------
procedure Print_Subpool (Subpool : Subpool_Handle) is
begin
if Subpool = null then
Put_Line ("null");
return;
end if;
-- Output the contents of a subpool
-- Owner : 0x123456789
-- Master: 0x123456789
-- Node : 0x123456789
Put ("Owner : ");
if Subpool.Owner = null then
Put_Line ("null");
else
Put_Line (Address_Image (Subpool.Owner'Address));
end if;
Put ("Master: ");
Put_Line (Address_Image (Subpool.Master'Address));
Put ("Node : ");
if Subpool.Node = null then
Put ("null");
if Subpool.Owner = null then
Put_Line (" OK");
else
Put_Line (" (ERROR)");
end if;
else
Put_Line (Address_Image (Subpool.Node'Address));
end if;
Print_Master (Subpool.Master);
end Print_Subpool;
-------------------------
-- Set_Pool_Of_Subpool --
-------------------------
procedure Set_Pool_Of_Subpool
(Subpool : not null Subpool_Handle;
To : in out Root_Storage_Pool_With_Subpools'Class)
is
N_Ptr : SP_Node_Ptr;
begin
-- If the subpool is already owned, raise Program_Error. This is a
-- direct violation of the RM rules.
if Subpool.Owner /= null then
raise Program_Error with "subpool already belongs to a pool";
end if;
-- Prevent the creation of a new subpool while the owner is being
-- finalized. This is a serious error.
if To.Finalization_Started then
raise Program_Error
with "subpool creation after finalization started";
end if;
Subpool.Owner := To'Unchecked_Access;
-- Create a subpool node and decorate it. Since this node is not
-- allocated on the owner's pool, it must be explicitly destroyed by
-- Finalize_And_Detach.
N_Ptr := new SP_Node;
N_Ptr.Subpool := Subpool;
Subpool.Node := N_Ptr;
Attach (N_Ptr, To.Subpools'Unchecked_Access);
-- Mark the subpool's master as being a heterogeneous collection of
-- controlled objects.
Set_Is_Heterogeneous (Subpool.Master);
end Set_Pool_Of_Subpool;
end System.Storage_Pools.Subpools;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . W I D _ L L I --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
package body System.Wid_LLI is
-----------------------------
-- Width_Long_Long_Integer --
-----------------------------
function Width_Long_Long_Integer
(Lo, Hi : Long_Long_Integer)
return Natural
is
W : Natural;
T : Long_Long_Integer;
begin
if Lo > Hi then
return 0;
else
-- Minimum value is 2, one for sign, one for digit
W := 2;
-- Get max of absolute values, but avoid bomb if we have the maximum
-- negative number (note that First + 1 has same digits as First)
T := Long_Long_Integer'Max (
abs (Long_Long_Integer'Max (Lo, Long_Long_Integer'First + 1)),
abs (Long_Long_Integer'Max (Hi, Long_Long_Integer'First + 1)));
-- Increase value if more digits required
while T >= 10 loop
T := T / 10;
W := W + 1;
end loop;
return W;
end if;
end Width_Long_Long_Integer;
end System.Wid_LLI;
|
with Ada.Command_Line;
package body MyCommandLine is
-- note we do not want SPARK to analyse this implementation since
-- Ada.Command_Line is not able to be handled by the SPARK Prover
function Command_Name return String is
begin
return Ada.Command_Line.Command_Name;
end Command_Name;
function Argument_Count return Natural is
begin
return Ada.Command_Line.Argument_Count;
end Argument_Count;
function Argument(Number : in Positive) return String is
begin
return Ada.Command_Line.Argument(Number);
end Argument;
end MyCommandLine;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 0 7 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_07 is
subtype Bit_Order is System.Bit_Order;
Reverse_Bit_Order : constant Bit_Order :=
Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order));
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_07;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
------------
-- Get_07 --
------------
function Get_07
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_07
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end Get_07;
------------
-- Set_07 --
------------
procedure Set_07
(Arr : System.Address;
N : Natural;
E : Bits_07;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end Set_07;
end System.Pack_07;
|
-----------------------------------------------------------------------
-- AWA.Settings.Models -- AWA.Settings.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) 2020 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
pragma Warnings (Off);
with ADO.Sessions;
with ADO.Objects;
with ADO.Statements;
with ADO.SQL;
with ADO.Schemas;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Util.Beans.Objects;
with Util.Beans.Basic.Lists;
with AWA.Users.Models;
pragma Warnings (On);
package AWA.Settings.Models is
pragma Style_Checks ("-mr");
type Setting_Ref is new ADO.Objects.Object_Ref with null record;
type Global_Setting_Ref is new ADO.Objects.Object_Ref with null record;
type User_Setting_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- The setting table defines all the possible settings
-- that an application manages. This table is automatically
-- populated when an application starts. It is not modified.
-- --------------------
-- Create an object key for Setting.
function Setting_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Setting from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Setting_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Setting : constant Setting_Ref;
function "=" (Left, Right : Setting_Ref'Class) return Boolean;
-- Set the setting identifier.
procedure Set_Id (Object : in out Setting_Ref;
Value : in ADO.Identifier);
-- Get the setting identifier.
function Get_Id (Object : in Setting_Ref)
return ADO.Identifier;
-- Set the setting name.
procedure Set_Name (Object : in out Setting_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Setting_Ref;
Value : in String);
-- Get the setting name.
function Get_Name (Object : in Setting_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Setting_Ref)
return String;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Setting_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 Setting_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 Setting_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 Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Setting_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Setting_Ref);
-- Copy of the object.
procedure Copy (Object : in Setting_Ref;
Into : in out Setting_Ref);
package Setting_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Setting_Ref,
"=" => "=");
subtype Setting_Vector is Setting_Vectors.Vector;
procedure List (Object : in out Setting_Vector;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class);
-- --------------------
-- The global setting holds some generic
-- application configuration parameter
-- which can be stored in the database.
-- The global setting can be specific to a server.
-- --------------------
-- Create an object key for Global_Setting.
function Global_Setting_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Global_Setting from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Global_Setting_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Global_Setting : constant Global_Setting_Ref;
function "=" (Left, Right : Global_Setting_Ref'Class) return Boolean;
-- Set the global setting identifier.
procedure Set_Id (Object : in out Global_Setting_Ref;
Value : in ADO.Identifier);
-- Get the global setting identifier.
function Get_Id (Object : in Global_Setting_Ref)
return ADO.Identifier;
-- Set the global setting value.
procedure Set_Value (Object : in out Global_Setting_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Value (Object : in out Global_Setting_Ref;
Value : in String);
-- Get the global setting value.
function Get_Value (Object : in Global_Setting_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Value (Object : in Global_Setting_Ref)
return String;
-- Get the global setting optimistic lock version.
function Get_Version (Object : in Global_Setting_Ref)
return Integer;
-- Set the server to which this global setting applies.
procedure Set_Server_Id (Object : in out Global_Setting_Ref;
Value : in Integer);
-- Get the server to which this global setting applies.
function Get_Server_Id (Object : in Global_Setting_Ref)
return Integer;
-- Set the setting that corresponds to this global setting.
procedure Set_Setting (Object : in out Global_Setting_Ref;
Value : in AWA.Settings.Models.Setting_Ref'Class);
-- Get the setting that corresponds to this global setting.
function Get_Setting (Object : in Global_Setting_Ref)
return AWA.Settings.Models.Setting_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Global_Setting_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 Global_Setting_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 Global_Setting_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 Global_Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Global_Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Global_Setting_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
GLOBAL_SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Global_Setting_Ref);
-- Copy of the object.
procedure Copy (Object : in Global_Setting_Ref;
Into : in out Global_Setting_Ref);
package Global_Setting_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Global_Setting_Ref,
"=" => "=");
subtype Global_Setting_Vector is Global_Setting_Vectors.Vector;
procedure List (Object : in out Global_Setting_Vector;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class);
-- --------------------
-- The user setting holds the setting value for a given user.
-- It is created the first time a user changes the default
-- setting value. It is updated when the user modifies the setting.
-- --------------------
-- Create an object key for User_Setting.
function User_Setting_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for User_Setting from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function User_Setting_Key (Id : in String) return ADO.Objects.Object_Key;
Null_User_Setting : constant User_Setting_Ref;
function "=" (Left, Right : User_Setting_Ref'Class) return Boolean;
-- Set the user setting identifier.
procedure Set_Id (Object : in out User_Setting_Ref;
Value : in ADO.Identifier);
-- Get the user setting identifier.
function Get_Id (Object : in User_Setting_Ref)
return ADO.Identifier;
-- Set the setting value.
procedure Set_Value (Object : in out User_Setting_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Value (Object : in out User_Setting_Ref;
Value : in String);
-- Get the setting value.
function Get_Value (Object : in User_Setting_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Value (Object : in User_Setting_Ref)
return String;
-- Get the setting optimistic lock version.
function Get_Version (Object : in User_Setting_Ref)
return Integer;
-- Set the setting that correspond to the value.
procedure Set_Setting (Object : in out User_Setting_Ref;
Value : in AWA.Settings.Models.Setting_Ref'Class);
-- Get the setting that correspond to the value.
function Get_Setting (Object : in User_Setting_Ref)
return AWA.Settings.Models.Setting_Ref'Class;
-- Set the user to which the setting value is associated.
procedure Set_User (Object : in out User_Setting_Ref;
Value : in AWA.Users.Models.User_Ref'Class);
-- Get the user to which the setting value is associated.
function Get_User (Object : in User_Setting_Ref)
return AWA.Users.Models.User_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out User_Setting_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 User_Setting_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 User_Setting_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 User_Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out User_Setting_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in User_Setting_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
USER_SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out User_Setting_Ref);
-- Copy of the object.
procedure Copy (Object : in User_Setting_Ref;
Into : in out User_Setting_Ref);
private
SETTING_NAME : aliased constant String := "awa_setting";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "name";
SETTING_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 2,
Table => SETTING_NAME'Access,
Members => (
1 => COL_0_1_NAME'Access,
2 => COL_1_1_NAME'Access)
);
SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= SETTING_DEF'Access;
Null_Setting : constant Setting_Ref
:= Setting_Ref'(ADO.Objects.Object_Ref with null record);
type Setting_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => SETTING_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
end record;
type Setting_Access is access all Setting_Impl;
overriding
procedure Destroy (Object : access Setting_Impl);
overriding
procedure Find (Object : in out Setting_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Setting_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Setting_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Setting_Ref'Class;
Impl : out Setting_Access);
GLOBAL_SETTING_NAME : aliased constant String := "awa_global_setting";
COL_0_2_NAME : aliased constant String := "id";
COL_1_2_NAME : aliased constant String := "value";
COL_2_2_NAME : aliased constant String := "version";
COL_3_2_NAME : aliased constant String := "server_id";
COL_4_2_NAME : aliased constant String := "setting_id";
GLOBAL_SETTING_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 5,
Table => GLOBAL_SETTING_NAME'Access,
Members => (
1 => COL_0_2_NAME'Access,
2 => COL_1_2_NAME'Access,
3 => COL_2_2_NAME'Access,
4 => COL_3_2_NAME'Access,
5 => COL_4_2_NAME'Access)
);
GLOBAL_SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= GLOBAL_SETTING_DEF'Access;
Null_Global_Setting : constant Global_Setting_Ref
:= Global_Setting_Ref'(ADO.Objects.Object_Ref with null record);
type Global_Setting_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => GLOBAL_SETTING_DEF'Access)
with record
Value : Ada.Strings.Unbounded.Unbounded_String;
Version : Integer;
Server_Id : Integer;
Setting : AWA.Settings.Models.Setting_Ref;
end record;
type Global_Setting_Access is access all Global_Setting_Impl;
overriding
procedure Destroy (Object : access Global_Setting_Impl);
overriding
procedure Find (Object : in out Global_Setting_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Global_Setting_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Global_Setting_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Global_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Global_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Global_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Global_Setting_Ref'Class;
Impl : out Global_Setting_Access);
USER_SETTING_NAME : aliased constant String := "awa_user_setting";
COL_0_3_NAME : aliased constant String := "id";
COL_1_3_NAME : aliased constant String := "value";
COL_2_3_NAME : aliased constant String := "version";
COL_3_3_NAME : aliased constant String := "setting_id";
COL_4_3_NAME : aliased constant String := "user_id";
USER_SETTING_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 5,
Table => USER_SETTING_NAME'Access,
Members => (
1 => COL_0_3_NAME'Access,
2 => COL_1_3_NAME'Access,
3 => COL_2_3_NAME'Access,
4 => COL_3_3_NAME'Access,
5 => COL_4_3_NAME'Access)
);
USER_SETTING_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= USER_SETTING_DEF'Access;
Null_User_Setting : constant User_Setting_Ref
:= User_Setting_Ref'(ADO.Objects.Object_Ref with null record);
type User_Setting_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => USER_SETTING_DEF'Access)
with record
Value : Ada.Strings.Unbounded.Unbounded_String;
Version : Integer;
Setting : AWA.Settings.Models.Setting_Ref;
User : AWA.Users.Models.User_Ref;
end record;
type User_Setting_Access is access all User_Setting_Impl;
overriding
procedure Destroy (Object : access User_Setting_Impl);
overriding
procedure Find (Object : in out User_Setting_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out User_Setting_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out User_Setting_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out User_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out User_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out User_Setting_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out User_Setting_Ref'Class;
Impl : out User_Setting_Access);
end AWA.Settings.Models;
|
-- Copyright 2012-2016 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
SA : Simple_Array := (1, 2, 3, 4);
begin
Update_Small (SA (3)); -- STOP
end Foo;
|
package openGL.Model.billboard
--
-- Models a rectangle capable of displaying an image.
--
is
type Item is abstract new Model.item with private;
type Plane is (xy, xz, yz);
type Size_t is
record
Width : Real;
Height : Real;
end record;
type Coordinates is array (1 .. 4) of Coordinate_2D;
---------
--- Forge
--
default_Size : constant Size_t;
procedure define (Self : out Item; Size : Size_t := default_Size);
--------------
--- Attributes
--
function Size (Self : in Item) return Size_t;
function Width (Self : in Item) return Real;
function Height (Self : in Item) return Real;
private
type Item is abstract new Model.item with
record
Plane : billboard.Plane := xy;
Size : Size_t;
end record;
subtype site_Id is Index_t range 1 .. 4;
subtype Sites is Vector_3_array (site_Id'Range);
function vertex_Sites (for_Plane : in Plane;
Width, Height : in Real) return Sites;
Normal : constant Vector_3 := (0.0, 0.0, 1.0);
default_Size : constant Size_t := (Width => 1.0,
Height => 1.0);
end openGL.Model.billboard;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- P R J . P R O C --
-- --
-- B o d y --
-- --
-- Copyright (C) 2001-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. --
-- --
------------------------------------------------------------------------------
with Atree; use Atree;
with Err_Vars; use Err_Vars;
with Opt; use Opt;
with Osint; use Osint;
with Output; use Output;
with Prj.Attr; use Prj.Attr;
with Prj.Env;
with Prj.Err; use Prj.Err;
with Prj.Ext; use Prj.Ext;
with Prj.Nmsc; use Prj.Nmsc;
with Prj.Part;
with Prj.Util;
with Snames;
with Ada.Containers.Vectors;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with GNAT.Case_Util; use GNAT.Case_Util;
with GNAT.HTable;
package body Prj.Proc is
package Processed_Projects is new GNAT.HTable.Simple_HTable
(Header_Num => Header_Num,
Element => Project_Id,
No_Element => No_Project,
Key => Name_Id,
Hash => Hash,
Equal => "=");
-- This hash table contains all processed projects
package Unit_Htable is new GNAT.HTable.Simple_HTable
(Header_Num => Header_Num,
Element => Source_Id,
No_Element => No_Source,
Key => Name_Id,
Hash => Hash,
Equal => "=");
-- This hash table contains all processed projects
package Runtime_Defaults is new GNAT.HTable.Simple_HTable
(Header_Num => Prj.Header_Num,
Element => Name_Id,
No_Element => No_Name,
Key => Name_Id,
Hash => Prj.Hash,
Equal => "=");
-- Stores the default values of 'Runtime names for the various languages
package Name_Ids is new Ada.Containers.Vectors (Positive, Name_Id);
procedure Add (To_Exp : in out Name_Id; Str : Name_Id);
-- Concatenate two strings and returns another string if both
-- arguments are not null string.
-- In the following procedures, we are expected to guess the meaning of
-- the parameters from their names, this is never a good idea, comments
-- should be added precisely defining every formal ???
procedure Add_Attributes
(Project : Project_Id;
Project_Name : Name_Id;
Project_Dir : Name_Id;
Shared : Shared_Project_Tree_Data_Access;
Decl : in out Declarations;
First : Attribute_Node_Id;
Project_Level : Boolean);
-- Add all attributes, starting with First, with their default values to
-- the package or project with declarations Decl.
procedure Check
(In_Tree : Project_Tree_Ref;
Project : Project_Id;
Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
Flags : Processing_Flags);
-- Set all projects to not checked, then call Recursive_Check for the
-- main project Project. Project is set to No_Project if errors occurred.
-- Current_Dir is for optimization purposes, avoiding extra system calls.
-- If Allow_Duplicate_Basenames, then files with the same base names are
-- authorized within a project for source-based languages (never for unit
-- based languages)
procedure Copy_Package_Declarations
(From : Declarations;
To : in out Declarations;
New_Loc : Source_Ptr;
Restricted : Boolean;
Shared : Shared_Project_Tree_Data_Access);
-- Copy a package declaration From to To for a renamed package. Change the
-- locations of all the attributes to New_Loc. When Restricted is
-- True, do not copy attributes Body, Spec, Implementation, Specification
-- and Linker_Options.
function Expression
(Project : Project_Id;
Shared : Shared_Project_Tree_Data_Access;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : Prj.Tree.Environment;
Pkg : Package_Id;
First_Term : Project_Node_Id;
Kind : Variable_Kind) return Variable_Value;
-- From N_Expression project node From_Project_Node, compute the value
-- of an expression and return it as a Variable_Value.
function Imported_Or_Extended_Project_From
(Project : Project_Id;
With_Name : Name_Id;
No_Extending : Boolean := False) return Project_Id;
-- Find an imported or extended project of Project whose name is With_Name.
-- When No_Extending is True, do not look for extending projects, returns
-- the exact project whose name is With_Name.
function Package_From
(Project : Project_Id;
Shared : Shared_Project_Tree_Data_Access;
With_Name : Name_Id) return Package_Id;
-- Find the package of Project whose name is With_Name
procedure Process_Declarative_Items
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
From_Project_Node : Project_Node_Id;
Node_Tree : Project_Node_Tree_Ref;
Env : Prj.Tree.Environment;
Pkg : Package_Id;
Item : Project_Node_Id;
Child_Env : in out Prj.Tree.Environment);
-- Process declarative items starting with From_Project_Node, and put them
-- in declarations Decl. This is a recursive procedure; it calls itself for
-- a package declaration or a case construction.
--
-- Child_Env is the modified environment after seeing declarations like
-- "for External(...) use" or "for Project_Path use" in aggregate projects.
-- It should have been initialized first.
procedure Recursive_Process
(In_Tree : Project_Tree_Ref;
Project : out Project_Id;
Packages_To_Check : String_List_Access;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : in out Prj.Tree.Environment;
Extended_By : Project_Id;
From_Encapsulated_Lib : Boolean;
On_New_Tree_Loaded : Tree_Loaded_Callback := null);
-- Process project with node From_Project_Node in the tree. Do nothing if
-- From_Project_Node is Empty_Node. If project has already been processed,
-- simply return its project id. Otherwise create a new project id, mark it
-- as processed, call itself recursively for all imported projects and a
-- extended project, if any. Then process the declarative items of the
-- project.
--
-- Is_Root_Project should be true only for the project that the user
-- explicitly loaded. In the context of aggregate projects, only that
-- project is allowed to modify the environment that will be used to load
-- projects (Child_Env).
--
-- From_Encapsulated_Lib is true if we are parsing a project from
-- encapsulated library dependencies.
--
-- If specified, On_New_Tree_Loaded is called after each aggregated project
-- has been processed succesfully.
function Get_Attribute_Index
(Tree : Project_Node_Tree_Ref;
Attr : Project_Node_Id;
Index : Name_Id) return Name_Id;
-- Copy the index of the attribute into Name_Buffer, converting to lower
-- case if the attribute is case-insensitive.
---------
-- Add --
---------
procedure Add (To_Exp : in out Name_Id; Str : Name_Id) is
begin
if To_Exp = No_Name or else To_Exp = Empty_String then
-- To_Exp is nil or empty. The result is Str
To_Exp := Str;
-- If Str is nil, then do not change To_Ext
elsif Str /= No_Name and then Str /= Empty_String then
declare
S : constant String := Get_Name_String (Str);
begin
Get_Name_String (To_Exp);
Add_Str_To_Name_Buffer (S);
To_Exp := Name_Find;
end;
end if;
end Add;
--------------------
-- Add_Attributes --
--------------------
procedure Add_Attributes
(Project : Project_Id;
Project_Name : Name_Id;
Project_Dir : Name_Id;
Shared : Shared_Project_Tree_Data_Access;
Decl : in out Declarations;
First : Attribute_Node_Id;
Project_Level : Boolean)
is
The_Attribute : Attribute_Node_Id := First;
begin
while The_Attribute /= Empty_Attribute loop
if Attribute_Kind_Of (The_Attribute) = Single then
declare
New_Attribute : Variable_Value;
begin
case Variable_Kind_Of (The_Attribute) is
-- Undefined should not happen
when Undefined =>
pragma Assert
(False, "attribute with an undefined kind");
raise Program_Error;
-- Single attributes have a default value of empty string
when Single =>
New_Attribute :=
(Project => Project,
Kind => Single,
Location => No_Location,
Default => True,
Value => Empty_String,
Index => 0);
-- Special cases of <project>'Name and
-- <project>'Project_Dir.
if Project_Level then
if Attribute_Name_Of (The_Attribute) =
Snames.Name_Name
then
New_Attribute.Value := Project_Name;
elsif Attribute_Name_Of (The_Attribute) =
Snames.Name_Project_Dir
then
New_Attribute.Value := Project_Dir;
end if;
end if;
-- List attributes have a default value of nil list
when List =>
New_Attribute :=
(Project => Project,
Kind => List,
Location => No_Location,
Default => True,
Values => Nil_String);
end case;
Variable_Element_Table.Increment_Last
(Shared.Variable_Elements);
Shared.Variable_Elements.Table
(Variable_Element_Table.Last (Shared.Variable_Elements)) :=
(Next => Decl.Attributes,
Name => Attribute_Name_Of (The_Attribute),
Value => New_Attribute);
Decl.Attributes :=
Variable_Element_Table.Last
(Shared.Variable_Elements);
end;
end if;
The_Attribute := Next_Attribute (After => The_Attribute);
end loop;
end Add_Attributes;
-----------
-- Check --
-----------
procedure Check
(In_Tree : Project_Tree_Ref;
Project : Project_Id;
Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
Flags : Processing_Flags)
is
begin
Process_Naming_Scheme (In_Tree, Project, Node_Tree, Flags);
-- Set the Other_Part field for the units
declare
Source1 : Source_Id;
Name : Name_Id;
Source2 : Source_Id;
Iter : Source_Iterator;
begin
Unit_Htable.Reset;
Iter := For_Each_Source (In_Tree);
loop
Source1 := Prj.Element (Iter);
exit when Source1 = No_Source;
if Source1.Unit /= No_Unit_Index then
Name := Source1.Unit.Name;
Source2 := Unit_Htable.Get (Name);
if Source2 = No_Source then
Unit_Htable.Set (K => Name, E => Source1);
else
Unit_Htable.Remove (Name);
end if;
end if;
Next (Iter);
end loop;
end;
end Check;
-------------------------------
-- Copy_Package_Declarations --
-------------------------------
procedure Copy_Package_Declarations
(From : Declarations;
To : in out Declarations;
New_Loc : Source_Ptr;
Restricted : Boolean;
Shared : Shared_Project_Tree_Data_Access)
is
V1 : Variable_Id;
V2 : Variable_Id := No_Variable;
Var : Variable;
A1 : Array_Id;
A2 : Array_Id := No_Array;
Arr : Array_Data;
E1 : Array_Element_Id;
E2 : Array_Element_Id := No_Array_Element;
Elm : Array_Element;
begin
-- To avoid references in error messages to attribute declarations in
-- an original package that has been renamed, copy all the attribute
-- declarations of the package and change all locations to New_Loc,
-- the location of the renamed package.
-- First single attributes
V1 := From.Attributes;
while V1 /= No_Variable loop
-- Copy the attribute
Var := Shared.Variable_Elements.Table (V1);
V1 := Var.Next;
-- Do not copy the value of attribute Linker_Options if Restricted
if Restricted and then Var.Name = Snames.Name_Linker_Options then
Var.Value.Values := Nil_String;
end if;
-- Remove the Next component
Var.Next := No_Variable;
-- Change the location to New_Loc
Var.Value.Location := New_Loc;
Variable_Element_Table.Increment_Last (Shared.Variable_Elements);
-- Put in new declaration
if To.Attributes = No_Variable then
To.Attributes :=
Variable_Element_Table.Last (Shared.Variable_Elements);
else
Shared.Variable_Elements.Table (V2).Next :=
Variable_Element_Table.Last (Shared.Variable_Elements);
end if;
V2 := Variable_Element_Table.Last (Shared.Variable_Elements);
Shared.Variable_Elements.Table (V2) := Var;
end loop;
-- Then the associated array attributes
A1 := From.Arrays;
while A1 /= No_Array loop
Arr := Shared.Arrays.Table (A1);
A1 := Arr.Next;
-- Remove the Next component
Arr.Next := No_Array;
Array_Table.Increment_Last (Shared.Arrays);
-- Create new Array declaration
if To.Arrays = No_Array then
To.Arrays := Array_Table.Last (Shared.Arrays);
else
Shared.Arrays.Table (A2).Next :=
Array_Table.Last (Shared.Arrays);
end if;
A2 := Array_Table.Last (Shared.Arrays);
-- Don't store the array as its first element has not been set yet
-- Copy the array elements of the array
E1 := Arr.Value;
Arr.Value := No_Array_Element;
while E1 /= No_Array_Element loop
-- Copy the array element
Elm := Shared.Array_Elements.Table (E1);
E1 := Elm.Next;
-- Remove the Next component
Elm.Next := No_Array_Element;
Elm.Restricted := Restricted;
-- Change the location
Elm.Value.Location := New_Loc;
Array_Element_Table.Increment_Last (Shared.Array_Elements);
-- Create new array element
if Arr.Value = No_Array_Element then
Arr.Value := Array_Element_Table.Last (Shared.Array_Elements);
else
Shared.Array_Elements.Table (E2).Next :=
Array_Element_Table.Last (Shared.Array_Elements);
end if;
E2 := Array_Element_Table.Last (Shared.Array_Elements);
Shared.Array_Elements.Table (E2) := Elm;
end loop;
-- Finally, store the new array
Shared.Arrays.Table (A2) := Arr;
end loop;
end Copy_Package_Declarations;
-------------------------
-- Get_Attribute_Index --
-------------------------
function Get_Attribute_Index
(Tree : Project_Node_Tree_Ref;
Attr : Project_Node_Id;
Index : Name_Id) return Name_Id
is
begin
if Index = All_Other_Names
or else not Case_Insensitive (Attr, Tree)
then
return Index;
end if;
Get_Name_String (Index);
To_Lower (Name_Buffer (1 .. Name_Len));
return Name_Find;
end Get_Attribute_Index;
----------------
-- Expression --
----------------
function Expression
(Project : Project_Id;
Shared : Shared_Project_Tree_Data_Access;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : Prj.Tree.Environment;
Pkg : Package_Id;
First_Term : Project_Node_Id;
Kind : Variable_Kind) return Variable_Value
is
The_Term : Project_Node_Id;
-- The term in the expression list
The_Current_Term : Project_Node_Id := Empty_Node;
-- The current term node id
Result : Variable_Value (Kind => Kind);
-- The returned result
Last : String_List_Id := Nil_String;
-- Reference to the last string elements in Result, when Kind is List
Current_Term_Kind : Project_Node_Kind;
begin
Result.Project := Project;
Result.Location := Location_Of (First_Term, From_Project_Node_Tree);
-- Process each term of the expression, starting with First_Term
The_Term := First_Term;
while Present (The_Term) loop
The_Current_Term := Current_Term (The_Term, From_Project_Node_Tree);
if The_Current_Term /= Empty_Node then
Current_Term_Kind :=
Kind_Of (The_Current_Term, From_Project_Node_Tree);
case Current_Term_Kind is
when N_Literal_String =>
case Kind is
when Undefined =>
-- Should never happen
pragma Assert (False, "Undefined expression kind");
raise Program_Error;
when Single =>
Add (Result.Value,
String_Value_Of
(The_Current_Term, From_Project_Node_Tree));
Result.Index :=
Source_Index_Of
(The_Current_Term, From_Project_Node_Tree);
when List =>
String_Element_Table.Increment_Last
(Shared.String_Elements);
if Last = Nil_String then
-- This can happen in an expression like () & "toto"
Result.Values := String_Element_Table.Last
(Shared.String_Elements);
else
Shared.String_Elements.Table
(Last).Next := String_Element_Table.Last
(Shared.String_Elements);
end if;
Last := String_Element_Table.Last
(Shared.String_Elements);
Shared.String_Elements.Table (Last) :=
(Value => String_Value_Of
(The_Current_Term,
From_Project_Node_Tree),
Index => Source_Index_Of
(The_Current_Term,
From_Project_Node_Tree),
Display_Value => No_Name,
Location => Location_Of
(The_Current_Term,
From_Project_Node_Tree),
Flag => False,
Next => Nil_String);
end case;
when N_Literal_String_List =>
declare
String_Node : Project_Node_Id :=
First_Expression_In_List
(The_Current_Term,
From_Project_Node_Tree);
Value : Variable_Value;
begin
if Present (String_Node) then
-- If String_Node is nil, it is an empty list, there is
-- nothing to do.
Value := Expression
(Project => Project,
Shared => Shared,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Pkg => Pkg,
First_Term =>
Tree.First_Term
(String_Node, From_Project_Node_Tree),
Kind => Single);
String_Element_Table.Increment_Last
(Shared.String_Elements);
if Result.Values = Nil_String then
-- This literal string list is the first term in a
-- string list expression
Result.Values :=
String_Element_Table.Last
(Shared.String_Elements);
else
Shared.String_Elements.Table (Last).Next :=
String_Element_Table.Last (Shared.String_Elements);
end if;
Last :=
String_Element_Table.Last (Shared.String_Elements);
Shared.String_Elements.Table (Last) :=
(Value => Value.Value,
Display_Value => No_Name,
Location => Value.Location,
Flag => False,
Next => Nil_String,
Index => Value.Index);
loop
-- Add the other element of the literal string list
-- one after the other.
String_Node :=
Next_Expression_In_List
(String_Node, From_Project_Node_Tree);
exit when No (String_Node);
Value :=
Expression
(Project => Project,
Shared => Shared,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Pkg => Pkg,
First_Term =>
Tree.First_Term
(String_Node, From_Project_Node_Tree),
Kind => Single);
String_Element_Table.Increment_Last
(Shared.String_Elements);
Shared.String_Elements.Table (Last).Next :=
String_Element_Table.Last (Shared.String_Elements);
Last := String_Element_Table.Last
(Shared.String_Elements);
Shared.String_Elements.Table (Last) :=
(Value => Value.Value,
Display_Value => No_Name,
Location => Value.Location,
Flag => False,
Next => Nil_String,
Index => Value.Index);
end loop;
end if;
end;
when N_Attribute_Reference
| N_Variable_Reference
=>
declare
The_Project : Project_Id := Project;
The_Package : Package_Id := Pkg;
The_Name : Name_Id := No_Name;
The_Variable_Id : Variable_Id := No_Variable;
The_Variable : Variable_Value;
Term_Project : constant Project_Node_Id :=
Project_Node_Of
(The_Current_Term,
From_Project_Node_Tree);
Term_Package : constant Project_Node_Id :=
Package_Node_Of
(The_Current_Term,
From_Project_Node_Tree);
Index : Name_Id := No_Name;
begin
<<Object_Dir_Restart>>
The_Project := Project;
The_Package := Pkg;
The_Name := No_Name;
The_Variable_Id := No_Variable;
Index := No_Name;
if Present (Term_Project)
and then Term_Project /= From_Project_Node
then
-- This variable or attribute comes from another project
The_Name :=
Name_Of (Term_Project, From_Project_Node_Tree);
The_Project := Imported_Or_Extended_Project_From
(Project => Project,
With_Name => The_Name,
No_Extending => True);
end if;
if Present (Term_Package) then
-- This is an attribute of a package
The_Name :=
Name_Of (Term_Package, From_Project_Node_Tree);
The_Package := The_Project.Decl.Packages;
while The_Package /= No_Package
and then Shared.Packages.Table (The_Package).Name /=
The_Name
loop
The_Package :=
Shared.Packages.Table (The_Package).Next;
end loop;
pragma Assert
(The_Package /= No_Package, "package not found.");
elsif Kind_Of (The_Current_Term, From_Project_Node_Tree) =
N_Attribute_Reference
then
The_Package := No_Package;
end if;
The_Name :=
Name_Of (The_Current_Term, From_Project_Node_Tree);
if Current_Term_Kind = N_Attribute_Reference then
Index :=
Associative_Array_Index_Of
(The_Current_Term, From_Project_Node_Tree);
end if;
-- If it is not an associative array attribute
if Index = No_Name then
-- It is not an associative array attribute
if The_Package /= No_Package then
-- First, if there is a package, look into the package
if Current_Term_Kind = N_Variable_Reference then
The_Variable_Id :=
Shared.Packages.Table
(The_Package).Decl.Variables;
else
The_Variable_Id :=
Shared.Packages.Table
(The_Package).Decl.Attributes;
end if;
while The_Variable_Id /= No_Variable
and then Shared.Variable_Elements.Table
(The_Variable_Id).Name /= The_Name
loop
The_Variable_Id :=
Shared.Variable_Elements.Table
(The_Variable_Id).Next;
end loop;
end if;
if The_Variable_Id = No_Variable then
-- If we have not found it, look into the project
if Current_Term_Kind = N_Variable_Reference then
The_Variable_Id := The_Project.Decl.Variables;
else
The_Variable_Id := The_Project.Decl.Attributes;
end if;
while The_Variable_Id /= No_Variable
and then Shared.Variable_Elements.Table
(The_Variable_Id).Name /= The_Name
loop
The_Variable_Id :=
Shared.Variable_Elements.Table
(The_Variable_Id).Next;
end loop;
end if;
if From_Project_Node_Tree.Incomplete_With then
if The_Variable_Id = No_Variable then
The_Variable := Nil_Variable_Value;
else
The_Variable :=
Shared.Variable_Elements.Table
(The_Variable_Id).Value;
end if;
else
pragma Assert (The_Variable_Id /= No_Variable,
"variable or attribute not found");
The_Variable :=
Shared.Variable_Elements.Table
(The_Variable_Id).Value;
end if;
else
-- It is an associative array attribute
declare
The_Array : Array_Id := No_Array;
The_Element : Array_Element_Id := No_Array_Element;
Array_Index : Name_Id := No_Name;
begin
if The_Package /= No_Package then
The_Array :=
Shared.Packages.Table (The_Package).Decl.Arrays;
else
The_Array := The_Project.Decl.Arrays;
end if;
while The_Array /= No_Array
and then Shared.Arrays.Table (The_Array).Name /=
The_Name
loop
The_Array := Shared.Arrays.Table (The_Array).Next;
end loop;
if The_Array /= No_Array then
The_Element :=
Shared.Arrays.Table (The_Array).Value;
Array_Index :=
Get_Attribute_Index
(From_Project_Node_Tree,
The_Current_Term,
Index);
while The_Element /= No_Array_Element
and then Shared.Array_Elements.Table
(The_Element).Index /= Array_Index
loop
The_Element :=
Shared.Array_Elements.Table (The_Element).Next;
end loop;
end if;
if The_Element /= No_Array_Element then
The_Variable :=
Shared.Array_Elements.Table (The_Element).Value;
else
if Expression_Kind_Of
(The_Current_Term, From_Project_Node_Tree) =
List
then
The_Variable :=
(Project => Project,
Kind => List,
Location => No_Location,
Default => True,
Values => Nil_String);
else
The_Variable :=
(Project => Project,
Kind => Single,
Location => No_Location,
Default => True,
Value => Empty_String,
Index => 0);
end if;
end if;
end;
end if;
-- Check the defaults
if Current_Term_Kind = N_Attribute_Reference then
declare
The_Default : constant Attribute_Default_Value :=
Default_Of
(The_Current_Term, From_Project_Node_Tree);
begin
-- Check the special value for 'Target when specified
if The_Default = Target_Value
and then Opt.Target_Origin = Specified
then
Name_Len := 0;
Add_Str_To_Name_Buffer (Opt.Target_Value.all);
The_Variable.Value := Name_Find;
-- Check the defaults
elsif The_Variable.Default then
case The_Variable.Kind is
when Undefined =>
null;
when Single =>
case The_Default is
when Read_Only_Value =>
null;
when Empty_Value =>
The_Variable.Value := Empty_String;
when Dot_Value =>
The_Variable.Value := Dot_String;
when Object_Dir_Value =>
From_Project_Node_Tree.Project_Nodes.Table
(The_Current_Term).Name :=
Snames.Name_Object_Dir;
From_Project_Node_Tree.Project_Nodes.Table
(The_Current_Term).Default :=
Dot_Value;
goto Object_Dir_Restart;
when Target_Value =>
if Opt.Target_Value = null then
The_Variable.Value := Empty_String;
else
Name_Len := 0;
Add_Str_To_Name_Buffer
(Opt.Target_Value.all);
The_Variable.Value := Name_Find;
end if;
when Runtime_Value =>
Get_Name_String (Index);
To_Lower (Name_Buffer (1 .. Name_Len));
The_Variable.Value :=
Runtime_Defaults.Get (Name_Find);
if The_Variable.Value = No_Name then
The_Variable.Value := Empty_String;
end if;
end case;
when List =>
case The_Default is
when Read_Only_Value =>
null;
when Empty_Value =>
The_Variable.Values := Nil_String;
when Dot_Value =>
The_Variable.Values :=
Shared.Dot_String_List;
when Object_Dir_Value
| Runtime_Value
| Target_Value
=>
null;
end case;
end case;
end if;
end;
end if;
case Kind is
when Undefined =>
-- Should never happen
pragma Assert (False, "undefined expression kind");
null;
when Single =>
case The_Variable.Kind is
when Undefined =>
null;
when Single =>
Add (Result.Value, The_Variable.Value);
when List =>
-- Should never happen
pragma Assert
(False,
"list cannot appear in single " &
"string expression");
null;
end case;
when List =>
case The_Variable.Kind is
when Undefined =>
null;
when Single =>
String_Element_Table.Increment_Last
(Shared.String_Elements);
if Last = Nil_String then
-- This can happen in an expression such as
-- () & Var
Result.Values :=
String_Element_Table.Last
(Shared.String_Elements);
else
Shared.String_Elements.Table (Last).Next :=
String_Element_Table.Last
(Shared.String_Elements);
end if;
Last :=
String_Element_Table.Last
(Shared.String_Elements);
Shared.String_Elements.Table (Last) :=
(Value => The_Variable.Value,
Display_Value => No_Name,
Location => Location_Of
(The_Current_Term,
From_Project_Node_Tree),
Flag => False,
Next => Nil_String,
Index => 0);
when List =>
declare
The_List : String_List_Id :=
The_Variable.Values;
begin
while The_List /= Nil_String loop
String_Element_Table.Increment_Last
(Shared.String_Elements);
if Last = Nil_String then
Result.Values :=
String_Element_Table.Last
(Shared.String_Elements);
else
Shared.
String_Elements.Table (Last).Next :=
String_Element_Table.Last
(Shared.String_Elements);
end if;
Last :=
String_Element_Table.Last
(Shared.String_Elements);
Shared.String_Elements.Table
(Last) :=
(Value =>
Shared.String_Elements.Table
(The_List).Value,
Display_Value => No_Name,
Location =>
Location_Of
(The_Current_Term,
From_Project_Node_Tree),
Flag => False,
Next => Nil_String,
Index => 0);
The_List := Shared.String_Elements.Table
(The_List).Next;
end loop;
end;
end case;
end case;
end;
when N_External_Value =>
Get_Name_String
(String_Value_Of
(External_Reference_Of
(The_Current_Term, From_Project_Node_Tree),
From_Project_Node_Tree));
declare
Name : constant Name_Id := Name_Find;
Default : Name_Id := No_Name;
Value : Name_Id := No_Name;
Ext_List : Boolean := False;
Str_List : String_List_Access := null;
Def_Var : Variable_Value;
Default_Node : constant Project_Node_Id :=
External_Default_Of
(The_Current_Term,
From_Project_Node_Tree);
begin
-- If there is a default value for the external reference,
-- get its value.
if Present (Default_Node) then
Def_Var := Expression
(Project => Project,
Shared => Shared,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Pkg => Pkg,
First_Term =>
Tree.First_Term
(Default_Node, From_Project_Node_Tree),
Kind => Single);
if Def_Var /= Nil_Variable_Value then
Default := Def_Var.Value;
end if;
end if;
Ext_List := Expression_Kind_Of
(The_Current_Term,
From_Project_Node_Tree) = List;
if Ext_List then
Value := Prj.Ext.Value_Of (Env.External, Name, No_Name);
if Value /= No_Name then
declare
Sep : constant String :=
Get_Name_String (Default);
First : Positive := 1;
Lst : Natural;
Done : Boolean := False;
Nmb : Natural;
begin
Get_Name_String (Value);
if Name_Len = 0
or else Sep'Length = 0
or else Name_Buffer (1 .. Name_Len) = Sep
then
Done := True;
end if;
if not Done and then Name_Len < Sep'Length then
Str_List :=
new String_List'
(1 => new String'
(Name_Buffer (1 .. Name_Len)));
Done := True;
end if;
if not Done then
if Name_Buffer (1 .. Sep'Length) = Sep then
First := Sep'Length + 1;
end if;
if Name_Len - First + 1 >= Sep'Length
and then
Name_Buffer (Name_Len - Sep'Length + 1 ..
Name_Len) = Sep
then
Name_Len := Name_Len - Sep'Length;
end if;
if Name_Len = 0 then
Str_List :=
new String_List'(1 => new String'(""));
Done := True;
end if;
end if;
if not Done then
-- Count the number of strings
declare
Saved : constant Positive := First;
begin
Nmb := 1;
loop
Lst :=
Index
(Source =>
Name_Buffer (First .. Name_Len),
Pattern => Sep);
exit when Lst = 0;
Nmb := Nmb + 1;
First := Lst + Sep'Length;
end loop;
First := Saved;
end;
Str_List := new String_List (1 .. Nmb);
-- Populate the string list
Nmb := 1;
loop
Lst :=
Index
(Source =>
Name_Buffer (First .. Name_Len),
Pattern => Sep);
if Lst = 0 then
Str_List (Nmb) :=
new String'
(Name_Buffer (First .. Name_Len));
exit;
else
Str_List (Nmb) :=
new String'
(Name_Buffer (First .. Lst - 1));
Nmb := Nmb + 1;
First := Lst + Sep'Length;
end if;
end loop;
end if;
end;
end if;
else
-- Get the value
Value := Prj.Ext.Value_Of (Env.External, Name, Default);
if Value = No_Name then
if not Quiet_Output then
Error_Msg
(Env.Flags, "?undefined external reference",
Location_Of
(The_Current_Term, From_Project_Node_Tree),
Project);
end if;
Value := Empty_String;
end if;
end if;
case Kind is
when Undefined =>
null;
when Single =>
if Ext_List then
null; -- error
else
Add (Result.Value, Value);
end if;
when List =>
if not Ext_List or else Str_List /= null then
String_Element_Table.Increment_Last
(Shared.String_Elements);
if Last = Nil_String then
Result.Values :=
String_Element_Table.Last
(Shared.String_Elements);
else
Shared.String_Elements.Table (Last).Next
:= String_Element_Table.Last
(Shared.String_Elements);
end if;
Last := String_Element_Table.Last
(Shared.String_Elements);
if Ext_List then
for Ind in Str_List'Range loop
Name_Len := 0;
Add_Str_To_Name_Buffer (Str_List (Ind).all);
Value := Name_Find;
Shared.String_Elements.Table (Last) :=
(Value => Value,
Display_Value => No_Name,
Location =>
Location_Of
(The_Current_Term,
From_Project_Node_Tree),
Flag => False,
Next => Nil_String,
Index => 0);
if Ind /= Str_List'Last then
String_Element_Table.Increment_Last
(Shared.String_Elements);
Shared.String_Elements.Table (Last).Next :=
String_Element_Table.Last
(Shared.String_Elements);
Last := String_Element_Table.Last
(Shared.String_Elements);
end if;
end loop;
else
Shared.String_Elements.Table (Last) :=
(Value => Value,
Display_Value => No_Name,
Location =>
Location_Of
(The_Current_Term,
From_Project_Node_Tree),
Flag => False,
Next => Nil_String,
Index => 0);
end if;
end if;
end case;
end;
when others =>
-- Should never happen
pragma Assert
(False,
"illegal node kind in an expression");
raise Program_Error;
end case;
end if;
The_Term := Next_Term (The_Term, From_Project_Node_Tree);
end loop;
return Result;
end Expression;
---------------------------------------
-- Imported_Or_Extended_Project_From --
---------------------------------------
function Imported_Or_Extended_Project_From
(Project : Project_Id;
With_Name : Name_Id;
No_Extending : Boolean := False) return Project_Id
is
List : Project_List;
Result : Project_Id;
Temp_Result : Project_Id;
begin
-- First check if it is the name of an extended project
Result := Project.Extends;
while Result /= No_Project loop
if Result.Name = With_Name then
return Result;
else
Result := Result.Extends;
end if;
end loop;
-- Then check the name of each imported project
Temp_Result := No_Project;
List := Project.Imported_Projects;
while List /= null loop
Result := List.Project;
-- If the project is directly imported, then returns its ID
if Result.Name = With_Name then
return Result;
end if;
-- If a project extending the project is imported, then keep this
-- extending project as a possibility. It will be the returned ID
-- if the project is not imported directly.
declare
Proj : Project_Id;
begin
Proj := Result.Extends;
while Proj /= No_Project loop
if Proj.Name = With_Name then
if No_Extending then
Temp_Result := Proj;
else
Temp_Result := Result;
end if;
exit;
end if;
Proj := Proj.Extends;
end loop;
end;
List := List.Next;
end loop;
pragma Assert (Temp_Result /= No_Project, "project not found");
return Temp_Result;
end Imported_Or_Extended_Project_From;
------------------
-- Package_From --
------------------
function Package_From
(Project : Project_Id;
Shared : Shared_Project_Tree_Data_Access;
With_Name : Name_Id) return Package_Id
is
Result : Package_Id := Project.Decl.Packages;
begin
-- Check the name of each existing package of Project
while Result /= No_Package
and then Shared.Packages.Table (Result).Name /= With_Name
loop
Result := Shared.Packages.Table (Result).Next;
end loop;
if Result = No_Package then
-- Should never happen
Write_Line
("package """ & Get_Name_String (With_Name) & """ not found");
raise Program_Error;
else
return Result;
end if;
end Package_From;
-------------
-- Process --
-------------
procedure Process
(In_Tree : Project_Tree_Ref;
Project : out Project_Id;
Packages_To_Check : String_List_Access;
Success : out Boolean;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : in out Prj.Tree.Environment;
Reset_Tree : Boolean := True;
On_New_Tree_Loaded : Tree_Loaded_Callback := null)
is
begin
Process_Project_Tree_Phase_1
(In_Tree => In_Tree,
Project => Project,
Success => Success,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Packages_To_Check => Packages_To_Check,
Reset_Tree => Reset_Tree,
On_New_Tree_Loaded => On_New_Tree_Loaded);
if Project_Qualifier_Of
(From_Project_Node, From_Project_Node_Tree) /= Configuration
then
Process_Project_Tree_Phase_2
(In_Tree => In_Tree,
Project => Project,
Success => Success,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env);
end if;
end Process;
-------------------------------
-- Process_Declarative_Items --
-------------------------------
procedure Process_Declarative_Items
(Project : Project_Id;
In_Tree : Project_Tree_Ref;
From_Project_Node : Project_Node_Id;
Node_Tree : Project_Node_Tree_Ref;
Env : Prj.Tree.Environment;
Pkg : Package_Id;
Item : Project_Node_Id;
Child_Env : in out Prj.Tree.Environment)
is
Shared : constant Shared_Project_Tree_Data_Access := In_Tree.Shared;
procedure Check_Or_Set_Typed_Variable
(Value : in out Variable_Value;
Declaration : Project_Node_Id);
-- Check whether Value is valid for this typed variable declaration. If
-- it is an error, the behavior depends on the flags: either an error is
-- reported, or a warning, or nothing. In the last two cases, the value
-- of the variable is set to a valid value, replacing Value.
procedure Process_Package_Declaration
(Current_Item : Project_Node_Id);
procedure Process_Attribute_Declaration
(Current : Project_Node_Id);
procedure Process_Case_Construction
(Current_Item : Project_Node_Id);
procedure Process_Associative_Array
(Current_Item : Project_Node_Id);
procedure Process_Expression
(Current : Project_Node_Id);
procedure Process_Expression_For_Associative_Array
(Current : Project_Node_Id;
New_Value : Variable_Value);
procedure Process_Expression_Variable_Decl
(Current_Item : Project_Node_Id;
New_Value : Variable_Value);
-- Process the various declarative items
---------------------------------
-- Check_Or_Set_Typed_Variable --
---------------------------------
procedure Check_Or_Set_Typed_Variable
(Value : in out Variable_Value;
Declaration : Project_Node_Id)
is
Loc : constant Source_Ptr := Location_Of (Declaration, Node_Tree);
Reset_Value : Boolean := False;
Current_String : Project_Node_Id;
begin
-- Report an error for an empty string
if Value.Value = Empty_String then
Error_Msg_Name_1 := Name_Of (Declaration, Node_Tree);
case Env.Flags.Allow_Invalid_External is
when Error =>
Error_Msg
(Env.Flags, "no value defined for %%", Loc, Project);
when Warning =>
Reset_Value := True;
Error_Msg
(Env.Flags, "?no value defined for %%", Loc, Project);
when Silent =>
Reset_Value := True;
end case;
else
-- Loop through all the valid strings for the
-- string type and compare to the string value.
Current_String :=
First_Literal_String
(String_Type_Of (Declaration, Node_Tree), Node_Tree);
while Present (Current_String)
and then
String_Value_Of (Current_String, Node_Tree) /= Value.Value
loop
Current_String :=
Next_Literal_String (Current_String, Node_Tree);
end loop;
-- Report error if string value is not one for the string type
if No (Current_String) then
Error_Msg_Name_1 := Value.Value;
Error_Msg_Name_2 := Name_Of (Declaration, Node_Tree);
case Env.Flags.Allow_Invalid_External is
when Error =>
Error_Msg
(Env.Flags, "value %% is illegal for typed string %%",
Loc, Project);
when Warning =>
Error_Msg
(Env.Flags, "?value %% is illegal for typed string %%",
Loc, Project);
Reset_Value := True;
when Silent =>
Reset_Value := True;
end case;
end if;
end if;
if Reset_Value then
Current_String :=
First_Literal_String
(String_Type_Of (Declaration, Node_Tree), Node_Tree);
Value.Value := String_Value_Of (Current_String, Node_Tree);
end if;
end Check_Or_Set_Typed_Variable;
---------------------------------
-- Process_Package_Declaration --
---------------------------------
procedure Process_Package_Declaration
(Current_Item : Project_Node_Id)
is
begin
-- Do not process a package declaration that should be ignored
if Expression_Kind_Of (Current_Item, Node_Tree) /= Ignored then
-- Create the new package
Package_Table.Increment_Last (Shared.Packages);
declare
New_Pkg : constant Package_Id :=
Package_Table.Last (Shared.Packages);
The_New_Package : Package_Element;
Project_Of_Renamed_Package : constant Project_Node_Id :=
Project_Of_Renamed_Package_Of
(Current_Item, Node_Tree);
begin
-- Set the name of the new package
The_New_Package.Name := Name_Of (Current_Item, Node_Tree);
-- Insert the new package in the appropriate list
if Pkg /= No_Package then
The_New_Package.Next :=
Shared.Packages.Table (Pkg).Decl.Packages;
Shared.Packages.Table (Pkg).Decl.Packages := New_Pkg;
else
The_New_Package.Next := Project.Decl.Packages;
Project.Decl.Packages := New_Pkg;
end if;
Shared.Packages.Table (New_Pkg) := The_New_Package;
if Present (Project_Of_Renamed_Package) then
-- Renamed or extending package
declare
Project_Name : constant Name_Id :=
Name_Of (Project_Of_Renamed_Package,
Node_Tree);
Renamed_Project : constant Project_Id :=
Imported_Or_Extended_Project_From
(Project, Project_Name);
Renamed_Package : constant Package_Id :=
Package_From
(Renamed_Project, Shared,
Name_Of (Current_Item, Node_Tree));
begin
-- For a renamed package, copy the declarations of the
-- renamed package, but set all the locations to the
-- location of the package name in the renaming
-- declaration.
Copy_Package_Declarations
(From => Shared.Packages.Table
(Renamed_Package).Decl,
To => Shared.Packages.Table (New_Pkg).Decl,
New_Loc => Location_Of (Current_Item, Node_Tree),
Restricted => False,
Shared => Shared);
end;
else
-- Set the default values of the attributes
Add_Attributes
(Project,
Project.Name,
Name_Id (Project.Directory.Display_Name),
Shared,
Shared.Packages.Table (New_Pkg).Decl,
First_Attribute_Of
(Package_Id_Of (Current_Item, Node_Tree)),
Project_Level => False);
end if;
-- Process declarative items (nothing to do when the package is
-- renaming, as the first declarative item is null).
Process_Declarative_Items
(Project => Project,
In_Tree => In_Tree,
From_Project_Node => From_Project_Node,
Node_Tree => Node_Tree,
Env => Env,
Pkg => New_Pkg,
Item =>
First_Declarative_Item_Of (Current_Item, Node_Tree),
Child_Env => Child_Env);
end;
end if;
end Process_Package_Declaration;
-------------------------------
-- Process_Associative_Array --
-------------------------------
procedure Process_Associative_Array
(Current_Item : Project_Node_Id)
is
Current_Item_Name : constant Name_Id :=
Name_Of (Current_Item, Node_Tree);
-- The name of the attribute
Current_Location : constant Source_Ptr :=
Location_Of (Current_Item, Node_Tree);
New_Array : Array_Id;
-- The new associative array created
Orig_Array : Array_Id;
-- The associative array value
Orig_Project_Name : Name_Id := No_Name;
-- The name of the project where the associative array
-- value is.
Orig_Project : Project_Id := No_Project;
-- The id of the project where the associative array
-- value is.
Orig_Package_Name : Name_Id := No_Name;
-- The name of the package, if any, where the associative array value
-- is located.
Orig_Package : Package_Id := No_Package;
-- The id of the package, if any, where the associative array value
-- is located.
New_Element : Array_Element_Id := No_Array_Element;
-- Id of a new array element created
Prev_Element : Array_Element_Id := No_Array_Element;
-- Last new element id created
Orig_Element : Array_Element_Id := No_Array_Element;
-- Current array element in original associative array
Next_Element : Array_Element_Id := No_Array_Element;
-- Id of the array element that follows the new element. This is not
-- always nil, because values for the associative array attribute may
-- already have been declared, and the array elements declared are
-- reused.
Prj : Project_List;
begin
-- First find if the associative array attribute already has elements
-- declared.
if Pkg /= No_Package then
New_Array := Shared.Packages.Table (Pkg).Decl.Arrays;
else
New_Array := Project.Decl.Arrays;
end if;
while New_Array /= No_Array
and then Shared.Arrays.Table (New_Array).Name /= Current_Item_Name
loop
New_Array := Shared.Arrays.Table (New_Array).Next;
end loop;
-- If the attribute has never been declared add new entry in the
-- arrays of the project/package and link it.
if New_Array = No_Array then
Array_Table.Increment_Last (Shared.Arrays);
New_Array := Array_Table.Last (Shared.Arrays);
if Pkg /= No_Package then
Shared.Arrays.Table (New_Array) :=
(Name => Current_Item_Name,
Location => Current_Location,
Value => No_Array_Element,
Next => Shared.Packages.Table (Pkg).Decl.Arrays);
Shared.Packages.Table (Pkg).Decl.Arrays := New_Array;
else
Shared.Arrays.Table (New_Array) :=
(Name => Current_Item_Name,
Location => Current_Location,
Value => No_Array_Element,
Next => Project.Decl.Arrays);
Project.Decl.Arrays := New_Array;
end if;
end if;
-- Find the project where the value is declared
Orig_Project_Name :=
Name_Of
(Associative_Project_Of (Current_Item, Node_Tree), Node_Tree);
Prj := In_Tree.Projects;
while Prj /= null loop
if Prj.Project.Name = Orig_Project_Name then
Orig_Project := Prj.Project;
exit;
end if;
Prj := Prj.Next;
end loop;
pragma Assert (Orig_Project /= No_Project,
"original project not found");
if No (Associative_Package_Of (Current_Item, Node_Tree)) then
Orig_Array := Orig_Project.Decl.Arrays;
else
-- If in a package, find the package where the value is declared
Orig_Package_Name :=
Name_Of
(Associative_Package_Of (Current_Item, Node_Tree), Node_Tree);
Orig_Package := Orig_Project.Decl.Packages;
pragma Assert (Orig_Package /= No_Package,
"original package not found");
while Shared.Packages.Table
(Orig_Package).Name /= Orig_Package_Name
loop
Orig_Package := Shared.Packages.Table (Orig_Package).Next;
pragma Assert (Orig_Package /= No_Package,
"original package not found");
end loop;
Orig_Array := Shared.Packages.Table (Orig_Package).Decl.Arrays;
end if;
-- Now look for the array
while Orig_Array /= No_Array
and then Shared.Arrays.Table (Orig_Array).Name /= Current_Item_Name
loop
Orig_Array := Shared.Arrays.Table (Orig_Array).Next;
end loop;
if Orig_Array = No_Array then
Error_Msg
(Env.Flags,
"associative array value not found",
Location_Of (Current_Item, Node_Tree),
Project);
else
Orig_Element := Shared.Arrays.Table (Orig_Array).Value;
-- Copy each array element
while Orig_Element /= No_Array_Element loop
-- Case of first element
if Prev_Element = No_Array_Element then
-- And there is no array element declared yet, create a new
-- first array element.
if Shared.Arrays.Table (New_Array).Value =
No_Array_Element
then
Array_Element_Table.Increment_Last
(Shared.Array_Elements);
New_Element := Array_Element_Table.Last
(Shared.Array_Elements);
Shared.Arrays.Table (New_Array).Value := New_Element;
Next_Element := No_Array_Element;
-- Otherwise, the new element is the first
else
New_Element := Shared.Arrays.Table (New_Array).Value;
Next_Element :=
Shared.Array_Elements.Table (New_Element).Next;
end if;
-- Otherwise, reuse an existing element, or create
-- one if necessary.
else
Next_Element :=
Shared.Array_Elements.Table (Prev_Element).Next;
if Next_Element = No_Array_Element then
Array_Element_Table.Increment_Last
(Shared.Array_Elements);
New_Element := Array_Element_Table.Last
(Shared.Array_Elements);
Shared.Array_Elements.Table (Prev_Element).Next :=
New_Element;
else
New_Element := Next_Element;
Next_Element :=
Shared.Array_Elements.Table (New_Element).Next;
end if;
end if;
-- Copy the value of the element
Shared.Array_Elements.Table (New_Element) :=
Shared.Array_Elements.Table (Orig_Element);
Shared.Array_Elements.Table (New_Element).Value.Project
:= Project;
-- Adjust the Next link
Shared.Array_Elements.Table (New_Element).Next := Next_Element;
-- Adjust the previous id for the next element
Prev_Element := New_Element;
-- Go to the next element in the original array
Orig_Element := Shared.Array_Elements.Table (Orig_Element).Next;
end loop;
-- Make sure that the array ends here, in case there previously a
-- greater number of elements.
Shared.Array_Elements.Table (New_Element).Next := No_Array_Element;
end if;
end Process_Associative_Array;
----------------------------------------------
-- Process_Expression_For_Associative_Array --
----------------------------------------------
procedure Process_Expression_For_Associative_Array
(Current : Project_Node_Id;
New_Value : Variable_Value)
is
Name : constant Name_Id := Name_Of (Current, Node_Tree);
Current_Location : constant Source_Ptr :=
Location_Of (Current, Node_Tree);
Index_Name : Name_Id :=
Associative_Array_Index_Of (Current, Node_Tree);
Source_Index : constant Int :=
Source_Index_Of (Current, Node_Tree);
The_Array : Array_Id;
Elem : Array_Element_Id := No_Array_Element;
begin
if Index_Name /= All_Other_Names then
Index_Name := Get_Attribute_Index (Node_Tree, Current, Index_Name);
end if;
-- Look for the array in the appropriate list
if Pkg /= No_Package then
The_Array := Shared.Packages.Table (Pkg).Decl.Arrays;
else
The_Array := Project.Decl.Arrays;
end if;
while The_Array /= No_Array
and then Shared.Arrays.Table (The_Array).Name /= Name
loop
The_Array := Shared.Arrays.Table (The_Array).Next;
end loop;
-- If the array cannot be found, create a new entry in the list.
-- As The_Array_Element is initialized to No_Array_Element, a new
-- element will be created automatically later
if The_Array = No_Array then
Array_Table.Increment_Last (Shared.Arrays);
The_Array := Array_Table.Last (Shared.Arrays);
if Pkg /= No_Package then
Shared.Arrays.Table (The_Array) :=
(Name => Name,
Location => Current_Location,
Value => No_Array_Element,
Next => Shared.Packages.Table (Pkg).Decl.Arrays);
Shared.Packages.Table (Pkg).Decl.Arrays := The_Array;
else
Shared.Arrays.Table (The_Array) :=
(Name => Name,
Location => Current_Location,
Value => No_Array_Element,
Next => Project.Decl.Arrays);
Project.Decl.Arrays := The_Array;
end if;
else
Elem := Shared.Arrays.Table (The_Array).Value;
end if;
-- Look in the list, if any, to find an element with the same index
-- and same source index.
while Elem /= No_Array_Element
and then
(Shared.Array_Elements.Table (Elem).Index /= Index_Name
or else
Shared.Array_Elements.Table (Elem).Src_Index /= Source_Index)
loop
Elem := Shared.Array_Elements.Table (Elem).Next;
end loop;
-- If no such element were found, create a new one
-- and insert it in the element list, with the
-- proper value.
if Elem = No_Array_Element then
Array_Element_Table.Increment_Last (Shared.Array_Elements);
Elem := Array_Element_Table.Last (Shared.Array_Elements);
Shared.Array_Elements.Table
(Elem) :=
(Index => Index_Name,
Restricted => False,
Src_Index => Source_Index,
Index_Case_Sensitive =>
not Case_Insensitive (Current, Node_Tree),
Value => New_Value,
Next => Shared.Arrays.Table (The_Array).Value);
Shared.Arrays.Table (The_Array).Value := Elem;
else
-- An element with the same index already exists, just replace its
-- value with the new one.
Shared.Array_Elements.Table (Elem).Value := New_Value;
end if;
if Name = Snames.Name_External then
if In_Tree.Is_Root_Tree then
Add (Child_Env.External,
External_Name => Get_Name_String (Index_Name),
Value => Get_Name_String (New_Value.Value),
Source => From_External_Attribute);
Add (Env.External,
External_Name => Get_Name_String (Index_Name),
Value => Get_Name_String (New_Value.Value),
Source => From_External_Attribute,
Silent => True);
else
if Current_Verbosity = High then
Debug_Output
("'for External' has no effect except in root aggregate ("
& Get_Name_String (Index_Name) & ")", New_Value.Value);
end if;
end if;
end if;
end Process_Expression_For_Associative_Array;
--------------------------------------
-- Process_Expression_Variable_Decl --
--------------------------------------
procedure Process_Expression_Variable_Decl
(Current_Item : Project_Node_Id;
New_Value : Variable_Value)
is
Name : constant Name_Id := Name_Of (Current_Item, Node_Tree);
Is_Attribute : constant Boolean :=
Kind_Of (Current_Item, Node_Tree) =
N_Attribute_Declaration;
Var : Variable_Id := No_Variable;
begin
-- First, find the list where to find the variable or attribute
if Is_Attribute then
if Pkg /= No_Package then
Var := Shared.Packages.Table (Pkg).Decl.Attributes;
else
Var := Project.Decl.Attributes;
end if;
else
if Pkg /= No_Package then
Var := Shared.Packages.Table (Pkg).Decl.Variables;
else
Var := Project.Decl.Variables;
end if;
end if;
-- Loop through the list, to find if it has already been declared
while Var /= No_Variable
and then Shared.Variable_Elements.Table (Var).Name /= Name
loop
Var := Shared.Variable_Elements.Table (Var).Next;
end loop;
-- If it has not been declared, create a new entry in the list
if Var = No_Variable then
-- All single string attribute should already have been declared
-- with a default empty string value.
pragma Assert
(not Is_Attribute,
"illegal attribute declaration for " & Get_Name_String (Name));
Variable_Element_Table.Increment_Last (Shared.Variable_Elements);
Var := Variable_Element_Table.Last (Shared.Variable_Elements);
-- Put the new variable in the appropriate list
if Pkg /= No_Package then
Shared.Variable_Elements.Table (Var) :=
(Next => Shared.Packages.Table (Pkg).Decl.Variables,
Name => Name,
Value => New_Value);
Shared.Packages.Table (Pkg).Decl.Variables := Var;
else
Shared.Variable_Elements.Table (Var) :=
(Next => Project.Decl.Variables,
Name => Name,
Value => New_Value);
Project.Decl.Variables := Var;
end if;
-- If the variable/attribute has already been declared, just
-- change the value.
else
Shared.Variable_Elements.Table (Var).Value := New_Value;
end if;
if Is_Attribute and then Name = Snames.Name_Project_Path then
if In_Tree.Is_Root_Tree then
declare
Val : String_List_Id := New_Value.Values;
List : Name_Ids.Vector;
begin
-- Get all values
while Val /= Nil_String loop
List.Prepend
(Shared.String_Elements.Table (Val).Value);
Val := Shared.String_Elements.Table (Val).Next;
end loop;
-- Prepend them in the order found in the attribute
for K in Positive range 1 .. Positive (List.Length) loop
Prj.Env.Add_Directories
(Child_Env.Project_Path,
Normalize_Pathname
(Name => Get_Name_String
(List.Element (K)),
Directory => Get_Name_String
(Project.Directory.Display_Name)),
Prepend => True);
end loop;
end;
else
if Current_Verbosity = High then
Debug_Output
("'for Project_Path' has no effect except in"
& " root aggregate");
end if;
end if;
end if;
end Process_Expression_Variable_Decl;
------------------------
-- Process_Expression --
------------------------
procedure Process_Expression (Current : Project_Node_Id) is
New_Value : Variable_Value :=
Expression
(Project => Project,
Shared => Shared,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => Node_Tree,
Env => Env,
Pkg => Pkg,
First_Term =>
Tree.First_Term
(Expression_Of (Current, Node_Tree), Node_Tree),
Kind =>
Expression_Kind_Of (Current, Node_Tree));
begin
-- Process a typed variable declaration
if Kind_Of (Current, Node_Tree) = N_Typed_Variable_Declaration then
Check_Or_Set_Typed_Variable (New_Value, Current);
end if;
if Kind_Of (Current, Node_Tree) /= N_Attribute_Declaration
or else Associative_Array_Index_Of (Current, Node_Tree) = No_Name
then
Process_Expression_Variable_Decl (Current, New_Value);
else
Process_Expression_For_Associative_Array (Current, New_Value);
end if;
end Process_Expression;
-----------------------------------
-- Process_Attribute_Declaration --
-----------------------------------
procedure Process_Attribute_Declaration (Current : Project_Node_Id) is
begin
if Expression_Of (Current, Node_Tree) = Empty_Node then
Process_Associative_Array (Current);
else
Process_Expression (Current);
end if;
end Process_Attribute_Declaration;
-------------------------------
-- Process_Case_Construction --
-------------------------------
procedure Process_Case_Construction
(Current_Item : Project_Node_Id)
is
The_Project : Project_Id := Project;
-- The id of the project of the case variable
The_Package : Package_Id := Pkg;
-- The id of the package, if any, of the case variable
The_Variable : Variable_Value := Nil_Variable_Value;
-- The case variable
Case_Value : Name_Id := No_Name;
-- The case variable value
Case_Item : Project_Node_Id := Empty_Node;
Choice_String : Project_Node_Id := Empty_Node;
Decl_Item : Project_Node_Id := Empty_Node;
begin
declare
Variable_Node : constant Project_Node_Id :=
Case_Variable_Reference_Of
(Current_Item,
Node_Tree);
Var_Id : Variable_Id := No_Variable;
Name : Name_Id := No_Name;
begin
-- If a project was specified for the case variable, get its id
if Present (Project_Node_Of (Variable_Node, Node_Tree)) then
Name :=
Name_Of
(Project_Node_Of (Variable_Node, Node_Tree), Node_Tree);
The_Project :=
Imported_Or_Extended_Project_From
(Project, Name, No_Extending => True);
The_Package := No_Package;
end if;
-- If a package was specified for the case variable, get its id
if Present (Package_Node_Of (Variable_Node, Node_Tree)) then
Name :=
Name_Of
(Package_Node_Of (Variable_Node, Node_Tree), Node_Tree);
The_Package := Package_From (The_Project, Shared, Name);
end if;
Name := Name_Of (Variable_Node, Node_Tree);
-- First, look for the case variable into the package, if any
if The_Package /= No_Package then
Name := Name_Of (Variable_Node, Node_Tree);
Var_Id := Shared.Packages.Table (The_Package).Decl.Variables;
while Var_Id /= No_Variable
and then Shared.Variable_Elements.Table (Var_Id).Name /= Name
loop
Var_Id := Shared.Variable_Elements.Table (Var_Id).Next;
end loop;
end if;
-- If not found in the package, or if there is no package, look at
-- the project level.
if Var_Id = No_Variable
and then No (Package_Node_Of (Variable_Node, Node_Tree))
then
Var_Id := The_Project.Decl.Variables;
while Var_Id /= No_Variable
and then Shared.Variable_Elements.Table (Var_Id).Name /= Name
loop
Var_Id := Shared.Variable_Elements.Table (Var_Id).Next;
end loop;
end if;
if Var_Id = No_Variable then
if Node_Tree.Incomplete_With then
return;
-- Should never happen, because this has already been checked
-- during parsing.
else
Write_Line
("variable """ & Get_Name_String (Name) & """ not found");
raise Program_Error;
end if;
end if;
-- Get the case variable
The_Variable := Shared.Variable_Elements. Table (Var_Id).Value;
if The_Variable.Kind /= Single then
-- Should never happen, because this has already been checked
-- during parsing.
Write_Line ("variable""" & Get_Name_String (Name) &
""" is not a single string variable");
raise Program_Error;
end if;
-- Get the case variable value
Case_Value := The_Variable.Value;
end;
-- Now look into all the case items of the case construction
Case_Item := First_Case_Item_Of (Current_Item, Node_Tree);
Case_Item_Loop :
while Present (Case_Item) loop
Choice_String := First_Choice_Of (Case_Item, Node_Tree);
-- When Choice_String is nil, it means that it is the
-- "when others =>" alternative.
if No (Choice_String) then
Decl_Item := First_Declarative_Item_Of (Case_Item, Node_Tree);
exit Case_Item_Loop;
end if;
-- Look into all the alternative of this case item
Choice_Loop :
while Present (Choice_String) loop
if Case_Value = String_Value_Of (Choice_String, Node_Tree) then
Decl_Item :=
First_Declarative_Item_Of (Case_Item, Node_Tree);
exit Case_Item_Loop;
end if;
Choice_String := Next_Literal_String (Choice_String, Node_Tree);
end loop Choice_Loop;
Case_Item := Next_Case_Item (Case_Item, Node_Tree);
end loop Case_Item_Loop;
-- If there is an alternative, then we process it
if Present (Decl_Item) then
Process_Declarative_Items
(Project => Project,
In_Tree => In_Tree,
From_Project_Node => From_Project_Node,
Node_Tree => Node_Tree,
Env => Env,
Pkg => Pkg,
Item => Decl_Item,
Child_Env => Child_Env);
end if;
end Process_Case_Construction;
-- Local variables
Current, Decl : Project_Node_Id;
Kind : Project_Node_Kind;
-- Start of processing for Process_Declarative_Items
begin
Decl := Item;
while Present (Decl) loop
Current := Current_Item_Node (Decl, Node_Tree);
Decl := Next_Declarative_Item (Decl, Node_Tree);
Kind := Kind_Of (Current, Node_Tree);
case Kind is
when N_Package_Declaration =>
Process_Package_Declaration (Current);
-- Nothing to process for string type declaration
when N_String_Type_Declaration =>
null;
when N_Attribute_Declaration
| N_Typed_Variable_Declaration
| N_Variable_Declaration
=>
Process_Attribute_Declaration (Current);
when N_Case_Construction =>
Process_Case_Construction (Current);
when others =>
Write_Line ("Illegal declarative item: " & Kind'Img);
raise Program_Error;
end case;
end loop;
end Process_Declarative_Items;
----------------------------------
-- Process_Project_Tree_Phase_1 --
----------------------------------
procedure Process_Project_Tree_Phase_1
(In_Tree : Project_Tree_Ref;
Project : out Project_Id;
Packages_To_Check : String_List_Access;
Success : out Boolean;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : in out Prj.Tree.Environment;
Reset_Tree : Boolean := True;
On_New_Tree_Loaded : Tree_Loaded_Callback := null)
is
begin
if Reset_Tree then
-- Make sure there are no projects in the data structure
Free_List (In_Tree.Projects, Free_Project => True);
end if;
Processed_Projects.Reset;
-- And process the main project and all of the projects it depends on,
-- recursively.
Debug_Increase_Indent ("Process tree, phase 1");
Recursive_Process
(Project => Project,
In_Tree => In_Tree,
Packages_To_Check => Packages_To_Check,
From_Project_Node => From_Project_Node,
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Extended_By => No_Project,
From_Encapsulated_Lib => False,
On_New_Tree_Loaded => On_New_Tree_Loaded);
Success :=
Total_Errors_Detected = 0
and then
(Warning_Mode /= Treat_As_Error or else Warnings_Detected = 0);
if Current_Verbosity = High then
Debug_Decrease_Indent
("Done Process tree, phase 1, Success=" & Success'Img);
end if;
end Process_Project_Tree_Phase_1;
----------------------------------
-- Process_Project_Tree_Phase_2 --
----------------------------------
procedure Process_Project_Tree_Phase_2
(In_Tree : Project_Tree_Ref;
Project : Project_Id;
Success : out Boolean;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : Environment)
is
Obj_Dir : Path_Name_Type;
Extending : Project_Id;
Extending2 : Project_Id;
Prj : Project_List;
-- Start of processing for Process_Project_Tree_Phase_2
begin
Success := True;
Debug_Increase_Indent ("Process tree, phase 2", Project.Name);
if Project /= No_Project then
Check (In_Tree, Project, From_Project_Node_Tree, Env.Flags);
end if;
-- If main project is an extending all project, set object directory of
-- all virtual extending projects to object directory of main project.
if Project /= No_Project
and then Is_Extending_All (From_Project_Node, From_Project_Node_Tree)
then
declare
Object_Dir : constant Path_Information := Project.Object_Directory;
begin
Prj := In_Tree.Projects;
while Prj /= null loop
if Prj.Project.Virtual then
Prj.Project.Object_Directory := Object_Dir;
end if;
Prj := Prj.Next;
end loop;
end;
end if;
-- Check that no extending project shares its object directory with
-- the project(s) it extends.
if Project /= No_Project then
Prj := In_Tree.Projects;
while Prj /= null loop
Extending := Prj.Project.Extended_By;
if Extending /= No_Project then
Obj_Dir := Prj.Project.Object_Directory.Name;
-- Check that a project being extended does not share its
-- object directory with any project that extends it, directly
-- or indirectly, including a virtual extending project.
-- Start with the project directly extending it
Extending2 := Extending;
while Extending2 /= No_Project loop
if Has_Ada_Sources (Extending2)
and then Extending2.Object_Directory.Name = Obj_Dir
then
if Extending2.Virtual then
Error_Msg_Name_1 := Prj.Project.Display_Name;
Error_Msg
(Env.Flags,
"project %% cannot be extended by a virtual" &
" project with the same object directory",
Prj.Project.Location, Project);
else
Error_Msg_Name_1 := Extending2.Display_Name;
Error_Msg_Name_2 := Prj.Project.Display_Name;
Error_Msg
(Env.Flags,
"project %% cannot extend project %%",
Extending2.Location, Project);
Error_Msg
(Env.Flags,
"\they share the same object directory",
Extending2.Location, Project);
end if;
end if;
-- Continue with the next extending project, if any
Extending2 := Extending2.Extended_By;
end loop;
end if;
Prj := Prj.Next;
end loop;
end if;
Debug_Decrease_Indent ("Done Process tree, phase 2");
Success := Total_Errors_Detected = 0
and then
(Warning_Mode /= Treat_As_Error or else Warnings_Detected = 0);
end Process_Project_Tree_Phase_2;
-----------------------
-- Recursive_Process --
-----------------------
procedure Recursive_Process
(In_Tree : Project_Tree_Ref;
Project : out Project_Id;
Packages_To_Check : String_List_Access;
From_Project_Node : Project_Node_Id;
From_Project_Node_Tree : Project_Node_Tree_Ref;
Env : in out Prj.Tree.Environment;
Extended_By : Project_Id;
From_Encapsulated_Lib : Boolean;
On_New_Tree_Loaded : Tree_Loaded_Callback := null)
is
Shared : constant Shared_Project_Tree_Data_Access := In_Tree.Shared;
Child_Env : Prj.Tree.Environment;
-- Only used for the root aggregate project (if any). This is left
-- uninitialized otherwise.
procedure Process_Imported_Projects
(Imported : in out Project_List;
Limited_With : Boolean);
-- Process imported projects. If Limited_With is True, then only
-- projects processed through a "limited with" are processed, otherwise
-- only projects imported through a standard "with" are processed.
-- Imported is the id of the last imported project.
procedure Process_Aggregated_Projects;
-- Process all the projects aggregated in List. This does nothing if the
-- project is not an aggregate project.
procedure Process_Extended_Project;
-- Process the extended project: inherit all packages from the extended
-- project that are not explicitly defined or renamed. Also inherit the
-- languages, if attribute Languages is not explicitly defined.
-------------------------------
-- Process_Imported_Projects --
-------------------------------
procedure Process_Imported_Projects
(Imported : in out Project_List;
Limited_With : Boolean)
is
With_Clause : Project_Node_Id;
New_Project : Project_Id;
Proj_Node : Project_Node_Id;
begin
With_Clause :=
First_With_Clause_Of
(From_Project_Node, From_Project_Node_Tree);
while Present (With_Clause) loop
Proj_Node :=
Non_Limited_Project_Node_Of
(With_Clause, From_Project_Node_Tree);
New_Project := No_Project;
if (Limited_With and then No (Proj_Node))
or else (not Limited_With and then Present (Proj_Node))
then
Recursive_Process
(In_Tree => In_Tree,
Project => New_Project,
Packages_To_Check => Packages_To_Check,
From_Project_Node =>
Project_Node_Of (With_Clause, From_Project_Node_Tree),
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Extended_By => No_Project,
From_Encapsulated_Lib => From_Encapsulated_Lib,
On_New_Tree_Loaded => On_New_Tree_Loaded);
if Imported = null then
Project.Imported_Projects := new Project_List_Element'
(Project => New_Project,
From_Encapsulated_Lib => False,
Next => null);
Imported := Project.Imported_Projects;
else
Imported.Next := new Project_List_Element'
(Project => New_Project,
From_Encapsulated_Lib => False,
Next => null);
Imported := Imported.Next;
end if;
end if;
With_Clause :=
Next_With_Clause_Of (With_Clause, From_Project_Node_Tree);
end loop;
end Process_Imported_Projects;
---------------------------------
-- Process_Aggregated_Projects --
---------------------------------
procedure Process_Aggregated_Projects is
List : Aggregated_Project_List;
Loaded_Project : Prj.Tree.Project_Node_Id;
Success : Boolean := True;
Tree : Project_Tree_Ref;
Node_Tree : Project_Node_Tree_Ref;
begin
if Project.Qualifier not in Aggregate_Project then
return;
end if;
Debug_Increase_Indent ("Process_Aggregated_Projects", Project.Name);
Prj.Nmsc.Process_Aggregated_Projects
(Tree => In_Tree,
Project => Project,
Node_Tree => From_Project_Node_Tree,
Flags => Env.Flags);
List := Project.Aggregated_Projects;
while Success and then List /= null loop
Node_Tree := new Project_Node_Tree_Data;
Initialize (Node_Tree);
Prj.Part.Parse
(In_Tree => Node_Tree,
Project => Loaded_Project,
Packages_To_Check => Packages_To_Check,
Project_File_Name => Get_Name_String (List.Path),
Errout_Handling => Prj.Part.Never_Finalize,
Current_Directory => Get_Name_String (Project.Directory.Name),
Is_Config_File => False,
Env => Child_Env);
Success := not Prj.Tree.No (Loaded_Project);
if Success then
if Node_Tree.Incomplete_With then
From_Project_Node_Tree.Incomplete_With := True;
end if;
List.Tree := new Project_Tree_Data (Is_Root_Tree => False);
Prj.Initialize (List.Tree);
List.Tree.Shared := In_Tree.Shared;
-- In aggregate library, aggregated projects are parsed using
-- the aggregate library tree.
if Project.Qualifier = Aggregate_Library then
Tree := In_Tree;
else
Tree := List.Tree;
end if;
-- We can only do the phase 1 of the processing, since we do
-- not have access to the configuration file yet (this is
-- called when doing phase 1 of the processing for the root
-- aggregate project).
if In_Tree.Is_Root_Tree then
Process_Project_Tree_Phase_1
(In_Tree => Tree,
Project => List.Project,
Packages_To_Check => Packages_To_Check,
Success => Success,
From_Project_Node => Loaded_Project,
From_Project_Node_Tree => Node_Tree,
Env => Child_Env,
Reset_Tree => False,
On_New_Tree_Loaded => On_New_Tree_Loaded);
else
-- use the same environment as the rest of the aggregated
-- projects, ie the one that was setup by the root aggregate
Process_Project_Tree_Phase_1
(In_Tree => Tree,
Project => List.Project,
Packages_To_Check => Packages_To_Check,
Success => Success,
From_Project_Node => Loaded_Project,
From_Project_Node_Tree => Node_Tree,
Env => Env,
Reset_Tree => False,
On_New_Tree_Loaded => On_New_Tree_Loaded);
end if;
if On_New_Tree_Loaded /= null then
On_New_Tree_Loaded
(Node_Tree, Tree, Loaded_Project, List.Project);
end if;
else
Debug_Output ("Failed to parse", Name_Id (List.Path));
end if;
List := List.Next;
end loop;
Debug_Decrease_Indent ("Done Process_Aggregated_Projects");
end Process_Aggregated_Projects;
------------------------------
-- Process_Extended_Project --
------------------------------
procedure Process_Extended_Project is
Extended_Pkg : Package_Id;
Current_Pkg : Package_Id;
Element : Package_Element;
First : constant Package_Id := Project.Decl.Packages;
Attribute1 : Variable_Id;
Attribute2 : Variable_Id;
Attr_Value1 : Variable;
Attr_Value2 : Variable;
begin
Extended_Pkg := Project.Extends.Decl.Packages;
while Extended_Pkg /= No_Package loop
Element := Shared.Packages.Table (Extended_Pkg);
Current_Pkg := First;
while Current_Pkg /= No_Package
and then
Shared.Packages.Table (Current_Pkg).Name /= Element.Name
loop
Current_Pkg := Shared.Packages.Table (Current_Pkg).Next;
end loop;
if Current_Pkg = No_Package then
Package_Table.Increment_Last (Shared.Packages);
Current_Pkg := Package_Table.Last (Shared.Packages);
Shared.Packages.Table (Current_Pkg) :=
(Name => Element.Name,
Decl => No_Declarations,
Parent => No_Package,
Next => Project.Decl.Packages);
Project.Decl.Packages := Current_Pkg;
Copy_Package_Declarations
(From => Element.Decl,
To => Shared.Packages.Table (Current_Pkg).Decl,
New_Loc => No_Location,
Restricted => True,
Shared => Shared);
end if;
Extended_Pkg := Element.Next;
end loop;
-- Check if attribute Languages is declared in the extending project
Attribute1 := Project.Decl.Attributes;
while Attribute1 /= No_Variable loop
Attr_Value1 := Shared.Variable_Elements. Table (Attribute1);
exit when Attr_Value1.Name = Snames.Name_Languages;
Attribute1 := Attr_Value1.Next;
end loop;
if Attribute1 = No_Variable or else Attr_Value1.Value.Default then
-- Attribute Languages is not declared in the extending project.
-- Check if it is declared in the project being extended.
Attribute2 := Project.Extends.Decl.Attributes;
while Attribute2 /= No_Variable loop
Attr_Value2 := Shared.Variable_Elements.Table (Attribute2);
exit when Attr_Value2.Name = Snames.Name_Languages;
Attribute2 := Attr_Value2.Next;
end loop;
if Attribute2 /= No_Variable
and then not Attr_Value2.Value.Default
then
-- As attribute Languages is declared in the project being
-- extended, copy its value for the extending project.
if Attribute1 = No_Variable then
Variable_Element_Table.Increment_Last
(Shared.Variable_Elements);
Attribute1 := Variable_Element_Table.Last
(Shared.Variable_Elements);
Attr_Value1.Next := Project.Decl.Attributes;
Project.Decl.Attributes := Attribute1;
end if;
Attr_Value1.Name := Snames.Name_Languages;
Attr_Value1.Value := Attr_Value2.Value;
Shared.Variable_Elements.Table (Attribute1) := Attr_Value1;
end if;
end if;
end Process_Extended_Project;
-- Start of processing for Recursive_Process
begin
if No (From_Project_Node) then
Project := No_Project;
else
declare
Imported, Mark : Project_List;
Declaration_Node : Project_Node_Id := Empty_Node;
Name : constant Name_Id :=
Name_Of (From_Project_Node, From_Project_Node_Tree);
Display_Name : constant Name_Id :=
Display_Name_Of
(From_Project_Node, From_Project_Node_Tree);
begin
Project := Processed_Projects.Get (Name);
if Project /= No_Project then
-- Make sure that, when a project is extended, the project id
-- of the project extending it is recorded in its data, even
-- when it has already been processed as an imported project.
-- This is for virtually extended projects.
if Extended_By /= No_Project then
Project.Extended_By := Extended_By;
end if;
return;
end if;
-- Check if the project is already in the tree
Project := No_Project;
declare
List : Project_List := In_Tree.Projects;
Path : constant Path_Name_Type :=
Path_Name_Of (From_Project_Node,
From_Project_Node_Tree);
begin
while List /= null loop
if List.Project.Path.Display_Name = Path then
Project := List.Project;
exit;
end if;
List := List.Next;
end loop;
end;
if Project = No_Project then
Project :=
new Project_Data'
(Empty_Project
(Project_Qualifier_Of
(From_Project_Node, From_Project_Node_Tree)));
-- Note that at this point we do not know yet if the project
-- has been withed from an encapsulated library or not.
In_Tree.Projects :=
new Project_List_Element'
(Project => Project,
From_Encapsulated_Lib => False,
Next => In_Tree.Projects);
end if;
-- Keep track of this point
Mark := In_Tree.Projects;
Processed_Projects.Set (Name, Project);
Project.Name := Name;
Project.Display_Name := Display_Name;
Get_Name_String (Name);
-- If name starts with the virtual prefix, flag the project as
-- being a virtual extending project.
if Name_Len > Virtual_Prefix'Length
and then
Name_Buffer (1 .. Virtual_Prefix'Length) = Virtual_Prefix
then
Project.Virtual := True;
end if;
Project.Path.Display_Name :=
Path_Name_Of (From_Project_Node, From_Project_Node_Tree);
Get_Name_String (Project.Path.Display_Name);
Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
Project.Path.Name := Name_Find;
Project.Location :=
Location_Of (From_Project_Node, From_Project_Node_Tree);
Project.Directory.Display_Name :=
Directory_Of (From_Project_Node, From_Project_Node_Tree);
Get_Name_String (Project.Directory.Display_Name);
Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len));
Project.Directory.Name := Name_Find;
Project.Extended_By := Extended_By;
Add_Attributes
(Project,
Name,
Name_Id (Project.Directory.Display_Name),
In_Tree.Shared,
Project.Decl,
Prj.Attr.Attribute_First,
Project_Level => True);
Process_Imported_Projects (Imported, Limited_With => False);
if Project.Qualifier = Aggregate then
Initialize_And_Copy (Child_Env, Copy_From => Env);
elsif Project.Qualifier = Aggregate_Library then
-- The child environment is the same as the current one
Child_Env := Env;
else
-- No need to initialize Child_Env, since it will not be
-- used anyway by Process_Declarative_Items (only the root
-- aggregate can modify it, and it is never read anyway).
null;
end if;
Declaration_Node :=
Project_Declaration_Of
(From_Project_Node, From_Project_Node_Tree);
Recursive_Process
(In_Tree => In_Tree,
Project => Project.Extends,
Packages_To_Check => Packages_To_Check,
From_Project_Node =>
Extended_Project_Of
(Declaration_Node, From_Project_Node_Tree),
From_Project_Node_Tree => From_Project_Node_Tree,
Env => Env,
Extended_By => Project,
From_Encapsulated_Lib => From_Encapsulated_Lib,
On_New_Tree_Loaded => On_New_Tree_Loaded);
Process_Declarative_Items
(Project => Project,
In_Tree => In_Tree,
From_Project_Node => From_Project_Node,
Node_Tree => From_Project_Node_Tree,
Env => Env,
Pkg => No_Package,
Item => First_Declarative_Item_Of
(Declaration_Node, From_Project_Node_Tree),
Child_Env => Child_Env);
if Project.Extends /= No_Project then
Process_Extended_Project;
end if;
Process_Imported_Projects (Imported, Limited_With => True);
if Total_Errors_Detected = 0 then
Process_Aggregated_Projects;
end if;
-- At this point (after Process_Declarative_Items) we have the
-- attribute values set, we can backtrace In_Tree.Project and
-- set the From_Encapsulated_Library status.
declare
Lib_Standalone : constant Prj.Variable_Value :=
Prj.Util.Value_Of
(Snames.Name_Library_Standalone,
Project.Decl.Attributes,
Shared);
List : Project_List := In_Tree.Projects;
Is_Encapsulated : Boolean;
begin
Get_Name_String (Lib_Standalone.Value);
To_Lower (Name_Buffer (1 .. Name_Len));
Is_Encapsulated := Name_Buffer (1 .. Name_Len) = "encapsulated";
if Is_Encapsulated then
while List /= null and then List /= Mark loop
List.From_Encapsulated_Lib := Is_Encapsulated;
List := List.Next;
end loop;
end if;
if Total_Errors_Detected = 0 then
-- For an aggregate library we add the aggregated projects
-- as imported ones. This is necessary to give visibility
-- to all sources from the aggregates from the aggregated
-- library projects.
if Project.Qualifier = Aggregate_Library then
declare
L : Aggregated_Project_List;
begin
L := Project.Aggregated_Projects;
while L /= null loop
Project.Imported_Projects :=
new Project_List_Element'
(Project => L.Project,
From_Encapsulated_Lib => Is_Encapsulated,
Next =>
Project.Imported_Projects);
L := L.Next;
end loop;
end;
end if;
end if;
end;
if Project.Qualifier = Aggregate and then In_Tree.Is_Root_Tree then
Free (Child_Env);
end if;
end;
end if;
end Recursive_Process;
-----------------------------
-- Set_Default_Runtime_For --
-----------------------------
procedure Set_Default_Runtime_For (Language : Name_Id; Value : String) is
begin
Name_Len := Value'Length;
Name_Buffer (1 .. Name_Len) := Value;
Runtime_Defaults.Set (Language, Name_Find);
end Set_Default_Runtime_For;
end Prj.Proc;
|
package Forward_Anon is
type Object is null record;
function Get_Current return access Object;
Current_Object : constant access Object;
private
One_Object : aliased Object;
Current_Object : constant access Object := One_Object'Access;
end;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P A R A M E T E R S --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the RT-GNU/Linux version.
-- Blank line intentional so that it lines up exactly with default.
-- This package defines some system dependent parameters for GNAT. These
-- are values that are referenced by the runtime library and are therefore
-- relevant to the target machine.
-- The parameters whose value is defined in the spec are not generally
-- expected to be changed. If they are changed, it will be necessary to
-- recompile the run-time library.
-- The parameters which are defined by functions can be changed by modifying
-- the body of System.Parameters in file s-parame.adb. A change to this body
-- requires only rebinding and relinking of the application.
-- Note: do not introduce any pragma Inline statements into this unit, since
-- otherwise the relinking and rebinding capability would be deactivated.
package System.Parameters is
pragma Pure (Parameters);
---------------------------------------
-- Task And Stack Allocation Control --
---------------------------------------
type Task_Storage_Size is new Integer;
-- Type used in tasking units for task storage size
type Size_Type is new Task_Storage_Size;
-- Type used to provide task storage size to runtime
Unspecified_Size : constant Size_Type := Size_Type'First;
-- Value used to indicate that no size type is set
subtype Ratio is Size_Type range -1 .. 100;
Dynamic : constant Size_Type := 10;
-- The secondary stack ratio is a constant between 0 and 100 which
-- determines the percentage of the allocated task stack that is
-- used by the secondary stack (the rest being the primary stack).
-- The special value of minus one indicates that the secondary
-- stack is to be allocated from the heap instead.
Sec_Stack_Ratio : constant Ratio := Dynamic;
-- This constant defines the handling of the secondary stack
Sec_Stack_Dynamic : constant Boolean := Sec_Stack_Ratio = Dynamic;
-- Convenient Boolean for testing for dynamic secondary stack
function Default_Stack_Size return Size_Type;
-- Default task stack size used if none is specified
function Minimum_Stack_Size return Size_Type;
-- Minimum task stack size permitted
function Adjust_Storage_Size (Size : Size_Type) return Size_Type;
-- Given the storage size stored in the TCB, return the Storage_Size
-- value required by the RM for the Storage_Size attribute. The
-- required adjustment is as follows:
--
-- when Size = Unspecified_Size, return Default_Stack_Size
-- when Size < Minimum_Stack_Size, return Minimum_Stack_Size
-- otherwise return given Size
Stack_Grows_Down : constant Boolean := True;
-- This constant indicates whether the stack grows up (False) or
-- down (True) in memory as functions are called. It is used for
-- proper implementation of the stack overflow check.
----------------------------------------------
-- Characteristics of types in Interfaces.C --
----------------------------------------------
long_bits : constant := Long_Integer'Size;
-- Number of bits in type long and unsigned_long. The normal convention
-- is that this is the same as type Long_Integer, but this is not true
-- of all targets. For example, in OpenVMS long /= Long_Integer.
----------------------------------------------
-- Behavior of Pragma Finalize_Storage_Only --
----------------------------------------------
-- Garbage_Collected is a Boolean constant whose value indicates the
-- effect of the pragma Finalize_Storage_Entry on a controlled type.
-- Garbage_Collected = False
-- The system releases all storage on program termination only,
-- but not other garbage collection occurs, so finalization calls
-- are ommitted only for outer level onjects can be omitted if
-- pragma Finalize_Storage_Only is used.
-- Garbage_Collected = True
-- The system provides full garbage collection, so it is never
-- necessary to release storage for controlled objects for which
-- a pragma Finalize_Storage_Only is used.
Garbage_Collected : constant Boolean := False;
-- The storage mode for this system (release on program exit)
end System.Parameters;
|
-- Swagger Petstore
-- This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special_key` to test the authorization filters.
-- ------------ EDIT NOTE ------------
-- This file was generated with swagger-codegen. You can modify it to implement
-- the server. After you modify this file, you should add the following line
-- to the .swagger-codegen-ignore file:
--
-- src/samples-petstore.ads
--
-- Then, you can drop this edit note comment.
-- ------------ EDIT NOTE ------------
package Samples is
end Samples;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
-- A feature declares a behavioral or structural characteristic of instances
-- of classifiers.
------------------------------------------------------------------------------
limited with AMF.UML.Classifiers.Collections;
with AMF.UML.Redefinable_Elements;
package AMF.UML.Features is
pragma Preelaborate;
type UML_Feature is limited interface
and AMF.UML.Redefinable_Elements.UML_Redefinable_Element;
type UML_Feature_Access is
access all UML_Feature'Class;
for UML_Feature_Access'Storage_Size use 0;
not overriding function Get_Featuring_Classifier
(Self : not null access constant UML_Feature)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is abstract;
-- Getter of Feature::featuringClassifier.
--
-- The Classifiers that have this Feature as a feature.
not overriding function Get_Is_Static
(Self : not null access constant UML_Feature)
return Boolean is abstract;
-- Getter of Feature::isStatic.
--
-- Specifies whether this feature characterizes individual instances
-- classified by the classifier (false) or the classifier itself (true).
not overriding procedure Set_Is_Static
(Self : not null access UML_Feature;
To : Boolean) is abstract;
-- Setter of Feature::isStatic.
--
-- Specifies whether this feature characterizes individual instances
-- classified by the classifier (false) or the classifier itself (true).
end AMF.UML.Features;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with STM32_SVD.RTC; use STM32_SVD.RTC;
with STM32_SVD.RCC; use STM32_SVD.RCC;
with STM32.Power_Control;
with HAL.Real_Time_Clock; use HAL.Real_Time_Clock;
package body STM32.RTC is
-- procedure Disable_Write_Protection;
-- procedure Enable_Write_Protection;
------------------------------
-- Disable_Write_Protection --
------------------------------
procedure Disable_Write_Protection is
begin
Power_Control.Disable_Backup_Domain_Protection;
RTC_Periph.WPR.KEY := 16#CA#;
RTC_Periph.WPR.KEY := 16#53#;
end Disable_Write_Protection;
-----------------------------
-- Enable_Write_Protection --
-----------------------------
procedure Enable_Write_Protection is
begin
-- Write any wrong key to enable protection
RTC_Periph.WPR.KEY := 16#FF#;
Power_Control.Enable_Backup_Domain_Protection;
end Enable_Write_Protection;
---------
-- Set --
---------
overriding
procedure Set (This : in out RTC_Device;
Time : HAL.Real_Time_Clock.RTC_Time;
Date : HAL.Real_Time_Clock.RTC_Date)
is
pragma Unreferenced (This);
DR : DR_Register;
TR : TR_Register;
begin
Disable_Write_Protection;
if not RTC_Periph.ISR.INITF then
-- Enter initialization mode
RTC_Periph.ISR.INIT := True;
-- Wait for init mode
while not RTC_Periph.ISR.INITF loop
null;
end loop;
end if;
-- RTC prescaler for LSE source clock
RTC_Periph.PRER.PREDIV_S := 16#FF#;
RTC_Periph.PRER.PREDIV_A := 16#7F#;
-- 24H format
TR.PM := False;
TR.HT := UInt2 (Time.Hour / 10);
TR.HU := UInt4 (Time.Hour mod 10);
TR.MNT := UInt3 (Time.Min / 10);
TR.MNU := UInt4 (Time.Min mod 10);
TR.ST := UInt3 (Time.Sec / 10);
TR.SU := UInt4 (Time.Sec mod 10);
DR.YT := UInt4 (Date.Year / 10);
DR.YU := UInt4 (Date.Year mod 10);
DR.WDU := UInt3 (RTC_Day_Of_Week'Enum_Rep (Date.Day_Of_Week));
DR.MT := (RTC_Month'Enum_Rep (Date.Month) / 10) /= 0;
DR.MU := UInt4 (RTC_Month'Enum_Rep (Date.Month) mod 10);
DR.DT := UInt2 (Date.Day / 10);
DR.DU := UInt4 (Date.Day mod 10);
-- TR and DR are shadow registers, we have to write them all at once
RTC_Periph.TR := TR;
RTC_Periph.DR := DR;
-- Leave init mode
RTC_Periph.ISR.INIT := False;
Enable_Write_Protection;
while not RTC_Periph.ISR.RSF loop
null;
end loop;
end Set;
---------
-- Get --
---------
overriding
procedure Get (This : in out RTC_Device;
Time : out HAL.Real_Time_Clock.RTC_Time;
Date : out HAL.Real_Time_Clock.RTC_Date)
is
begin
loop
Time := This.Get_Time;
Date := This.Get_Date;
-- Check if the time changed when we were reading the date. If it
-- did, we have to read both values again to ensure coherence.
exit when This.Get_Time = Time;
end loop;
end Get;
--------------
-- Get_Time --
--------------
overriding
function Get_Time (This : RTC_Device) return HAL.Real_Time_Clock.RTC_Time
is
pragma Unreferenced (This);
Ret : RTC_Time;
TR : constant TR_Register := RTC_Periph.TR;
begin
Ret.Hour := RTC_Hour (TR.HT) * 10 + RTC_Hour (RTC_Periph.TR.HU);
Ret.Min := RTC_Minute (TR.MNT) * 10 + RTC_Minute (TR.MNU);
Ret.Sec := RTC_Second (TR.ST) * 10 + RTC_Second (TR.SU);
return Ret;
end Get_Time;
--------------
-- Get_Date --
--------------
overriding
function Get_Date (This : RTC_Device) return HAL.Real_Time_Clock.RTC_Date
is
pragma Unreferenced (This);
Ret : RTC_Date;
DR : constant DR_Register := RTC_Periph.DR;
begin
Ret.Day_Of_Week := RTC_Day_Of_Week'Enum_Val (DR.WDU);
Ret.Day := RTC_Day (Integer (DR.DT) * 10 + Integer (DR.DU));
Ret.Year := RTC_Year (DR.YT) * 10 + RTC_Year (DR.YU);
Ret.Month := RTC_Month'Enum_Val ((if DR.MT then 10 else 0) + DR.MU);
return Ret;
end Get_Date;
------------
-- Enable --
------------
procedure Enable (This : in out RTC_Device) is
pragma Unreferenced (This);
begin
Power_Control.Enable;
Power_Control.Disable_Backup_Domain_Protection;
-- Turn on internal low speed oscillator
RCC_Periph.CSR.LSI1ON := True;
while not RCC_Periph.CSR.LSI1RDY loop
null;
end loop;
-- Select LSI as source clock
RCC_Periph.BDCR.RTC_SEL := 2#10#;
if RCC_Periph.BDCR.RTC_SEL /= 2#10# then
raise Program_Error with "Cannot select RTC clock";
end if;
RCC_Periph.BDCR.RTCEN := True;
while not RTC_Periph.ISR.RSF loop
null;
end loop;
-- Power_Control.Enable_Backup_Domain_Protection;
end Enable;
-------------
-- Disable --
-------------
procedure Disable (This : in out RTC_Device) is
pragma Unreferenced (This);
begin
-- Power_Control.Disable_Backup_Domain_Protection;
RCC_Periph.BDCR.RTCEN := False;
-- Power_Control.Enable_Backup_Domain_Protection;
end Disable;
end STM32.RTC;
|
-----------------------------------------------------------------------
-- AWA.Jobs.Models -- AWA.Jobs.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 Ada.Calendar;
with Ada.Containers.Vectors;
with Ada.Strings.Unbounded;
with Util.Beans.Objects;
with Util.Beans.Objects.Enums;
with Util.Beans.Basic.Lists;
with AWA.Events.Models;
with AWA.Users.Models;
pragma Warnings (On, "unit * is not referenced");
package AWA.Jobs.Models is
type Job_Status_Type is (SCHEDULED, RUNNING, CANCELED, FAILED, TERMINATED);
for Job_Status_Type use (SCHEDULED => 0, RUNNING => 1, CANCELED => 2, FAILED => 3, TERMINATED => 4);
package Job_Status_Type_Objects is
new Util.Beans.Objects.Enums (Job_Status_Type);
type Job_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- The job is associated with a dispatching queue.
-- --------------------
-- Create an object key for Job.
function Job_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Job from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Job_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Job : constant Job_Ref;
function "=" (Left, Right : Job_Ref'Class) return Boolean;
-- Set the job identifier
procedure Set_Id (Object : in out Job_Ref;
Value : in ADO.Identifier);
-- Get the job identifier
function Get_Id (Object : in Job_Ref)
return ADO.Identifier;
-- Set the job status
procedure Set_Status (Object : in out Job_Ref;
Value : in AWA.Jobs.Models.Job_Status_Type);
-- Get the job status
function Get_Status (Object : in Job_Ref)
return AWA.Jobs.Models.Job_Status_Type;
-- Set the job name
procedure Set_Name (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Job_Ref;
Value : in String);
-- Get the job name
function Get_Name (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Job_Ref)
return String;
-- Set the job start date
procedure Set_Start_Date (Object : in out Job_Ref;
Value : in ADO.Nullable_Time);
-- Get the job start date
function Get_Start_Date (Object : in Job_Ref)
return ADO.Nullable_Time;
-- Set the job creation date
procedure Set_Create_Date (Object : in out Job_Ref;
Value : in Ada.Calendar.Time);
-- Get the job creation date
function Get_Create_Date (Object : in Job_Ref)
return Ada.Calendar.Time;
-- Set the job finish date
procedure Set_Finish_Date (Object : in out Job_Ref;
Value : in ADO.Nullable_Time);
-- Get the job finish date
function Get_Finish_Date (Object : in Job_Ref)
return ADO.Nullable_Time;
-- Set the job progress indicator
procedure Set_Progress (Object : in out Job_Ref;
Value : in Integer);
-- Get the job progress indicator
function Get_Progress (Object : in Job_Ref)
return Integer;
-- Set the job parameters
procedure Set_Parameters (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Parameters (Object : in out Job_Ref;
Value : in String);
-- Get the job parameters
function Get_Parameters (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Parameters (Object : in Job_Ref)
return String;
-- Set the job result
procedure Set_Results (Object : in out Job_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Results (Object : in out Job_Ref;
Value : in String);
-- Get the job result
function Get_Results (Object : in Job_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Results (Object : in Job_Ref)
return String;
--
function Get_Version (Object : in Job_Ref)
return Integer;
-- Set the job priority
procedure Set_Priority (Object : in out Job_Ref;
Value : in Integer);
-- Get the job priority
function Get_Priority (Object : in Job_Ref)
return Integer;
--
procedure Set_User (Object : in out Job_Ref;
Value : in AWA.Users.Models.User_Ref'Class);
--
function Get_User (Object : in Job_Ref)
return AWA.Users.Models.User_Ref'Class;
--
procedure Set_Event (Object : in out Job_Ref;
Value : in AWA.Events.Models.Message_Ref'Class);
--
function Get_Event (Object : in Job_Ref)
return AWA.Events.Models.Message_Ref'Class;
--
procedure Set_Session (Object : in out Job_Ref;
Value : in AWA.Users.Models.Session_Ref'Class);
--
function Get_Session (Object : in Job_Ref)
return AWA.Users.Models.Session_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Job_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 Job_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 Job_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 Job_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Job_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Job_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
JOB_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Job_Ref);
-- Copy of the object.
procedure Copy (Object : in Job_Ref;
Into : in out Job_Ref);
private
JOB_NAME : aliased constant String := "awa_job";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "status";
COL_2_1_NAME : aliased constant String := "name";
COL_3_1_NAME : aliased constant String := "start_date";
COL_4_1_NAME : aliased constant String := "create_date";
COL_5_1_NAME : aliased constant String := "finish_date";
COL_6_1_NAME : aliased constant String := "progress";
COL_7_1_NAME : aliased constant String := "parameters";
COL_8_1_NAME : aliased constant String := "results";
COL_9_1_NAME : aliased constant String := "version";
COL_10_1_NAME : aliased constant String := "priority";
COL_11_1_NAME : aliased constant String := "user_id";
COL_12_1_NAME : aliased constant String := "event_id";
COL_13_1_NAME : aliased constant String := "session_id";
JOB_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 14,
Table => JOB_NAME'Access,
Members => (
1 => COL_0_1_NAME'Access,
2 => COL_1_1_NAME'Access,
3 => COL_2_1_NAME'Access,
4 => COL_3_1_NAME'Access,
5 => COL_4_1_NAME'Access,
6 => COL_5_1_NAME'Access,
7 => COL_6_1_NAME'Access,
8 => COL_7_1_NAME'Access,
9 => COL_8_1_NAME'Access,
10 => COL_9_1_NAME'Access,
11 => COL_10_1_NAME'Access,
12 => COL_11_1_NAME'Access,
13 => COL_12_1_NAME'Access,
14 => COL_13_1_NAME'Access
)
);
JOB_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= JOB_DEF'Access;
Null_Job : constant Job_Ref
:= Job_Ref'(ADO.Objects.Object_Ref with others => <>);
type Job_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => JOB_DEF'Access)
with record
Status : AWA.Jobs.Models.Job_Status_Type;
Name : Ada.Strings.Unbounded.Unbounded_String;
Start_Date : ADO.Nullable_Time;
Create_Date : Ada.Calendar.Time;
Finish_Date : ADO.Nullable_Time;
Progress : Integer;
Parameters : Ada.Strings.Unbounded.Unbounded_String;
Results : Ada.Strings.Unbounded.Unbounded_String;
Version : Integer;
Priority : Integer;
User : AWA.Users.Models.User_Ref;
Event : AWA.Events.Models.Message_Ref;
Session : AWA.Users.Models.Session_Ref;
end record;
type Job_Access is access all Job_Impl;
overriding
procedure Destroy (Object : access Job_Impl);
overriding
procedure Find (Object : in out Job_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Job_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Job_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Job_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Job_Ref'Class;
Impl : out Job_Access);
end AWA.Jobs.Models;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- I N T E R F A C E S . C P P --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Tags; use Ada.Tags;
with Interfaces.C; use Interfaces.C;
with System; use System;
with System.Storage_Elements; use System.Storage_Elements;
with Unchecked_Conversion;
package body Interfaces.CPP is
subtype Cstring is String (Positive);
type Cstring_Ptr is access all Cstring;
type Tag_Table is array (Natural range <>) of Vtable_Ptr;
pragma Suppress_Initialization (Tag_Table);
type Type_Specific_Data is record
Idepth : Natural;
Expanded_Name : Cstring_Ptr;
External_Tag : Cstring_Ptr;
HT_Link : Tag;
Ancestor_Tags : Tag_Table (Natural);
end record;
type Vtable_Entry is record
Pfn : System.Address;
end record;
type Type_Specific_Data_Ptr is access all Type_Specific_Data;
type Vtable_Entry_Array is array (Positive range <>) of Vtable_Entry;
type VTable is record
Unused1 : C.short;
Unused2 : C.short;
TSD : Type_Specific_Data_Ptr;
Prims_Ptr : Vtable_Entry_Array (Positive);
end record;
--------------------------------------------------------
-- Unchecked Conversions for Tag, Vtable_Ptr, and TSD --
--------------------------------------------------------
function To_Type_Specific_Data_Ptr is
new Unchecked_Conversion (Address, Type_Specific_Data_Ptr);
function To_Address is new Unchecked_Conversion (Vtable_Ptr, Address);
function To_Address is
new Unchecked_Conversion (Type_Specific_Data_Ptr, Address);
function To_Vtable_Ptr is new Unchecked_Conversion (Tag, Vtable_Ptr);
function To_Tag is new Unchecked_Conversion (Vtable_Ptr, Tag);
---------------------------------------------
-- Unchecked Conversions for String Fields --
---------------------------------------------
function To_Cstring_Ptr is
new Unchecked_Conversion (Address, Cstring_Ptr);
function To_Address is
new Unchecked_Conversion (Cstring_Ptr, Address);
-----------------------
-- Local Subprograms --
-----------------------
function Length (Str : Cstring_Ptr) return Natural;
-- Length of string represented by the given pointer (treating the
-- string as a C-style string, which is Nul terminated).
-----------------------
-- CPP_CW_Membership --
-----------------------
function CPP_CW_Membership
(Obj_Tag : Vtable_Ptr;
Typ_Tag : Vtable_Ptr)
return Boolean
is
Pos : constant Integer := Obj_Tag.TSD.Idepth - Typ_Tag.TSD.Idepth;
begin
return Pos >= 0 and then Obj_Tag.TSD.Ancestor_Tags (Pos) = Typ_Tag;
end CPP_CW_Membership;
---------------------------
-- CPP_Get_Expanded_Name --
---------------------------
function CPP_Get_Expanded_Name (T : Vtable_Ptr) return Address is
begin
return To_Address (T.TSD.Expanded_Name);
end CPP_Get_Expanded_Name;
--------------------------
-- CPP_Get_External_Tag --
--------------------------
function CPP_Get_External_Tag (T : Vtable_Ptr) return Address is
begin
return To_Address (T.TSD.External_Tag);
end CPP_Get_External_Tag;
-------------------------------
-- CPP_Get_Inheritance_Depth --
-------------------------------
function CPP_Get_Inheritance_Depth (T : Vtable_Ptr) return Natural is
begin
return T.TSD.Idepth;
end CPP_Get_Inheritance_Depth;
-------------------------
-- CPP_Get_Prim_Op_Address --
-------------------------
function CPP_Get_Prim_Op_Address
(T : Vtable_Ptr;
Position : Positive)
return Address is
begin
return T.Prims_Ptr (Position).Pfn;
end CPP_Get_Prim_Op_Address;
-----------------------
-- CPP_Get_RC_Offset --
-----------------------
function CPP_Get_RC_Offset (T : Vtable_Ptr) return SSE.Storage_Offset is
begin
return 0;
end CPP_Get_RC_Offset;
-------------------------------
-- CPP_Get_Remotely_Callable --
-------------------------------
function CPP_Get_Remotely_Callable (T : Vtable_Ptr) return Boolean is
begin
return True;
end CPP_Get_Remotely_Callable;
-----------------
-- CPP_Get_TSD --
-----------------
function CPP_Get_TSD (T : Vtable_Ptr) return Address is
begin
return To_Address (T.TSD);
end CPP_Get_TSD;
--------------------
-- CPP_Inherit_DT --
--------------------
procedure CPP_Inherit_DT
(Old_T : Vtable_Ptr;
New_T : Vtable_Ptr;
Entry_Count : Natural)
is
begin
if Old_T /= null then
New_T.Prims_Ptr (1 .. Entry_Count)
:= Old_T.Prims_Ptr (1 .. Entry_Count);
end if;
end CPP_Inherit_DT;
---------------------
-- CPP_Inherit_TSD --
---------------------
procedure CPP_Inherit_TSD
(Old_TSD : Address;
New_Tag : Vtable_Ptr)
is
TSD : constant Type_Specific_Data_Ptr
:= To_Type_Specific_Data_Ptr (Old_TSD);
New_TSD : Type_Specific_Data renames New_Tag.TSD.all;
begin
if TSD /= null then
New_TSD.Idepth := TSD.Idepth + 1;
New_TSD.Ancestor_Tags (1 .. New_TSD.Idepth)
:= TSD.Ancestor_Tags (0 .. TSD.Idepth);
else
New_TSD.Idepth := 0;
end if;
New_TSD.Ancestor_Tags (0) := New_Tag;
end CPP_Inherit_TSD;
---------------------------
-- CPP_Set_Expanded_Name --
---------------------------
procedure CPP_Set_Expanded_Name (T : Vtable_Ptr; Value : Address) is
begin
T.TSD.Expanded_Name := To_Cstring_Ptr (Value);
end CPP_Set_Expanded_Name;
--------------------------
-- CPP_Set_External_Tag --
--------------------------
procedure CPP_Set_External_Tag (T : Vtable_Ptr; Value : Address) is
begin
T.TSD.External_Tag := To_Cstring_Ptr (Value);
end CPP_Set_External_Tag;
-------------------------------
-- CPP_Set_Inheritance_Depth --
-------------------------------
procedure CPP_Set_Inheritance_Depth
(T : Vtable_Ptr;
Value : Natural)
is
begin
T.TSD.Idepth := Value;
end CPP_Set_Inheritance_Depth;
-----------------------------
-- CPP_Set_Prim_Op_Address --
-----------------------------
procedure CPP_Set_Prim_Op_Address
(T : Vtable_Ptr;
Position : Positive;
Value : Address)
is
begin
T.Prims_Ptr (Position).Pfn := Value;
end CPP_Set_Prim_Op_Address;
-----------------------
-- CPP_Set_RC_Offset --
-----------------------
procedure CPP_Set_RC_Offset (T : Vtable_Ptr; Value : SSE.Storage_Offset) is
begin
null;
end CPP_Set_RC_Offset;
-------------------------------
-- CPP_Set_Remotely_Callable --
-------------------------------
procedure CPP_Set_Remotely_Callable (T : Vtable_Ptr; Value : Boolean) is
begin
null;
end CPP_Set_Remotely_Callable;
-----------------
-- CPP_Set_TSD --
-----------------
procedure CPP_Set_TSD (T : Vtable_Ptr; Value : Address) is
begin
T.TSD := To_Type_Specific_Data_Ptr (Value);
end CPP_Set_TSD;
--------------------
-- Displaced_This --
--------------------
function Displaced_This
(Current_This : System.Address;
Vptr : Vtable_Ptr;
Position : Positive)
return System.Address
is
begin
return Current_This;
-- why is the following here commented out ???
-- + Storage_Offset (Vptr.Prims_Ptr (Position).Delta1);
end Displaced_This;
-------------------
-- Expanded_Name --
-------------------
function Expanded_Name (T : Vtable_Ptr) return String is
Result : Cstring_Ptr := T.TSD.Expanded_Name;
begin
return Result (1 .. Length (Result));
end Expanded_Name;
------------------
-- External_Tag --
------------------
function External_Tag (T : Vtable_Ptr) return String is
Result : Cstring_Ptr := T.TSD.External_Tag;
begin
return Result (1 .. Length (Result));
end External_Tag;
------------
-- Length --
------------
function Length (Str : Cstring_Ptr) return Natural is
Len : Integer := 1;
begin
while Str (Len) /= ASCII.Nul loop
Len := Len + 1;
end loop;
return Len - 1;
end Length;
end Interfaces.CPP;
|
-------------------------------------------------------------------------------
-- This file is part of libsparkcrypto.
--
-- Copyright (C) 2018, Componolit GmbH
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
--
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
--
-- * Neither the name of the nor the names of its contributors may be used
-- to endorse or promote products derived from this software without
-- specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
-- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
-------------------------------------------------------------------------------
with LSC_Test_AES;
with LSC_Test_AES_CBC;
with LSC_Test_SHA2;
with LSC_Test_HMAC_SHA2;
with LSC_Test_SHA1;
with LSC_Test_HMAC_SHA1;
with LSC_Test_RIPEMD160;
with LSC_Test_HMAC_RIPEMD160;
package body LSC_Suite is
use AUnit.Test_Suites;
-- Statically allocate test suite:
Result : aliased Test_Suite;
-- Statically allocate test cases:
Test_AES : aliased LSC_Test_AES.Test_Case;
Test_AES_CBC : aliased LSC_Test_AES_CBC.Test_Case;
Test_SHA2 : aliased LSC_Test_SHA2.Test_Case;
Test_HMAC_SHA2 : aliased LSC_Test_HMAC_SHA2.Test_Case;
Test_SHA1 : aliased LSC_Test_SHA1.Test_Case;
Test_HMAC_SHA1 : aliased LSC_Test_HMAC_SHA1.Test_Case;
Test_RIPEMD160 : aliased LSC_Test_RIPEMD160.Test_Case;
Test_HMAC_RIPEMD160 : aliased LSC_Test_HMAC_RIPEMD160.Test_Case;
function Suite return Access_Test_Suite is
begin
Add_Test (Result'Access, Test_AES'Access);
Add_Test (Result'Access, Test_AES_CBC'Access);
Add_Test (Result'Access, Test_SHA2'Access);
Add_Test (Result'Access, Test_HMAC_SHA2'Access);
Add_Test (Result'Access, Test_SHA1'Access);
Add_Test (Result'Access, Test_HMAC_SHA1'Access);
Add_Test (Result'Access, Test_RIPEMD160'Access);
Add_Test (Result'Access, Test_HMAC_RIPEMD160'Access);
return Result'Access;
end Suite;
end LSC_Suite;
|
-------------------------------------------------------------------------------
-- Copyright (c) 2017 Daniel King
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
-------------------------------------------------------------------------------
with Ada.Real_Time; use Ada.Real_Time;
with Configurations;
with DecaDriver.Core; use DecaDriver.Core;
with DecaDriver.Rx;
with DW1000.Driver; use DW1000.Driver;
with EVB1000.LCD;
with EVB1000.LED;
with Packet_Receiver;
procedure Receiver
is
Packets_Per_Second : constant array (DW1000.Driver.Data_Rates) of Natural :=
(Data_Rate_110k => 64,
Data_Rate_850k => 200,
Data_Rate_6M8 => 250);
Current_Config : DecaDriver.Core.Configuration_Type;
New_Config : DecaDriver.Core.Configuration_Type;
Next_Update_Time : Ada.Real_Time.Time;
procedure Update_LCD
is
Channel_Number_Str : constant array (Positive range 1 .. 7) of Character :=
(1 => '1',
2 => '2',
3 => '3',
4 => '4',
5 => '5',
6 => '6',
7 => '7');
PRF_Str : constant array (PRF_Type) of String (1 .. 5) :=
(PRF_16MHz => "16MHz",
PRF_64MHz => "64MHz");
Data_Rate_Str : constant array (Data_Rates) of String (1 .. 4) :=
(Data_Rate_110k => "110K",
Data_Rate_850k => "850K",
Data_Rate_6M8 => "6.8M");
Line_1 : String := ("Ch" & Channel_Number_Str (Positive (Current_Config.Channel))
& ' ' & PRF_Str (Current_Config.PRF)
& ' ' & Data_Rate_Str (Current_Config.Data_Rate));
Average_RSSI : Float;
Nb_Packets : Natural;
Data_Rate : DW1000.Driver.Data_Rates;
Was_Config_Changed : Boolean;
PLR : Natural;
begin
Packet_Receiver.Packets_Info.Reset
(Average_RSSI,
Nb_Packets,
Data_Rate,
Was_Config_Changed);
if Nb_Packets = 0 or Was_Config_Changed then
EVB1000.LCD.Driver.Put
(Text_1 => Line_1,
Text_2 => "---% ---- dBm");
else
PLR := (Nb_Packets * 100) / Packets_Per_Second (Data_Rate);
EVB1000.LCD.Driver.Put
(Text_1 => Line_1,
Text_2 => (Natural'Image (PLR) & "% "
& Integer'Image (Integer (Average_RSSI - 0.5)) & " dBm"));
end if;
end Update_LCD;
begin
Configurations.Get_Switches_Config (Current_Config);
DecaDriver.Core.Driver.Initialize
(Load_Antenna_Delay => True,
Load_XTAL_Trim => True,
Load_UCode_From_ROM => True);
DecaDriver.Core.Driver.Configure (Current_Config);
DecaDriver.Core.Driver.Configure_LEDs
(Tx_LED_Enable => False,
Rx_LED_Enable => True,
Rx_OK_LED_Enable => False,
SFD_LED_Enable => False,
Test_Flash => False);
DecaDriver.Rx.Receiver.Set_FCS_Check_Enabled (True);
DecaDriver.Rx.Receiver.Start_Rx_Immediate;
Next_Update_Time := Ada.Real_Time.Clock;
loop
Update_LCD;
Configurations.Get_Switches_Config (New_Config);
if New_Config /= Current_Config then
-- Configuration switches have changed. Apply new configuration.
Current_Config := New_Config;
DecaDriver.Core.Driver.Force_Tx_Rx_Off;
DecaDriver.Core.Driver.Configure (New_Config);
DecaDriver.Rx.Receiver.Start_Rx_Immediate;
Packet_Receiver.Packets_Info.Config_Changed;
end if;
Next_Update_Time := Next_Update_Time + Seconds (1);
delay until Next_Update_Time;
EVB1000.LED.Toggle_LED (1);
end loop;
end Receiver;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . S O C K E T S . T H I N --
-- --
-- S p e c --
-- --
-- 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 version is for NT
with Interfaces.C;
with GNAT.Sockets.Thin_Common;
with System;
with System.CRTL;
package GNAT.Sockets.Thin is
use Thin_Common;
package C renames Interfaces.C;
function Socket_Errno return Integer;
-- Returns last socket error number
procedure Set_Socket_Errno (Errno : Integer);
-- Set last socket error number
function Socket_Error_Message (Errno : Integer) return String;
-- Returns the error message string for the error number Errno. If Errno is
-- not known, returns "Unknown system error".
function Host_Errno return Integer;
pragma Import (C, Host_Errno, "__gnat_get_h_errno");
-- Returns last host error number
package Host_Error_Messages is
function Host_Error_Message (H_Errno : Integer) return String;
-- Returns the error message string for the host error number H_Errno.
-- If H_Errno is not known, returns "Unknown system error".
end Host_Error_Messages;
--------------------------------
-- Standard library functions --
--------------------------------
function C_Accept
(S : C.int;
Addr : System.Address;
Addrlen : not null access C.int) return C.int;
function C_Bind
(S : C.int;
Name : System.Address;
Namelen : C.int) return C.int;
function C_Close
(Fd : C.int) return C.int;
function C_Connect
(S : C.int;
Name : System.Address;
Namelen : C.int) return C.int;
function C_Gethostname
(Name : System.Address;
Namelen : C.int) return C.int;
function C_Getpeername
(S : C.int;
Name : System.Address;
Namelen : not null access C.int) return C.int;
function C_Getsockname
(S : C.int;
Name : System.Address;
Namelen : not null access C.int) return C.int;
function C_Getsockopt
(S : C.int;
Level : C.int;
Optname : C.int;
Optval : System.Address;
Optlen : not null access C.int) return C.int;
function Socket_Ioctl
(S : C.int;
Req : SOSC.IOCTL_Req_T;
Arg : access C.int) return C.int;
function C_Listen
(S : C.int;
Backlog : C.int) return C.int;
function C_Recv
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int) return C.int;
function C_Recvfrom
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int;
From : System.Address;
Fromlen : not null access C.int) return C.int;
function C_Recvmsg
(S : C.int;
Msg : System.Address;
Flags : C.int) return System.CRTL.ssize_t;
function C_Select
(Nfds : C.int;
Readfds : access Fd_Set;
Writefds : access Fd_Set;
Exceptfds : access Fd_Set;
Timeout : Timeval_Access) return C.int;
function C_Sendmsg
(S : C.int;
Msg : System.Address;
Flags : C.int) return System.CRTL.ssize_t;
function C_Sendto
(S : C.int;
Msg : System.Address;
Len : C.int;
Flags : C.int;
To : System.Address;
Tolen : C.int) return C.int;
function C_Setsockopt
(S : C.int;
Level : C.int;
Optname : C.int;
Optval : System.Address;
Optlen : C.int) return C.int;
function C_Shutdown
(S : C.int;
How : C.int) return C.int;
function C_Socket
(Domain : C.int;
Typ : C.int;
Protocol : C.int) return C.int;
Default_Socket_Pair_Family : constant := SOSC.AF_INET;
-- Windows has not socketpair system call, and C_Socketpair below is
-- implemented on loopback connected network sockets.
function C_Socketpair
(Domain : C.int;
Typ : C.int;
Protocol : C.int;
Fds : not null access Fd_Pair) return C.int;
-- Creates pair of connected sockets
function C_System
(Command : System.Address) return C.int;
function WSAStartup
(WS_Version : Interfaces.C.unsigned_short;
WSADataAddress : System.Address) return Interfaces.C.int;
-------------------------------------------------------
-- Signalling file descriptors for selector abortion --
-------------------------------------------------------
package Signalling_Fds is
function Create (Fds : not null access Fd_Pair) return C.int;
pragma Convention (C, Create);
-- Create a pair of connected descriptors suitable for use with C_Select
-- (used for signalling in Selector objects).
function Read (Rsig : C.int) return C.int;
pragma Convention (C, Read);
-- Read one byte of data from rsig, the read end of a pair of signalling
-- fds created by Create_Signalling_Fds.
function Write (Wsig : C.int) return C.int;
pragma Convention (C, Write);
-- Write one byte of data to wsig, the write end of a pair of signalling
-- fds created by Create_Signalling_Fds.
procedure Close (Sig : C.int);
pragma Convention (C, Close);
-- Close one end of a pair of signalling fds (ignoring any error)
end Signalling_Fds;
procedure WSACleanup;
procedure Initialize;
procedure Finalize;
private
pragma Import (Stdcall, C_Accept, "accept");
pragma Import (Stdcall, C_Bind, "bind");
pragma Import (Stdcall, C_Close, "closesocket");
pragma Import (Stdcall, C_Gethostname, "gethostname");
pragma Import (Stdcall, C_Getpeername, "getpeername");
pragma Import (Stdcall, C_Getsockname, "getsockname");
pragma Import (Stdcall, C_Getsockopt, "getsockopt");
pragma Import (Stdcall, C_Listen, "listen");
pragma Import (Stdcall, C_Recv, "recv");
pragma Import (Stdcall, C_Recvfrom, "recvfrom");
pragma Import (Stdcall, C_Sendto, "sendto");
pragma Import (Stdcall, C_Setsockopt, "setsockopt");
pragma Import (Stdcall, C_Shutdown, "shutdown");
pragma Import (Stdcall, C_Socket, "socket");
pragma Import (C, C_System, "_system");
pragma Import (Stdcall, Socket_Errno, "WSAGetLastError");
pragma Import (Stdcall, Set_Socket_Errno, "WSASetLastError");
pragma Import (Stdcall, WSAStartup, "WSAStartup");
pragma Import (Stdcall, WSACleanup, "WSACleanup");
end GNAT.Sockets.Thin;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.