text
stringlengths 4
1.04M
|
---|
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Declarations;
with Program.Lexical_Elements;
with Program.Elements.Defining_Identifiers;
with Program.Elements.Discrete_Ranges;
with Program.Elements.Parameter_Specifications;
with Program.Elements.Aspect_Specifications;
package Program.Elements.Entry_Declarations is
pragma Pure (Program.Elements.Entry_Declarations);
type Entry_Declaration is
limited interface and Program.Elements.Declarations.Declaration;
type Entry_Declaration_Access is access all Entry_Declaration'Class
with Storage_Size => 0;
not overriding function Name
(Self : Entry_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access is abstract;
not overriding function Entry_Family_Definition
(Self : Entry_Declaration)
return Program.Elements.Discrete_Ranges.Discrete_Range_Access
is abstract;
not overriding function Parameters
(Self : Entry_Declaration)
return Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access is abstract;
not overriding function Aspects
(Self : Entry_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is abstract;
not overriding function Has_Not (Self : Entry_Declaration) return Boolean
is abstract;
not overriding function Has_Overriding
(Self : Entry_Declaration)
return Boolean is abstract;
type Entry_Declaration_Text is limited interface;
type Entry_Declaration_Text_Access is
access all Entry_Declaration_Text'Class with Storage_Size => 0;
not overriding function To_Entry_Declaration_Text
(Self : aliased in out Entry_Declaration)
return Entry_Declaration_Text_Access is abstract;
not overriding function Not_Token
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Overriding_Token
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Entry_Token
(Self : Entry_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Left_Bracket_Token
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Right_Bracket_Token
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Left_Bracket_Token_2
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Right_Bracket_Token_2
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function With_Token
(Self : Entry_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Semicolon_Token
(Self : Entry_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Entry_Declarations;
|
-- { dg-do compile }
with Varsize3_Pkg1; use Varsize3_Pkg1;
procedure Varsize3_5 is
Filter : constant Arr := True.E;
begin
null;
end;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- A D A . W I D E _ T E X T _ I O . M O D U L A R _ I O --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992,1993,1994,1995,1996 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Wide_Text_IO.Modular_Aux;
with System.Unsigned_Types; use System.Unsigned_Types;
with System.WCh_Con; use System.WCh_Con;
with System.WCh_WtS; use System.WCh_WtS;
package body Ada.Wide_Text_IO.Modular_IO is
subtype TFT is Ada.Wide_Text_IO.File_Type;
-- File type required for calls to routines in Aux
package Aux renames Ada.Wide_Text_IO.Modular_Aux;
---------
-- Get --
---------
procedure Get
(File : in File_Type;
Item : out Num;
Width : in Field := 0)
is
begin
if Num'Size > Unsigned'Size then
Aux.Get_LLU (TFT (File), Long_Long_Unsigned (Item), Width);
else
Aux.Get_Uns (TFT (File), Unsigned (Item), Width);
end if;
exception
when Constraint_Error => raise Data_Error;
end Get;
procedure Get
(Item : out Num;
Width : in Field := 0)
is
begin
Get (Current_Input, Item, Width);
end Get;
procedure Get
(From : in Wide_String;
Item : out Num;
Last : out Positive)
is
S : constant String := Wide_String_To_String (From, WCEM_Upper);
-- String on which we do the actual conversion. Note that the method
-- used for wide character encoding is irrelevant, since if there is
-- a character outside the Standard.Character range then the call to
-- Aux.Gets will raise Data_Error in any case.
begin
if Num'Size > Unsigned'Size then
Aux.Gets_LLU (S, Long_Long_Unsigned (Item), Last);
else
Aux.Gets_Uns (S, Unsigned (Item), Last);
end if;
exception
when Constraint_Error => raise Data_Error;
end Get;
---------
-- Put --
---------
procedure Put
(File : in File_Type;
Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base)
is
begin
if Num'Size > Unsigned'Size then
Aux.Put_LLU (TFT (File), Long_Long_Unsigned (Item), Width, Base);
else
Aux.Put_Uns (TFT (File), Unsigned (Item), Width, Base);
end if;
end Put;
procedure Put
(Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base)
is
begin
Put (Current_Output, Item, Width, Base);
end Put;
procedure Put
(To : out Wide_String;
Item : in Num;
Base : in Number_Base := Default_Base)
is
S : String (To'First .. To'Last);
begin
if Num'Size > Unsigned'Size then
Aux.Puts_LLU (S, Long_Long_Unsigned (Item), Base);
else
Aux.Puts_Uns (S, Unsigned (Item), Base);
end if;
for J in S'Range loop
To (J) := Wide_Character'Val (Character'Pos (S (J)));
end loop;
end Put;
end Ada.Wide_Text_IO.Modular_IO;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.OCL.Numeric_Literal_Exps;
package AMF.OCL.Real_Literal_Exps is
pragma Preelaborate;
type OCL_Real_Literal_Exp is limited interface
and AMF.OCL.Numeric_Literal_Exps.OCL_Numeric_Literal_Exp;
type OCL_Real_Literal_Exp_Access is
access all OCL_Real_Literal_Exp'Class;
for OCL_Real_Literal_Exp_Access'Storage_Size use 0;
not overriding function Get_Real_Symbol
(Self : not null access constant OCL_Real_Literal_Exp)
return AMF.Real is abstract;
-- Getter of RealLiteralExp::realSymbol.
--
not overriding procedure Set_Real_Symbol
(Self : not null access OCL_Real_Literal_Exp;
To : AMF.Real) is abstract;
-- Setter of RealLiteralExp::realSymbol.
--
end AMF.OCL.Real_Literal_Exps;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>call_Loop_LB2D_shift</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>slice_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>out_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>288</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>36</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>buffer_1_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[1].value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>buffer_0_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[0].value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>n1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
<item>68</item>
<item>69</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>tmp_s</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>70</item>
<item>72</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>n1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>75</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>76</item>
<item>77</item>
<item>78</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>92</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>i_0_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>84</item>
<item>86</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>i</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>87</item>
<item>88</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>89</item>
<item>90</item>
<item>91</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_value_V_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>100</item>
<item>101</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>105</item>
<item>107</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>icmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>108</item>
<item>110</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>111</item>
<item>112</item>
<item>113</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>buffer_1_value_V_lo_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>buffer_0_value_V_lo</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_3</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_4</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>p_Result_31_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>120</item>
<item>121</item>
<item>123</item>
<item>125</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>p_Result_31_1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_Result_31_1_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>p_Result_31_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>134</item>
<item>135</item>
<item>137</item>
<item>139</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>p_Result_31_2_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>p_Result_31_2_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_value_V</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>288</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<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>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>52</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>160</item>
<item>161</item>
<item>162</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>53</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>163</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>buffer_1_value_V_lo</name>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>37</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name></name>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>37</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>94</item>
<item>95</item>
<item>279</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>96</item>
<item>97</item>
<item>277</item>
<item>278</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>98</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</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>79</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_39">
<Value>
<Obj>
<type>2</type>
<id>61</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_40">
<Value>
<Obj>
<type>2</type>
<id>67</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="_41">
<Value>
<Obj>
<type>2</type>
<id>71</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1078</content>
</item>
<item class_id_reference="16" object_id="_42">
<Value>
<Obj>
<type>2</type>
<id>74</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_43">
<Value>
<Obj>
<type>2</type>
<id>85</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1920</content>
</item>
<item class_id_reference="16" object_id="_44">
<Value>
<Obj>
<type>2</type>
<id>106</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>10</content>
</item>
<item class_id_reference="16" object_id="_45">
<Value>
<Obj>
<type>2</type>
<id>109</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_46">
<Value>
<Obj>
<type>2</type>
<id>122</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_47">
<Value>
<Obj>
<type>2</type>
<id>124</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_48">
<Value>
<Obj>
<type>2</type>
<id>136</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>64</content>
</item>
<item class_id_reference="16" object_id="_49">
<Value>
<Obj>
<type>2</type>
<id>138</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>95</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_50">
<Obj>
<type>3</type>
<id>10</id>
<name>newFuncRoot</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>3</item>
<item>4</item>
<item>9</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_51">
<Obj>
<type>3</type>
<id>16</id>
<name>.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>11</item>
<item>12</item>
<item>14</item>
<item>15</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_52">
<Obj>
<type>3</type>
<id>20</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_53">
<Obj>
<type>3</type>
<id>26</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>21</item>
<item>22</item>
<item>24</item>
<item>25</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_54">
<Obj>
<type>3</type>
<id>34</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>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_55">
<Obj>
<type>3</type>
<id>49</id>
<name>.preheader.i.i.preheader.0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_56">
<Obj>
<type>3</type>
<id>55</id>
<name>._crit_edge.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>50</item>
<item>52</item>
<item>53</item>
<item>54</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_57">
<Obj>
<type>3</type>
<id>58</id>
<name>linebuffer_1D<1920ul, 3ul, 1ul, 1ul, 1ul, 3ul, unsigned int>.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_58">
<Obj>
<type>3</type>
<id>60</id>
<name>.exitStub</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>91</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_59">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_60">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_61">
<id>64</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_62">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_63">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_64">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_65">
<id>69</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_66">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_67">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_68">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_69">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_70">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>77</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>78</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>79</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>83</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>90</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>91</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>92</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>98</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>112</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>113</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_115">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_116">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_117">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_118">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_119">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_120">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_121">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>163</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>266</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>267</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>268</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>269</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>270</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>271</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>272</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>273</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>274</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>275</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>276</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>277</id>
<edge_type>4</edge_type>
<source_obj>50</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>278</id>
<edge_type>4</edge_type>
<source_obj>35</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>279</id>
<edge_type>4</edge_type>
<source_obj>36</source_obj>
<sink_obj>52</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_150">
<mId>1</mId>
<mTag>call_Loop_LB2D_shift</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>7</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2072995</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_151">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_152">
<mId>3</mId>
<mTag>LB2D_shift</mTag>
<mType>1</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>4</item>
<item>5</item>
<item>6</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>1078</mMinTripCount>
<mMaxTripCount>1078</mMaxTripCount>
<mMinLatency>2072994</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_153">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>16</item>
<item>20</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_154">
<mId>5</mId>
<mTag>LB1D_shiftreg</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>26</item>
<item>34</item>
<item>49</item>
<item>55</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>1920</mMinTripCount>
<mMaxTripCount>1920</mMaxTripCount>
<mMinLatency>1920</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_155">
<mId>6</mId>
<mTag>Region 2</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_156">
<mId>7</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>36</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>3</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>10</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="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="_157">
<region_name>LB1D_shiftreg</region_name>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>26</item>
<item>34</item>
<item>49</item>
<item>55</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="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>
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . F I X E D _ I O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Fixed point I/O
-- ---------------
-- The following documents implementation details of the fixed point
-- input/output routines in the GNAT run time. The first part describes
-- general properties of fixed point types as defined by the Ada 95 standard,
-- including the Information Systems Annex.
-- Subsequently these are reduced to implementation constraints and the impact
-- of these constraints on a few possible approaches to I/O are given.
-- Based on this analysis, a specific implementation is selected for use in
-- the GNAT run time. Finally, the chosen algorithm is analyzed numerically in
-- order to provide user-level documentation on limits for range and precision
-- of fixed point types as well as accuracy of input/output conversions.
-- -------------------------------------------
-- - General Properties of Fixed Point Types -
-- -------------------------------------------
-- Operations on fixed point values, other than input and output, are not
-- important for the purposes of this document. Only the set of values that a
-- fixed point type can represent and the input and output operations are
-- significant.
-- Values
-- ------
-- Set set of values of a fixed point type comprise the integral
-- multiples of a number called the small of the type. The small can
-- either be a power of ten, a power of two or (if the implementation
-- allows) an arbitrary strictly positive real value.
-- Implementations need to support fixed-point types with a precision
-- of at least 24 bits, and (in order to comply with the Information
-- Systems Annex) decimal types need to support at least digits 18.
-- For the rest, however, no requirements exist for the minimal small
-- and range that need to be supported.
-- Operations
-- ----------
-- 'Image and 'Wide_Image (see RM 3.5(34))
-- These attributes return a decimal real literal best approximating
-- the value (rounded away from zero if halfway between) with a
-- single leading character that is either a minus sign or a space,
-- one or more digits before the decimal point (with no redundant
-- leading zeros), a decimal point, and N digits after the decimal
-- point. For a subtype S, the value of N is S'Aft, the smallest
-- positive integer such that (10**N)*S'Delta is greater or equal to
-- one, see RM 3.5.10(5).
-- For an arbitrary small, this means large number arithmetic needs
-- to be performed.
-- Put (see RM A.10.9(22-26))
-- The requirements for Put add no extra constraints over the image
-- attributes, although it would be nice to be able to output more
-- than S'Aft digits after the decimal point for values of subtype S.
-- 'Value and 'Wide_Value attribute (RM 3.5(40-55))
-- Since the input can be given in any base in the range 2..16,
-- accurate conversion to a fixed point number may require
-- arbitrary precision arithmetic if there is no limit on the
-- magnitude of the small of the fixed point type.
-- Get (see RM A.10.9(12-21))
-- The requirements for Get are identical to those of the Value
-- attribute.
-- ------------------------------
-- - Implementation Constraints -
-- ------------------------------
-- The requirements listed above for the input/output operations lead to
-- significant complexity, if no constraints are put on supported smalls.
-- Implementation Strategies
-- -------------------------
-- * Float arithmetic
-- * Arbitrary-precision integer arithmetic
-- * Fixed-precision integer arithmetic
-- Although it seems convenient to convert fixed point numbers to floating-
-- point and then print them, this leads to a number of restrictions.
-- The first one is precision. The widest floating-point type generally
-- available has 53 bits of mantissa. This means that Fine_Delta cannot
-- be less than 2.0**(-53).
-- In GNAT, Fine_Delta is 2.0**(-63), and Duration for example is a
-- 64-bit type. It would still be possible to use multi-precision
-- floating-point to perform calculations using longer mantissas,
-- but this is a much harder approach.
-- The base conversions needed for input and output of (non-decimal)
-- fixed point types can be seen as pairs of integer multiplications
-- and divisions.
-- Arbitrary-precision integer arithmetic would be suitable for the job
-- at hand, but has the draw-back that it is very heavy implementation-wise.
-- Especially in embedded systems, where fixed point types are often used,
-- it may not be desirable to require large amounts of storage and time
-- for fixed I/O operations.
-- Fixed-precision integer arithmetic has the advantage of simplicity and
-- speed. For the most common fixed point types this would be a perfect
-- solution. The downside however may be a too limited set of acceptable
-- fixed point types.
-- Extra Precision
-- ---------------
-- Using a scaled divide which truncates and returns a remainder R,
-- another E trailing digits can be calculated by computing the value
-- (R * (10.0**E)) / Z using another scaled divide. This procedure
-- can be repeated to compute an arbitrary number of digits in linear
-- time and storage. The last scaled divide should be rounded, with
-- a possible carry propagating to the more significant digits, to
-- ensure correct rounding of the unit in the last place.
-- An extension of this technique is to limit the value of Q to 9 decimal
-- digits, since 32-bit integers can be much more efficient than 64-bit
-- integers to output.
with Interfaces; use Interfaces;
with System.Arith_64; use System.Arith_64;
with System.Img_Real; use System.Img_Real;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Text_IO.Float_Aux;
with Ada.Text_IO.Generic_Aux;
package body Ada.Text_IO.Fixed_IO is
-- Note: we still use the floating-point I/O routines for input of
-- ordinary fixed-point and output using exponent format. This will
-- result in inaccuracies for fixed point types with a small that is
-- not a power of two, and for types that require more precision than
-- is available in Long_Long_Float.
package Aux renames Ada.Text_IO.Float_Aux;
Extra_Layout_Space : constant Field := 5 + Num'Fore;
-- Extra space that may be needed for output of sign, decimal point,
-- exponent indication and mandatory decimals after and before the
-- decimal point. A string with length
-- Fore + Aft + Exp + Extra_Layout_Space
-- is always long enough for formatting any fixed point number
-- Implementation of Put routines
-- The following section describes a specific implementation choice for
-- performing base conversions needed for output of values of a fixed
-- point type T with small T'Small. The goal is to be able to output
-- all values of types with a precision of 64 bits and a delta of at
-- least 2.0**(-63), as these are current GNAT limitations already.
-- The chosen algorithm uses fixed precision integer arithmetic for
-- reasons of simplicity and efficiency. It is important to understand
-- in what ways the most simple and accurate approach to fixed point I/O
-- is limiting, before considering more complicated schemes.
-- Without loss of generality assume T has a range (-2.0**63) * T'Small
-- .. (2.0**63 - 1) * T'Small, and is output with Aft digits after the
-- decimal point and T'Fore - 1 before. If T'Small is integer, or
-- 1.0 / T'Small is integer, let S = T'Small and E = 0. For other T'Small,
-- let S and E be integers such that S / 10**E best approximates T'Small
-- and S is in the range 10**17 .. 10**18 - 1. The extra decimal scaling
-- factor 10**E can be trivially handled during final output, by adjusting
-- the decimal point or exponent.
-- Convert a value X * S of type T to a 64-bit integer value Q equal
-- to 10.0**D * (X * S) rounded to the nearest integer.
-- This conversion is a scaled integer divide of the form
-- Q := (X * Y) / Z,
-- where all variables are 64-bit signed integers using 2's complement,
-- and both the multiplication and division are done using full
-- intermediate precision. The final decimal value to be output is
-- Q * 10**(E-D)
-- This value can be written to the output file or to the result string
-- according to the format described in RM A.3.10. The details of this
-- operation are omitted here.
-- A 64-bit value can contain all integers with 18 decimal digits, but
-- not all with 19 decimal digits. If the total number of requested output
-- digits (Fore - 1) + Aft is greater than 18, for purposes of the
-- conversion Aft is adjusted to 18 - (Fore - 1). In that case, or
-- when Fore > 19, trailing zeros can complete the output after writing
-- the first 18 significant digits, or the technique described in the
-- next section can be used.
-- The final expression for D is
-- D := Integer'Max (-18, Integer'Min (Aft, 18 - (Fore - 1)));
-- For Y and Z the following expressions can be derived:
-- Q / (10.0**D) = X * S
-- Q = X * S * (10.0**D) = (X * Y) / Z
-- S * 10.0**D = Y / Z;
-- If S is an integer greater than or equal to one, then Fore must be at
-- least 20 in order to print T'First, which is at most -2.0**63.
-- This means D < 0, so use
-- (1) Y = -S and Z = -10**(-D)
-- If 1.0 / S is an integer greater than one, use
-- (2) Y = -10**D and Z = -(1.0 / S), for D >= 0
-- or
-- (3) Y = 1 and Z = (1.0 / S) * 10**(-D), for D < 0
-- Negative values are used for nominator Y and denominator Z, so that S
-- can have a maximum value of 2.0**63 and a minimum of 2.0**(-63).
-- For Z in -1 .. -9, Fore will still be 20, and D will be negative, as
-- (-2.0**63) / -9 is greater than 10**18. In these cases there is room
-- in the denominator for the extra decimal scaling required, so case (3)
-- will not overflow.
pragma Assert (System.Fine_Delta >= 2.0**(-63));
pragma Assert (Num'Small in 2.0**(-63) .. 2.0**63);
pragma Assert (Num'Fore <= 37);
-- These assertions need to be relaxed to allow for a Small of
-- 2.0**(-64) at least, since there is an ACATS test for this ???
Max_Digits : constant := 18;
-- Maximum number of decimal digits that can be represented in a
-- 64-bit signed number, see above
-- The constants E0 .. E5 implement a binary search for the appropriate
-- power of ten to scale the small so that it has one digit before the
-- decimal point.
subtype Int is Integer;
E0 : constant Int := -(20 * Boolean'Pos (Num'Small >= 1.0E1));
E1 : constant Int := E0 + 10 * Boolean'Pos (Num'Small * 10.0**E0 < 1.0E-10);
E2 : constant Int := E1 + 5 * Boolean'Pos (Num'Small * 10.0**E1 < 1.0E-5);
E3 : constant Int := E2 + 3 * Boolean'Pos (Num'Small * 10.0**E2 < 1.0E-3);
E4 : constant Int := E3 + 2 * Boolean'Pos (Num'Small * 10.0**E3 < 1.0E-1);
E5 : constant Int := E4 + 1 * Boolean'Pos (Num'Small * 10.0**E4 < 1.0E-0);
Scale : constant Integer := E5;
pragma Assert (Num'Small * 10.0**Scale >= 1.0
and then Num'Small * 10.0**Scale < 10.0);
Exact : constant Boolean :=
Float'Floor (Num'Small) = Float'Ceiling (Num'Small)
or else Float'Floor (1.0 / Num'Small) = Float'Ceiling (1.0 / Num'Small)
or else Num'Small >= 10.0**Max_Digits;
-- True iff a numerator and denominator can be calculated such that
-- their ratio exactly represents the small of Num.
procedure Put
(To : out String;
Last : out Natural;
Item : Num;
Fore : Integer;
Aft : Field;
Exp : Field);
-- Actual output function, used internally by all other Put routines.
-- The formal Fore is an Integer, not a Field, because the routine is
-- also called from the version of Put that performs I/O to a string,
-- where the starting position depends on the size of the String, and
-- bears no relation to the bounds of Field.
---------
-- Get --
---------
procedure Get
(File : File_Type;
Item : out Num;
Width : Field := 0)
is
pragma Unsuppress (Range_Check);
begin
Aux.Get (File, Long_Long_Float (Item), Width);
exception
when Constraint_Error => raise Data_Error;
end Get;
procedure Get
(Item : out Num;
Width : Field := 0)
is
pragma Unsuppress (Range_Check);
begin
Aux.Get (Current_In, Long_Long_Float (Item), Width);
exception
when Constraint_Error => raise Data_Error;
end Get;
procedure Get
(From : String;
Item : out Num;
Last : out Positive)
is
pragma Unsuppress (Range_Check);
begin
Aux.Gets (From, Long_Long_Float (Item), Last);
exception
when Constraint_Error => raise Data_Error;
end Get;
---------
-- Put --
---------
procedure Put
(File : File_Type;
Item : Num;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
S : String (1 .. Fore + Aft + Exp + Extra_Layout_Space);
Last : Natural;
begin
Put (S, Last, Item, Fore, Aft, Exp);
Generic_Aux.Put_Item (File, S (1 .. Last));
end Put;
procedure Put
(Item : Num;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
S : String (1 .. Fore + Aft + Exp + Extra_Layout_Space);
Last : Natural;
begin
Put (S, Last, Item, Fore, Aft, Exp);
Generic_Aux.Put_Item (Text_IO.Current_Out, S (1 .. Last));
end Put;
procedure Put
(To : out String;
Item : Num;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
is
Fore : constant Integer :=
To'Length
- 1 -- Decimal point
- Field'Max (1, Aft) -- Decimal part
- Boolean'Pos (Exp /= 0) -- Exponent indicator
- Exp; -- Exponent
Last : Natural;
begin
if Fore - Boolean'Pos (Item < 0.0) < 1 then
raise Layout_Error;
end if;
Put (To, Last, Item, Fore, Aft, Exp);
if Last /= To'Last then
raise Layout_Error;
end if;
end Put;
procedure Put
(To : out String;
Last : out Natural;
Item : Num;
Fore : Integer;
Aft : Field;
Exp : Field)
is
subtype Digit is Int64 range 0 .. 9;
X : constant Int64 := Int64'Integer_Value (Item);
A : constant Field := Field'Max (Aft, 1);
Neg : constant Boolean := (Item < 0.0);
Pos : Integer := 0; -- Next digit X has value X * 10.0**Pos;
procedure Put_Character (C : Character);
pragma Inline (Put_Character);
-- Add C to the output string To, updating Last
procedure Put_Digit (X : Digit);
-- Add digit X to the output string (going from left to right), updating
-- Last and Pos, and inserting the sign, leading zeros or a decimal
-- point when necessary. After outputting the first digit, Pos must not
-- be changed outside Put_Digit anymore.
procedure Put_Int64 (X : Int64; Scale : Integer);
-- Output the decimal number abs X * 10**Scale
procedure Put_Scaled
(X, Y, Z : Int64;
A : Field;
E : Integer);
-- Output the decimal number (X * Y / Z) * 10**E, producing A digits
-- after the decimal point and rounding the final digit. The value
-- X * Y / Z is computed with full precision, but must be in the
-- range of Int64.
-------------------
-- Put_Character --
-------------------
procedure Put_Character (C : Character) is
begin
Last := Last + 1;
-- Never put a character outside of string To. Exception Layout_Error
-- will be raised later if Last is greater than To'Last.
if Last <= To'Last then
To (Last) := C;
end if;
end Put_Character;
---------------
-- Put_Digit --
---------------
procedure Put_Digit (X : Digit) is
Digs : constant array (Digit) of Character := "0123456789";
begin
if Last = To'First - 1 then
if X /= 0 or else Pos <= 0 then
-- Before outputting first digit, include leading space,
-- possible minus sign and, if the first digit is fractional,
-- decimal seperator and leading zeros.
-- The Fore part has Pos + 1 + Boolean'Pos (Neg) characters,
-- if Pos >= 0 and otherwise has a single zero digit plus minus
-- sign if negative. Add leading space if necessary.
for J in Integer'Max (0, Pos) + 2 + Boolean'Pos (Neg) .. Fore
loop
Put_Character (' ');
end loop;
-- Output minus sign, if number is negative
if Neg then
Put_Character ('-');
end if;
-- If starting with fractional digit, output leading zeros
if Pos < 0 then
Put_Character ('0');
Put_Character ('.');
for J in Pos .. -2 loop
Put_Character ('0');
end loop;
end if;
Put_Character (Digs (X));
end if;
else
-- This is not the first digit to be output, so the only
-- special handling is that for the decimal point
if Pos = -1 then
Put_Character ('.');
end if;
Put_Character (Digs (X));
end if;
Pos := Pos - 1;
end Put_Digit;
---------------
-- Put_Int64 --
---------------
procedure Put_Int64 (X : Int64; Scale : Integer) is
begin
if X = 0 then
return;
end if;
if X not in -9 .. 9 then
Put_Int64 (X / 10, Scale + 1);
end if;
-- Use Put_Digit to advance Pos. This fixes a case where the second
-- or later Scaled_Divide would omit leading zeroes, resulting in
-- too few digits produced and a Layout_Error as result.
while Pos > Scale loop
Put_Digit (0);
end loop;
-- If and only if more than one digit is output before the decimal
-- point, pos will be unequal to scale when outputting the first
-- digit.
pragma Assert (Pos = Scale or else Last = To'First - 1);
Pos := Scale;
Put_Digit (abs (X rem 10));
end Put_Int64;
----------------
-- Put_Scaled --
----------------
procedure Put_Scaled
(X, Y, Z : Int64;
A : Field;
E : Integer)
is
pragma Assert (E >= -Max_Digits);
AA : constant Field := E + A;
N : constant Natural := (AA + Max_Digits - 1) / Max_Digits + 1;
Q : array (0 .. N - 1) of Int64 := (others => 0);
-- Each element of Q has Max_Digits decimal digits, except the
-- last, which has eAA rem Max_Digits. Only Q (Q'First) may have an
-- absolute value equal to or larger than 10**Max_Digits. Only the
-- absolute value of the elements is not significant, not the sign.
XX : Int64 := X;
YY : Int64 := Y;
begin
for J in Q'Range loop
exit when XX = 0;
if J > 0 then
YY := 10**(Integer'Min (Max_Digits, AA - (J - 1) * Max_Digits));
end if;
Scaled_Divide (XX, YY, Z, Q (J), R => XX, Round => False);
end loop;
if -E > A then
pragma Assert (N = 1);
Discard_Extra_Digits : declare
Factor : constant Int64 := 10**(-E - A);
begin
-- The scaling factors were such that the first division
-- produced more digits than requested. So divide away extra
-- digits and compute new remainder for later rounding.
if abs (Q (0) rem Factor) >= Factor / 2 then
Q (0) := abs (Q (0) / Factor) + 1;
else
Q (0) := Q (0) / Factor;
end if;
XX := 0;
end Discard_Extra_Digits;
end if;
-- At this point XX is a remainder and we need to determine if the
-- quotient in Q must be rounded away from zero.
-- As XX is less than the divisor, it is safe to take its absolute
-- without chance of overflow. The check to see if XX is at least
-- half the absolute value of the divisor must be done carefully to
-- avoid overflow or lose precision.
XX := abs XX;
if XX >= 2**62
or else (Z < 0 and then (-XX) * 2 <= Z)
or else (Z >= 0 and then XX * 2 >= Z)
then
-- OK, rounding is necessary. As the sign is not significant,
-- take advantage of the fact that an extra negative value will
-- always be available when propagating the carry.
Q (Q'Last) := -abs Q (Q'Last) - 1;
Propagate_Carry :
for J in reverse 1 .. Q'Last loop
if Q (J) = YY or else Q (J) = -YY then
Q (J) := 0;
Q (J - 1) := -abs Q (J - 1) - 1;
else
exit Propagate_Carry;
end if;
end loop Propagate_Carry;
end if;
for J in Q'First .. Q'Last - 1 loop
Put_Int64 (Q (J), E - J * Max_Digits);
end loop;
Put_Int64 (Q (Q'Last), -A);
end Put_Scaled;
-- Start of processing for Put
begin
Last := To'First - 1;
if Exp /= 0 then
-- With the Exp format, it is not known how many output digits to
-- generate, as leading zeros must be ignored. Computing too many
-- digits and then truncating the output will not give the closest
-- output, it is necessary to round at the correct digit.
-- The general approach is as follows: as long as no digits have
-- been generated, compute the Aft next digits (without rounding).
-- Once a non-zero digit is generated, determine the exact number
-- of digits remaining and compute them with rounding.
-- Since a large number of iterations might be necessary in case
-- of Aft = 1, the following optimization would be desirable.
-- Count the number Z of leading zero bits in the integer
-- representation of X, and start with producing Aft + Z * 1000 /
-- 3322 digits in the first scaled division.
-- However, the floating-point routines are still used now ???
System.Img_Real.Set_Image_Real (Long_Long_Float (Item), To, Last,
Fore, Aft, Exp);
return;
end if;
if Exact then
declare
D : constant Integer := Integer'Min (A, Max_Digits
- (Num'Fore - 1));
Y : constant Int64 := Int64'Min (Int64 (-Num'Small), -1)
* 10**Integer'Max (0, D);
Z : constant Int64 := Int64'Min (Int64 (-(1.0 / Num'Small)), -1)
* 10**Integer'Max (0, -D);
begin
Put_Scaled (X, Y, Z, A, -D);
end;
else -- not Exact
declare
E : constant Integer := Max_Digits - 1 + Scale;
D : constant Integer := Scale - 1;
Y : constant Int64 := Int64 (-Num'Small * 10.0**E);
Z : constant Int64 := -10**Max_Digits;
begin
Put_Scaled (X, Y, Z, A, -D);
end;
end if;
-- If only zero digits encountered, unit digit has not been output yet
if Last < To'First then
Pos := 0;
elsif Last > To'Last then
raise Layout_Error; -- Not enough room in the output variable
end if;
-- Always output digits up to the first one after the decimal point
while Pos >= -A loop
Put_Digit (0);
end loop;
end Put;
end Ada.Text_IO.Fixed_IO;
|
-----------------------------------------------------------------------
-- atlas -- atlas applications
-----------------------------------------------------------------------
-- Copyright (C) 2012, 2013, 2014, 2015, 2016, 2017, 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.
-----------------------------------------------------------------------
with GNAT.MD5;
with Util.Log.Loggers;
with Util.Beans.Basic;
with Util.Strings.Transforms;
with EL.Functions;
with ASF.Applications.Main;
with ADO.Queries;
with ADO.Sessions;
with AWA.Services.Contexts;
with Atlas.Applications.Models;
-- with Atlas.XXX.Module;
package body Atlas.Applications is
package ASC renames AWA.Services.Contexts;
use AWA.Applications;
type User_Stat_Info_Access is access all Atlas.Applications.Models.User_Stat_Info;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Atlas");
procedure Set_Functions (Mapper : in out EL.Functions.Function_Mapper'Class);
function Create_User_Stat_Bean return Util.Beans.Basic.Readonly_Bean_Access;
-- ------------------------------
-- Create the user statistics bean which indicates what feature the user has used.
-- ------------------------------
function Create_User_Stat_Bean return Util.Beans.Basic.Readonly_Bean_Access is
use type ASC.Service_Context_Access;
Ctx : constant ASC.Service_Context_Access := ASC.Current;
Result : User_Stat_Info_Access;
begin
if Ctx /= null then
declare
List : Atlas.Applications.Models.User_Stat_Info_List_Bean;
Session : ADO.Sessions.Session := ASC.Get_Session (Ctx);
User : constant ADO.Identifier := Ctx.Get_User_Identifier;
Query : ADO.Queries.Context;
begin
Query.Set_Query (Atlas.Applications.Models.Query_User_Stat);
Query.Bind_Param ("user_id", User);
Atlas.Applications.Models.List (List, Session, Query);
Result := new Atlas.Applications.Models.User_Stat_Info;
Result.all := List.List.Element (1);
end;
else
Result := new Atlas.Applications.Models.User_Stat_Info;
Result.Post_Count := 0;
Result.Document_Count := 0;
Result.Question_Count := 0;
Result.Answer_Count := 0;
end if;
return Result.all'Access;
end Create_User_Stat_Bean;
-- ------------------------------
-- Given an Email address, return the Gravatar link to the user image.
-- (See http://en.gravatar.com/site/implement/hash/ and
-- http://en.gravatar.com/site/implement/images/)
-- ------------------------------
function Get_Gravatar_Link (Email : in String) return String is
E : constant String := Util.Strings.Transforms.To_Lower_Case (Email);
C : constant GNAT.MD5.Message_Digest := GNAT.MD5.Digest (E);
begin
return "http://www.gravatar.com/avatar/" & C;
end Get_Gravatar_Link;
-- ------------------------------
-- EL function to convert an Email address to a Gravatar image.
-- ------------------------------
function To_Gravatar_Link (Email : in Util.Beans.Objects.Object)
return Util.Beans.Objects.Object is
Link : constant String := Get_Gravatar_Link (Util.Beans.Objects.To_String (Email));
begin
return Util.Beans.Objects.To_Object (Link);
end To_Gravatar_Link;
procedure Set_Functions (Mapper : in out EL.Functions.Function_Mapper'Class) is
begin
Mapper.Set_Function (Name => "gravatar",
Namespace => ATLAS_NS_URI,
Func => To_Gravatar_Link'Access);
end Set_Functions;
-- ------------------------------
-- Initialize the ASF components provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the component factories used by the application.
-- ------------------------------
overriding
procedure Initialize_Components (App : in out Application) is
procedure Register is
new ASF.Applications.Main.Register_Functions (Set_Functions);
begin
App.Self := App'Unchecked_Access;
App.Set_Global ("contextPath", CONTEXT_PATH);
Register (App);
AWA.Applications.Application (App).Initialize_Components;
App.Add_Converter (Name => "smartDateConverter",
Converter => App.Self.Rel_Date_Converter'Access);
App.Add_Converter (Name => "sizeConverter",
Converter => App.Self.Size_Converter'Access);
App.Register_Class (Name => "Atlas.Applications.User_Stat_Bean",
Handler => Create_User_Stat_Bean'Access);
end Initialize_Components;
-- ------------------------------
-- Initialize the servlets provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the application servlets.
-- ------------------------------
overriding
procedure Initialize_Servlets (App : in out Application) is
begin
Log.Info ("Initializing application servlets...");
AWA.Applications.Application (App).Initialize_Servlets;
App.Add_Servlet (Name => "faces", Server => App.Self.Faces'Access);
App.Add_Servlet (Name => "files", Server => App.Self.Files'Access);
App.Add_Servlet (Name => "ajax", Server => App.Self.Ajax'Access);
App.Add_Servlet (Name => "measures", Server => App.Self.Measures'Access);
App.Add_Servlet (Name => "auth", Server => App.Self.Auth'Access);
App.Add_Servlet (Name => "verify-auth", Server => App.Self.Verify_Auth'Access);
end Initialize_Servlets;
-- ------------------------------
-- Initialize the filters provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the application filters.
-- ------------------------------
overriding
procedure Initialize_Filters (App : in out Application) is
begin
Log.Info ("Initializing application filters...");
AWA.Applications.Application (App).Initialize_Filters;
App.Add_Filter (Name => "dump", Filter => App.Self.Dump'Access);
App.Add_Filter (Name => "measures", Filter => App.Self.Measures'Access);
App.Add_Filter (Name => "service", Filter => App.Self.Service_Filter'Access);
App.Add_Filter (Name => "no-cache", Filter => App.Self.No_Cache'Access);
end Initialize_Filters;
-- ------------------------------
-- Initialize the AWA modules provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the modules used by the application.
-- ------------------------------
overriding
procedure Initialize_Modules (App : in out Application) is
begin
Log.Info ("Initializing application modules...");
Register (App => App.Self.all'Access,
Name => AWA.Users.Modules.NAME,
URI => "user",
Module => App.User_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Workspaces.Modules.NAME,
URI => "workspaces",
Module => App.Workspace_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Mail.Modules.NAME,
Module => App.Mail_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Counters.Modules.NAME,
Module => App.Counter_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Jobs.Modules.NAME,
Module => App.Job_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Tags.Modules.NAME,
Module => App.Tag_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Comments.Modules.NAME,
Module => App.Comment_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Blogs.Modules.NAME,
Module => App.Blog_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Storages.Modules.NAME,
Module => App.Storage_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Images.Modules.NAME,
Module => App.Image_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Votes.Modules.NAME,
Module => App.Vote_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Questions.Modules.NAME,
Module => App.Question_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Wikis.Modules.NAME,
Module => App.Wiki_Module'Access);
Register (App => App.Self.all'Access,
Name => AWA.Wikis.Previews.NAME,
Module => App.Preview_Module'Access);
Register (App => App.Self.all'Access,
Name => Atlas.Microblog.Modules.NAME,
Module => App.Microblog_Module'Access);
Register (App => App.Self.all'Access,
Name => Atlas.Reviews.Modules.NAME,
Module => App.Review_Module'Access);
end Initialize_Modules;
end Atlas.Applications;
|
-- This spec has been automatically generated from STM32F427x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with System;
with HAL;
package STM32_SVD.FSMC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-------------------
-- BCR1_Register --
-------------------
subtype BCR1_MTYP_Field is HAL.UInt2;
subtype BCR1_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 1
type BCR1_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR1_MTYP_Field := 16#0#;
-- MWID
MWID : BCR1_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- unspecified
Reserved_10_10 : HAL.Bit := 16#0#;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- CCLKEN
CCLKEN : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR1_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
Reserved_10_10 at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
CCLKEN at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
------------------
-- BTR_Register --
------------------
subtype BTR1_ADDSET_Field is HAL.UInt4;
subtype BTR1_ADDHLD_Field is HAL.UInt4;
subtype BTR1_DATAST_Field is HAL.Byte;
subtype BTR1_BUSTURN_Field is HAL.UInt4;
subtype BTR1_CLKDIV_Field is HAL.UInt4;
subtype BTR1_DATLAT_Field is HAL.UInt4;
subtype BTR1_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select timing register 1
type BTR_Register is record
-- ADDSET
ADDSET : BTR1_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BTR1_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BTR1_DATAST_Field := 16#FF#;
-- BUSTURN
BUSTURN : BTR1_BUSTURN_Field := 16#F#;
-- CLKDIV
CLKDIV : BTR1_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BTR1_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BTR1_ACCMOD_Field := 16#3#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#3#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
BUSTURN at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
------------------
-- BCR_Register --
------------------
subtype BCR2_MTYP_Field is HAL.UInt2;
subtype BCR2_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 2
type BCR_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR2_MTYP_Field := 16#0#;
-- MWID
MWID : BCR2_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- WRAPMOD
WRAPMOD : Boolean := False;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
WRAPMOD at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
------------------
-- PCR_Register --
------------------
subtype PCR2_PWID_Field is HAL.UInt2;
subtype PCR2_TCLR_Field is HAL.UInt4;
subtype PCR2_TAR_Field is HAL.UInt4;
subtype PCR2_ECCPS_Field is HAL.UInt3;
-- PC Card/NAND Flash control register 2
type PCR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- PWAITEN
PWAITEN : Boolean := False;
-- PBKEN
PBKEN : Boolean := False;
-- PTYP
PTYP : Boolean := True;
-- PWID
PWID : PCR2_PWID_Field := 16#1#;
-- ECCEN
ECCEN : Boolean := False;
-- unspecified
Reserved_7_8 : HAL.UInt2 := 16#0#;
-- TCLR
TCLR : PCR2_TCLR_Field := 16#0#;
-- TAR
TAR : PCR2_TAR_Field := 16#0#;
-- ECCPS
ECCPS : PCR2_ECCPS_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PCR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
PWAITEN at 0 range 1 .. 1;
PBKEN at 0 range 2 .. 2;
PTYP at 0 range 3 .. 3;
PWID at 0 range 4 .. 5;
ECCEN at 0 range 6 .. 6;
Reserved_7_8 at 0 range 7 .. 8;
TCLR at 0 range 9 .. 12;
TAR at 0 range 13 .. 16;
ECCPS at 0 range 17 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-----------------
-- SR_Register --
-----------------
-- FIFO status and interrupt register 2
type SR_Register is record
-- IRS
IRS : Boolean := False;
-- ILS
ILS : Boolean := False;
-- IFS
IFS : Boolean := False;
-- IREN
IREN : Boolean := False;
-- ILEN
ILEN : Boolean := False;
-- IFEN
IFEN : Boolean := False;
-- Read-only. FEMPT
FEMPT : Boolean := True;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
IRS at 0 range 0 .. 0;
ILS at 0 range 1 .. 1;
IFS at 0 range 2 .. 2;
IREN at 0 range 3 .. 3;
ILEN at 0 range 4 .. 4;
IFEN at 0 range 5 .. 5;
FEMPT at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-------------------
-- PMEM_Register --
-------------------
subtype PMEM2_MEMSETx_Field is HAL.Byte;
subtype PMEM2_MEMWAITx_Field is HAL.Byte;
subtype PMEM2_MEMHOLDx_Field is HAL.Byte;
subtype PMEM2_MEMHIZx_Field is HAL.Byte;
-- Common memory space timing register 2
type PMEM_Register is record
-- MEMSETx
MEMSETx : PMEM2_MEMSETx_Field := 16#FC#;
-- MEMWAITx
MEMWAITx : PMEM2_MEMWAITx_Field := 16#FC#;
-- MEMHOLDx
MEMHOLDx : PMEM2_MEMHOLDx_Field := 16#FC#;
-- MEMHIZx
MEMHIZx : PMEM2_MEMHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMEM_Register use record
MEMSETx at 0 range 0 .. 7;
MEMWAITx at 0 range 8 .. 15;
MEMHOLDx at 0 range 16 .. 23;
MEMHIZx at 0 range 24 .. 31;
end record;
-------------------
-- PATT_Register --
-------------------
subtype PATT2_ATTSETx_Field is HAL.Byte;
subtype PATT2_ATTWAITx_Field is HAL.Byte;
subtype PATT2_ATTHOLDx_Field is HAL.Byte;
subtype PATT2_ATTHIZx_Field is HAL.Byte;
-- Attribute memory space timing register 2
type PATT_Register is record
-- ATTSETx
ATTSETx : PATT2_ATTSETx_Field := 16#FC#;
-- ATTWAITx
ATTWAITx : PATT2_ATTWAITx_Field := 16#FC#;
-- ATTHOLDx
ATTHOLDx : PATT2_ATTHOLDx_Field := 16#FC#;
-- ATTHIZx
ATTHIZx : PATT2_ATTHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PATT_Register use record
ATTSETx at 0 range 0 .. 7;
ATTWAITx at 0 range 8 .. 15;
ATTHOLDx at 0 range 16 .. 23;
ATTHIZx at 0 range 24 .. 31;
end record;
-------------------
-- PIO4_Register --
-------------------
subtype PIO4_IOSETx_Field is HAL.Byte;
subtype PIO4_IOWAITx_Field is HAL.Byte;
subtype PIO4_IOHOLDx_Field is HAL.Byte;
subtype PIO4_IOHIZx_Field is HAL.Byte;
-- I/O space timing register 4
type PIO4_Register is record
-- IOSETx
IOSETx : PIO4_IOSETx_Field := 16#FC#;
-- IOWAITx
IOWAITx : PIO4_IOWAITx_Field := 16#FC#;
-- IOHOLDx
IOHOLDx : PIO4_IOHOLDx_Field := 16#FC#;
-- IOHIZx
IOHIZx : PIO4_IOHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PIO4_Register use record
IOSETx at 0 range 0 .. 7;
IOWAITx at 0 range 8 .. 15;
IOHOLDx at 0 range 16 .. 23;
IOHIZx at 0 range 24 .. 31;
end record;
-------------------
-- BWTR_Register --
-------------------
subtype BWTR1_ADDSET_Field is HAL.UInt4;
subtype BWTR1_ADDHLD_Field is HAL.UInt4;
subtype BWTR1_DATAST_Field is HAL.Byte;
subtype BWTR1_CLKDIV_Field is HAL.UInt4;
subtype BWTR1_DATLAT_Field is HAL.UInt4;
subtype BWTR1_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash write timing registers 1
type BWTR_Register is record
-- ADDSET
ADDSET : BWTR1_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BWTR1_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BWTR1_DATAST_Field := 16#FF#;
-- unspecified
Reserved_16_19 : HAL.UInt4 := 16#F#;
-- CLKDIV
CLKDIV : BWTR1_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BWTR1_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BWTR1_ACCMOD_Field := 16#0#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BWTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
Reserved_16_19 at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-------------------
-- SDCR_Register --
-------------------
subtype SDCR1_NC_Field is HAL.UInt2;
subtype SDCR1_NR_Field is HAL.UInt2;
subtype SDCR1_MWID_Field is HAL.UInt2;
subtype SDCR1_CAS_Field is HAL.UInt2;
subtype SDCR1_SDCLK_Field is HAL.UInt2;
subtype SDCR1_RPIPE_Field is HAL.UInt2;
-- SDRAM Control Register 1
type SDCR_Register is record
-- Number of column address bits
NC : SDCR1_NC_Field := 16#0#;
-- Number of row address bits
NR : SDCR1_NR_Field := 16#0#;
-- Memory data bus width
MWID : SDCR1_MWID_Field := 16#1#;
-- Number of internal banks
NB : Boolean := True;
-- CAS latency
CAS : SDCR1_CAS_Field := 16#1#;
-- Write protection
WP : Boolean := True;
-- SDRAM clock configuration
SDCLK : SDCR1_SDCLK_Field := 16#0#;
-- Burst read
RBURST : Boolean := False;
-- Read pipe
RPIPE : SDCR1_RPIPE_Field := 16#0#;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCR_Register use record
NC at 0 range 0 .. 1;
NR at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
NB at 0 range 6 .. 6;
CAS at 0 range 7 .. 8;
WP at 0 range 9 .. 9;
SDCLK at 0 range 10 .. 11;
RBURST at 0 range 12 .. 12;
RPIPE at 0 range 13 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-------------------
-- SDTR_Register --
-------------------
subtype SDTR1_TMRD_Field is HAL.UInt4;
subtype SDTR1_TXSR_Field is HAL.UInt4;
subtype SDTR1_TRAS_Field is HAL.UInt4;
subtype SDTR1_TRC_Field is HAL.UInt4;
subtype SDTR1_TWR_Field is HAL.UInt4;
subtype SDTR1_TRP_Field is HAL.UInt4;
subtype SDTR1_TRCD_Field is HAL.UInt4;
-- SDRAM Timing register 1
type SDTR_Register is record
-- Load Mode Register to Active
TMRD : SDTR1_TMRD_Field := 16#F#;
-- Exit self-refresh delay
TXSR : SDTR1_TXSR_Field := 16#F#;
-- Self refresh time
TRAS : SDTR1_TRAS_Field := 16#F#;
-- Row cycle delay
TRC : SDTR1_TRC_Field := 16#F#;
-- Recovery delay
TWR : SDTR1_TWR_Field := 16#F#;
-- Row precharge delay
TRP : SDTR1_TRP_Field := 16#F#;
-- Row to column delay
TRCD : SDTR1_TRCD_Field := 16#F#;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDTR_Register use record
TMRD at 0 range 0 .. 3;
TXSR at 0 range 4 .. 7;
TRAS at 0 range 8 .. 11;
TRC at 0 range 12 .. 15;
TWR at 0 range 16 .. 19;
TRP at 0 range 20 .. 23;
TRCD at 0 range 24 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
--------------------
-- SDCMR_Register --
--------------------
subtype SDCMR_MODE_Field is HAL.UInt3;
---------------
-- SDCMR.CTB --
---------------
-- SDCMR_CTB array
type SDCMR_CTB_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for SDCMR_CTB
type SDCMR_CTB_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CTB as a value
Val : HAL.UInt2;
when True =>
-- CTB as an array
Arr : SDCMR_CTB_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for SDCMR_CTB_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
subtype SDCMR_NRFS_Field is HAL.UInt4;
subtype SDCMR_MRD_Field is HAL.UInt13;
-- SDRAM Command Mode register
type SDCMR_Register is record
-- Write-only. Command mode
MODE : SDCMR_MODE_Field := 16#0#;
-- Write-only. Command target bank 2
CTB : SDCMR_CTB_Field := (As_Array => False, Val => 16#0#);
-- Number of Auto-refresh
NRFS : SDCMR_NRFS_Field := 16#0#;
-- Mode Register definition
MRD : SDCMR_MRD_Field := 16#0#;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCMR_Register use record
MODE at 0 range 0 .. 2;
CTB at 0 range 3 .. 4;
NRFS at 0 range 5 .. 8;
MRD at 0 range 9 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
--------------------
-- SDRTR_Register --
--------------------
subtype SDRTR_COUNT_Field is HAL.UInt13;
-- SDRAM Refresh Timer register
type SDRTR_Register is record
-- Write-only. Clear Refresh error flag
CRE : Boolean := False;
-- Refresh Timer Count
COUNT : SDRTR_COUNT_Field := 16#0#;
-- RES Interrupt Enable
REIE : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDRTR_Register use record
CRE at 0 range 0 .. 0;
COUNT at 0 range 1 .. 13;
REIE at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-------------------
-- SDSR_Register --
-------------------
----------------
-- SDSR.MODES --
----------------
-- SDSR_MODES array element
subtype SDSR_MODES_Element is HAL.UInt2;
-- SDSR_MODES array
type SDSR_MODES_Field_Array is array (1 .. 2) of SDSR_MODES_Element
with Component_Size => 2, Size => 4;
-- Type definition for SDSR_MODES
type SDSR_MODES_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MODES as a value
Val : HAL.UInt4;
when True =>
-- MODES as an array
Arr : SDSR_MODES_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SDSR_MODES_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SDRAM Status register
type SDSR_Register is record
-- Read-only. Refresh error flag
RE : Boolean;
-- Read-only. Status Mode for Bank 1
MODES : SDSR_MODES_Field;
-- Read-only. Busy status
BUSY : Boolean;
-- unspecified
Reserved_6_31 : HAL.UInt26;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDSR_Register use record
RE at 0 range 0 .. 0;
MODES at 0 range 1 .. 4;
BUSY at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Flexible memory controller
type FMC_Peripheral is record
-- SRAM/NOR-Flash chip-select control register 1
BCR1 : BCR1_Register;
-- SRAM/NOR-Flash chip-select timing register 1
BTR1 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 2
BCR2 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 2
BTR2 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 3
BCR3 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 3
BTR3 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 4
BCR4 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 4
BTR4 : BTR_Register;
-- PC Card/NAND Flash control register 2
PCR2 : PCR_Register;
-- FIFO status and interrupt register 2
SR2 : SR_Register;
-- Common memory space timing register 2
PMEM2 : PMEM_Register;
-- Attribute memory space timing register 2
PATT2 : PATT_Register;
-- ECC result register 2
ECCR2 : HAL.Word;
-- PC Card/NAND Flash control register 3
PCR3 : PCR_Register;
-- FIFO status and interrupt register 3
SR3 : SR_Register;
-- Common memory space timing register 3
PMEM3 : PMEM_Register;
-- Attribute memory space timing register 3
PATT3 : PATT_Register;
-- ECC result register 3
ECCR3 : HAL.Word;
-- PC Card/NAND Flash control register 4
PCR4 : PCR_Register;
-- FIFO status and interrupt register 4
SR4 : SR_Register;
-- Common memory space timing register 4
PMEM4 : PMEM_Register;
-- Attribute memory space timing register 4
PATT4 : PATT_Register;
-- I/O space timing register 4
PIO4 : PIO4_Register;
-- SRAM/NOR-Flash write timing registers 1
BWTR1 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 2
BWTR2 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 3
BWTR3 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 4
BWTR4 : BWTR_Register;
-- SDRAM Control Register 1
SDCR1 : SDCR_Register;
-- SDRAM Control Register 2
SDCR2 : SDCR_Register;
-- SDRAM Timing register 1
SDTR1 : SDTR_Register;
-- SDRAM Timing register 2
SDTR2 : SDTR_Register;
-- SDRAM Command Mode register
SDCMR : SDCMR_Register;
-- SDRAM Refresh Timer register
SDRTR : SDRTR_Register;
-- SDRAM Status register
SDSR : SDSR_Register;
end record
with Volatile;
for FMC_Peripheral use record
BCR1 at 0 range 0 .. 31;
BTR1 at 4 range 0 .. 31;
BCR2 at 8 range 0 .. 31;
BTR2 at 12 range 0 .. 31;
BCR3 at 16 range 0 .. 31;
BTR3 at 20 range 0 .. 31;
BCR4 at 24 range 0 .. 31;
BTR4 at 28 range 0 .. 31;
PCR2 at 96 range 0 .. 31;
SR2 at 100 range 0 .. 31;
PMEM2 at 104 range 0 .. 31;
PATT2 at 108 range 0 .. 31;
ECCR2 at 116 range 0 .. 31;
PCR3 at 128 range 0 .. 31;
SR3 at 132 range 0 .. 31;
PMEM3 at 136 range 0 .. 31;
PATT3 at 140 range 0 .. 31;
ECCR3 at 148 range 0 .. 31;
PCR4 at 160 range 0 .. 31;
SR4 at 164 range 0 .. 31;
PMEM4 at 168 range 0 .. 31;
PATT4 at 172 range 0 .. 31;
PIO4 at 176 range 0 .. 31;
BWTR1 at 260 range 0 .. 31;
BWTR2 at 268 range 0 .. 31;
BWTR3 at 276 range 0 .. 31;
BWTR4 at 284 range 0 .. 31;
SDCR1 at 320 range 0 .. 31;
SDCR2 at 324 range 0 .. 31;
SDTR1 at 328 range 0 .. 31;
SDTR2 at 332 range 0 .. 31;
SDCMR at 336 range 0 .. 31;
SDRTR at 340 range 0 .. 31;
SDSR at 344 range 0 .. 31;
end record;
-- Flexible memory controller
FMC_Periph : aliased FMC_Peripheral
with Import, Address => FMC_Base;
end STM32_SVD.FSMC;
|
-----------------------------------------------------------------------
-- awa-mail-clients-aws_smtp -- Mail client implementation on top of AWS SMTP client
-- Copyright (C) 2012, 2016, 2017, 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.
-----------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
with AWS.SMTP.Client;
with Util.Log.Loggers;
package body AWA.Mail.Clients.AWS_SMTP is
use AWS.SMTP;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AWA.Mail.Clients.AWS_SMTP");
procedure Free is
new Ada.Unchecked_Deallocation (Object => AWS.SMTP.Recipients,
Name => Recipients_Access);
-- Get a printable representation of the email recipients.
function Image (Recipients : in Recipients_Access) return String;
-- ------------------------------
-- Set the <tt>From</tt> part of the message.
-- ------------------------------
overriding
procedure Set_From (Message : in out AWS_Mail_Message;
Name : in String;
Address : in String) is
begin
Message.From := AWS.SMTP.E_Mail (Name => Name,
Address => Address);
end Set_From;
-- ------------------------------
-- Add a recipient for the message.
-- ------------------------------
overriding
procedure Add_Recipient (Message : in out AWS_Mail_Message;
Kind : in Recipient_Type;
Name : in String;
Address : in String) is
List : Recipients_Access := Message.To (Kind);
begin
if List = null then
List := new AWS.SMTP.Recipients (1 .. 1);
else
declare
To : constant Recipients_Access := new AWS.SMTP.Recipients (1 .. List'Last + 1);
begin
List (List'Range) := List.all;
Free (List);
List := To;
end;
end if;
List (List'Last) := AWS.SMTP.E_Mail (Name => Name,
Address => Address);
Message.To (Kind) := List;
end Add_Recipient;
-- ------------------------------
-- Set the subject of the message.
-- ------------------------------
overriding
procedure Set_Subject (Message : in out AWS_Mail_Message;
Subject : in String) is
begin
Message.Subject := To_Unbounded_String (Subject);
end Set_Subject;
-- ------------------------------
-- Set the body of the message.
-- ------------------------------
overriding
procedure Set_Body (Message : in out AWS_Mail_Message;
Content : in Unbounded_String;
Alternative : in Unbounded_String;
Content_Type : in String) is
begin
if Length (Alternative) = 0 then
AWS.Attachments.Add (Message.Attachments, "",
AWS.Attachments.Value (To_String (Content)));
else
declare
Parts : AWS.Attachments.Alternatives;
begin
AWS.Attachments.Add
(Parts,
AWS.Attachments.Value (To_String (Content),
Content_Type => Content_Type));
AWS.Attachments.Add
(Parts,
AWS.Attachments.Value (To_String (Alternative),
Content_Type => "text/plain; charset='UTF-8'"));
AWS.Attachments.Add
(Message.Attachments, Parts);
end;
end if;
end Set_Body;
-- ------------------------------
-- Add an attachment with the given content.
-- ------------------------------
overriding
procedure Add_Attachment (Message : in out AWS_Mail_Message;
Content : in Unbounded_String;
Content_Id : in String;
Content_Type : in String) is
Data : constant AWS.Attachments.Content
:= AWS.Attachments.Value (Data => To_String (Content),
Content_Id => Content_Id,
Content_Type => Content_Type);
begin
AWS.Attachments.Add (Attachments => Message.Attachments,
Name => Content_Id,
Data => Data);
end Add_Attachment;
overriding
procedure Add_File_Attachment (Message : in out AWS_Mail_Message;
Filename : in String;
Content_Id : in String;
Content_Type : in String) is
Data : constant AWS.Attachments.Content
:= AWS.Attachments.File (Filename => Filename,
Encode => AWS.Attachments.Base64,
Content_Id => Content_Id,
Content_Type => Content_Type);
begin
AWS.Attachments.Add (Attachments => Message.Attachments,
Name => Content_Id,
Data => Data);
end Add_File_Attachment;
-- ------------------------------
-- Get a printable representation of the email recipients.
-- ------------------------------
function Image (Recipients : in Recipients_Access) return String is
Result : Unbounded_String;
begin
if Recipients /= null then
for I in Recipients'Range loop
Append (Result, AWS.SMTP.Image (Recipients (I)));
end loop;
end if;
return To_String (Result);
end Image;
-- ------------------------------
-- Send the email message.
-- ------------------------------
overriding
procedure Send (Message : in out AWS_Mail_Message) is
function Get_To return AWS.SMTP.Recipients is
(if Message.To (Clients.TO) /= null then Message.To (Clients.TO).all else No_Recipient);
function Get_Cc return AWS.SMTP.Recipients is
(if Message.To (Clients.CC) /= null then Message.To (Clients.CC).all else No_Recipient);
function Get_Bcc return AWS.SMTP.Recipients is
(if Message.To (Clients.BCC) /= null then Message.To (Clients.BCC).all else No_Recipient);
Result : AWS.SMTP.Status;
begin
if (for all Recipient of Message.To => Recipient = null) then
return;
end if;
if Message.Manager.Enable then
Log.Info ("Send email from {0} to {1}",
AWS.SMTP.Image (Message.From), Image (Message.To (Clients.TO)));
AWS.SMTP.Client.Send
(Server => Message.Manager.Server,
From => Message.From,
To => Get_To,
CC => Get_Cc,
BCC => Get_Bcc,
Subject => To_String (Message.Subject),
Attachments => Message.Attachments,
Status => Result);
if not AWS.SMTP.Is_Ok (Result) then
Log.Error ("Cannot send email: {0}",
AWS.SMTP.Status_Message (Result));
end if;
else
Log.Info ("Disable send email from {0} to {1}",
AWS.SMTP.Image (Message.From), Image (Message.To (Clients.TO)));
end if;
end Send;
-- ------------------------------
-- Deletes the mail message.
-- ------------------------------
overriding
procedure Finalize (Message : in out AWS_Mail_Message) is
begin
Log.Info ("Finalize mail message");
Free (Message.To (AWA.Mail.Clients.TO));
Free (Message.To (AWA.Mail.Clients.CC));
Free (Message.To (AWA.Mail.Clients.BCC));
end Finalize;
procedure Initialize (Client : in out AWS_Mail_Manager'Class;
Props : in Util.Properties.Manager'Class) is separate;
-- ------------------------------
-- Create a SMTP based mail manager and configure it according to the properties.
-- ------------------------------
function Create_Manager (Props : in Util.Properties.Manager'Class) return Mail_Manager_Access is
Server : constant String := Props.Get (Name => "smtp.host", Default => "localhost");
Port : constant String := Props.Get (Name => "smtp.port", Default => "25");
Enable : constant String := Props.Get (Name => "smtp.enable", Default => "1");
Result : constant AWS_Mail_Manager_Access := new AWS_Mail_Manager;
begin
Log.Info ("Creating SMTP mail manager to server {0}:{1}", Server, Port);
Result.Port := Positive'Value (Port);
Result.Enable := Enable = "1" or Enable = "yes" or Enable = "true";
Result.Self := Result;
Initialize (Result.all, Props);
return Result.all'Access;
end Create_Manager;
-- ------------------------------
-- Create a new mail message.
-- ------------------------------
overriding
function Create_Message (Manager : in AWS_Mail_Manager) return Mail_Message_Access is
Result : constant AWS_Mail_Message_Access := new AWS_Mail_Message;
begin
Result.Manager := Manager.Self;
return Result.all'Access;
end Create_Message;
end AWA.Mail.Clients.AWS_SMTP;
|
-- Copyright 2009-2015 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;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010, 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 program extracts data from the code generated by aflex, and generate
-- actual implementation of scanner for regular expression engine.
with Ada.Characters.Conversions;
with Ada.Command_Line;
with Asis.Ada_Environments;
with Asis.Compilation_Units;
with Asis.Elements;
with Asis.Implementation;
with Scanner_Analyzer;
with Scanner_Extractor;
with Scanner_Generator;
with Scanner_Utilities;
procedure Scanner_Transformer is
Transformer_Context : Asis.Context;
Scanner_Unit : Asis.Compilation_Unit;
Scanner_Body : Asis.Element;
begin
Asis.Implementation.Initialize ("-asis05");
Asis.Ada_Environments.Associate
(Transformer_Context,
"Transformer_Context",
"-C1 "
& Ada.Characters.Conversions.To_Wide_String
(Ada.Command_Line.Argument (2)));
Asis.Ada_Environments.Open (Transformer_Context);
case Scanner_Utilities.Mode is
when Scanner_Utilities.Regexp =>
Scanner_Unit :=
Asis.Compilation_Units.Compilation_Unit_Body
("Regexp_Scanner", Transformer_Context);
Scanner_Body := Asis.Elements.Unit_Declaration (Scanner_Unit);
when Scanner_Utilities.XML =>
Scanner_Unit :=
Asis.Compilation_Units.Compilation_Unit_Body
("Xml_Scanner", Transformer_Context);
Scanner_Body := Asis.Elements.Unit_Declaration (Scanner_Unit);
end case;
Scanner_Extractor.Extract (Scanner_Body);
Scanner_Analyzer.Analyze;
Scanner_Generator.Generate_Scanner_Code;
Scanner_Generator.Generate_Scanner_Tables;
Asis.Ada_Environments.Close (Transformer_Context);
Asis.Ada_Environments.Dissociate (Transformer_Context);
Asis.Implementation.Finalize;
end Scanner_Transformer;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . W I D _ B O O L --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992,1993,1994 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routine used for Boolean'Width
package System.Wid_Bool is
pragma Pure (Wid_Bool);
function Width_Boolean (Lo, Hi : Boolean) return Natural;
-- Compute Width attribute for non-static type derived from Boolean.
-- The arguments are the low and high bounds for the type.
end System.Wid_Bool;
|
-----------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- I N T E R F A C E S . C --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with System.Parameters;
package Interfaces.C is
pragma Pure (C);
-- Declaration's based on C's <limits.h>
CHAR_BIT : constant := 8;
SCHAR_MIN : constant := -128;
SCHAR_MAX : constant := 127;
UCHAR_MAX : constant := 255;
-- Signed and Unsigned Integers. Note that in GNAT, we have ensured that
-- the standard predefined Ada types correspond to the standard C types
type int is new Integer;
type short is new Short_Integer;
type long is range -(2 ** (System.Parameters.long_bits - 1))
.. +(2 ** (System.Parameters.long_bits - 1)) - 1;
type signed_char is range SCHAR_MIN .. SCHAR_MAX;
for signed_char'Size use CHAR_BIT;
type unsigned is mod 2 ** int'Size;
type unsigned_short is mod 2 ** short'Size;
type unsigned_long is mod 2 ** long'Size;
type unsigned_char is mod (UCHAR_MAX + 1);
for unsigned_char'Size use CHAR_BIT;
subtype plain_char is unsigned_char; -- ??? should be parametrized
type ptrdiff_t is
range -(2 ** (Standard'Address_Size - 1)) ..
+(2 ** (Standard'Address_Size - 1) - 1);
type size_t is mod 2 ** Standard'Address_Size;
-- Floating-Point
type C_float is new Float;
type double is new Standard.Long_Float;
type long_double is new Standard.Long_Long_Float;
----------------------------
-- Characters and Strings --
----------------------------
type char is new Character;
nul : constant char := char'First;
function To_C (Item : Character) return char;
function To_Ada (Item : char) return Character;
type char_array is array (size_t range <>) of aliased char;
for char_array'Component_Size use CHAR_BIT;
function Is_Nul_Terminated (Item : in char_array) return Boolean;
function To_C
(Item : in String;
Append_Nul : in Boolean := True)
return char_array;
function To_Ada
(Item : in char_array;
Trim_Nul : in Boolean := True)
return String;
procedure To_C
(Item : in String;
Target : out char_array;
Count : out size_t;
Append_Nul : in Boolean := True);
procedure To_Ada
(Item : in char_array;
Target : out String;
Count : out Natural;
Trim_Nul : in Boolean := True);
------------------------------------
-- Wide Character and Wide String --
------------------------------------
type wchar_t is new Wide_Character;
for wchar_t'Size use Standard'Wchar_T_Size;
wide_nul : constant wchar_t := wchar_t'First;
function To_C (Item : in Wide_Character) return wchar_t;
function To_Ada (Item : in wchar_t) return Wide_Character;
type wchar_array is array (size_t range <>) of aliased wchar_t;
function Is_Nul_Terminated (Item : in wchar_array) return Boolean;
function To_C
(Item : in Wide_String;
Append_Nul : in Boolean := True)
return wchar_array;
function To_Ada
(Item : in wchar_array;
Trim_Nul : in Boolean := True)
return Wide_String;
procedure To_C
(Item : in Wide_String;
Target : out wchar_array;
Count : out size_t;
Append_Nul : in Boolean := True);
procedure To_Ada
(Item : in wchar_array;
Target : out Wide_String;
Count : out Natural;
Trim_Nul : in Boolean := True);
Terminator_Error : exception;
end Interfaces.C;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- ncurses --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 2000 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000
-- Version Control
-- $Revision: 1.1 $
-- Binding Version 01.00
------------------------------------------------------------------------------
package ncurses2 is
pragma Pure (ncurses2);
end ncurses2;
|
--
-- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ewok.tasks; use ewok.tasks;
with ewok.tasks_shared; use ewok.tasks_shared;
with ewok.exported.dma;
with ewok.dma_shared;
with ewok.dma;
with ewok.perm;
with ewok.sanitize;
with ewok.debug;
package body ewok.syscalls.dma
with spark_mode => off
is
package TSK renames ewok.tasks;
procedure svc_register_dma
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_config : ewok.exported.dma.t_dma_user_config
with import, address => to_address (params(1));
descriptor : unsigned_32
with import, address => to_address (params(2));
index : ewok.dma_shared.t_registered_dma_index;
ok : boolean;
begin
-- Forbidden after end of task initialization
if is_init_done (caller_id) then
goto ret_denied;
end if;
-- DMA allowed for that task?
if not ewok.perm.ressource_is_granted
(ewok.perm.PERM_RES_DEV_DMA, caller_id)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): permission not granted"));
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance
if not dma_config'valid_scalars
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma_t"));
goto ret_inval;
end if;
-- Does dma_config'address and descriptor'address are in the caller
-- address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (dma_config'address),
dma_config'size/8,
caller_id,
mode)
or
not ewok.sanitize.is_word_in_data_slot
(to_system_address (descriptor'address), caller_id, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): parameters not in task's memory space"));
goto ret_denied;
end if;
-- Verify DMA configuration transmitted by the user
if not ewok.dma.sanitize_dma
(dma_config, caller_id,
ewok.exported.dma.t_config_mask'(others => false), mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma configuration"));
goto ret_inval;
end if;
-- Check if controller/stream are already used
-- Note: A DMA controller can manage only one channel per stream in the
-- same time.
if ewok.dma.stream_is_already_used (dma_config) then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma configuration already used"));
goto ret_denied;
end if;
-- Is there any user descriptor available ?
if TSK.tasks_list(caller_id).num_dma_id < MAX_DMAS_PER_TASK then
TSK.tasks_list(caller_id).num_dma_id :=
TSK.tasks_list(caller_id).num_dma_id + 1;
else
goto ret_busy;
end if;
-- Initialization
ewok.dma.init_stream (dma_config, caller_id, index, ok);
if not ok then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma initialization failed"));
goto ret_denied;
end if;
declare
dma_descriptor : constant unsigned_32 :=
TSK.tasks_list(caller_id).num_dma_id;
begin
TSK.tasks_list(caller_id).dma_id(dma_descriptor) := index;
end;
descriptor := TSK.tasks_list(caller_id).num_dma_id;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_busy>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_BUSY);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
descriptor := 0;
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_register_dma;
procedure svc_register_dma_shm
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
user_dma_shm : ewok.exported.dma.t_dma_shm_info
with import, address => to_address (params(1));
granted_id : ewok.tasks_shared.t_task_id;
begin
-- Forbidden after end of task initialization
if is_init_done (caller_id) then
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance
if not user_dma_shm'valid_scalars
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid dma_shm_t"));
goto ret_inval;
end if;
-- Does user_dma_shm'address is in the caller address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (user_dma_shm'address),
user_dma_shm'size/8,
caller_id,
mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): parameters not in task's memory space"));
goto ret_denied;
end if;
-- Verify DMA shared memory configuration transmitted by the user
if not ewok.dma.sanitize_dma_shm (user_dma_shm, caller_id, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid configuration"));
goto ret_inval;
end if;
granted_id := user_dma_shm.granted_id;
-- Does the task can share memory with its target task?
if not ewok.perm.dmashm_is_granted (caller_id, granted_id)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): not granted"));
goto ret_denied;
end if;
-- Is there any user descriptor available ?
if TSK.tasks_list(granted_id).num_dma_shms < MAX_DMA_SHM_PER_TASK and
TSK.tasks_list(caller_id).num_dma_shms < MAX_DMA_SHM_PER_TASK
then
TSK.tasks_list(granted_id).num_dma_shms := TSK.tasks_list(granted_id).num_dma_shms + 1;
TSK.tasks_list(caller_id).num_dma_shms := TSK.tasks_list(caller_id).num_dma_shms + 1;
else
pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): busy"));
goto ret_busy;
end if;
TSK.tasks_list(granted_id).dma_shm(TSK.tasks_list(granted_id).num_dma_shms) := user_dma_shm;
TSK.tasks_list(caller_id).dma_shm(TSK.tasks_list(caller_id).num_dma_shms) := user_dma_shm;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_busy>>
set_return_value (caller_id, mode, SYS_E_BUSY);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_register_dma_shm;
procedure svc_dma_reconf
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
new_dma_config : ewok.exported.dma.t_dma_user_config
with import, address => to_address (params(1));
config_mask : ewok.exported.dma.t_config_mask
with import, address => params(2)'address;
dma_descriptor : unsigned_32
with import, address => params(3)'address;
ok : boolean;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Ada based sanitation using on types compliance is not easy,
-- as only fields marked by config_mask have a real interpretation
-- These fields are checked in the dma_sanitize_dma() function call
-- bellow
-- Does new_dma_config'address is in the caller address space ?
if not ewok.sanitize.is_range_in_data_slot
(to_system_address (new_dma_config'address),
new_dma_config'size/8,
caller_id,
mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): parameters not in task's memory space"));
goto ret_inval;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid descriptor"));
goto ret_inval;
end if;
-- Check if the user tried to change the DMA ctrl/channel/stream
-- parameters
if not ewok.dma.has_same_dma_channel
(TSK.tasks_list(caller_id).dma_id(dma_descriptor), new_dma_config)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): ctrl/channel/stream changed"));
goto ret_inval;
end if;
-- Verify DMA configuration transmitted by the user
if not ewok.dma.sanitize_dma
(new_dma_config, caller_id, config_mask, mode)
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid configuration"));
goto ret_inval;
end if;
-- Reconfigure the DMA controller
ewok.dma.reconfigure_stream
(new_dma_config,
TSK.tasks_list(caller_id).dma_id(dma_descriptor),
config_mask,
caller_id,
ok);
if not ok then
goto ret_inval;
end if;
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_reconf;
procedure svc_dma_reload
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_descriptor : unsigned_32
with import, address => params(1)'address;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reload(): invalid descriptor"));
goto ret_inval;
end if;
ewok.dma.enable_dma_stream
(TSK.tasks_list(caller_id).dma_id(dma_descriptor));
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_reload;
procedure svc_dma_disable
(caller_id : in ewok.tasks_shared.t_task_id;
params : in out t_parameters;
mode : in ewok.tasks_shared.t_task_mode)
is
dma_descriptor : unsigned_32
with import, address => params(1)'address;
begin
-- Forbidden before end of task initialization
if not is_init_done (caller_id) then
goto ret_denied;
end if;
-- Valid DMA descriptor ?
if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or
dma_descriptor > TSK.tasks_list(caller_id).num_dma_id
then
pragma DEBUG (debug.log (debug.ERROR, "svc_dma_disable(): invalid descriptor"));
goto ret_inval;
end if;
ewok.dma.disable_dma_stream
(TSK.tasks_list(caller_id).dma_id(dma_descriptor));
set_return_value (caller_id, mode, SYS_E_DONE);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_inval>>
set_return_value (caller_id, mode, SYS_E_INVAL);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
<<ret_denied>>
set_return_value (caller_id, mode, SYS_E_DENIED);
ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE);
return;
end svc_dma_disable;
end ewok.syscalls.dma;
|
pragma License (Unrestricted);
-- implementation unit required by compiler
with System.Unsigned_Types;
package System.Wid_LLU is
pragma Pure;
-- required for Modular'Width by compiler (s-widllu.ads)
function Width_Long_Long_Unsigned (
Lo, Hi : Unsigned_Types.Long_Long_Unsigned)
return Natural;
end System.Wid_LLU;
|
with Gtk.Button; use Gtk.Button;
with Gtk.GEntry; use Gtk.GEntry;
with Gtk.Label; use Gtk.Label;
with Gtk.Window; use Gtk.Window;
with Gtk.Widget; use Gtk.Widget;
with Gtk.Table; use Gtk.Table;
with Gtk.Handlers;
with Gtk.Main;
procedure Graphic_Input is
Window : Gtk_Window;
Grid : Gtk_Table;
Label : Gtk_Label;
Message : Gtk_Label;
Edit : Gtk_GEntry;
Button : Gtk_Button;
package Handlers is new Gtk.Handlers.Callback (Gtk_Widget_Record);
package Return_Handlers is
new Gtk.Handlers.Return_Callback (Gtk_Widget_Record, Boolean);
function Delete_Event (Widget : access Gtk_Widget_Record'Class)
return Boolean is
begin
return False;
end Delete_Event;
procedure Destroy (Widget : access Gtk_Widget_Record'Class) is
begin
Gtk.Main.Main_Quit;
end Destroy;
procedure Clicked (Widget : access Gtk_Widget_Record'Class) is
begin
if Get_Text (Label) = "Enter integer:" then
Set_Text (Message, "Entered:" & Integer'Image (Integer'Value (Get_Text (Edit))));
Set_Sensitive (Button, False);
else
Set_Text (Message, "Entered:" & Get_Text (Edit));
Set_Text (Label, "Enter integer:");
end if;
exception
when Constraint_Error =>
Set_Text (Message, "Error integer input");
end Clicked;
begin
Gtk.Main.Init;
Gtk.Window.Gtk_New (Window);
Gtk_New (Grid, 2, 3, False);
Add (Window, Grid);
Gtk_New (Label, "Enter string:");
Attach (Grid, Label, 0, 1, 0, 1);
Gtk_New (Edit);
Attach (Grid, Edit, 1, 2, 0, 1);
Gtk_New (Button, "OK");
Attach (Grid, Button, 2, 3, 0, 1);
Gtk_New (Message);
Attach (Grid, Message, 0, 3, 1, 2);
Return_Handlers.Connect
( Window,
"delete_event",
Return_Handlers.To_Marshaller (Delete_Event'Access)
);
Handlers.Connect
( Window,
"destroy",
Handlers.To_Marshaller (Destroy'Access)
);
Handlers.Connect
( Button,
"clicked",
Handlers.To_Marshaller (Clicked'Access)
);
Show_All (Grid);
Show (Window);
Gtk.Main.Main;
end Graphic_Input;
|
-- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/ayacc_separates.a,v 1.1 88/08/08 12:07:39 arcadia Exp $
-- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to ayacc-info@ics.uci.edu
-- Send bug reports for ayacc to ayacc-bugs@ics.uci.edu
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : ayacc_separates.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:28:51
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxayacc_separates.ada
-- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/ayacc_separates.a,v 1.1 88/08/08 12:07:39 arcadia Exp $
-- $Log: ayacc_separates.a,v $
--Revision 1.1 88/08/08 12:07:39 arcadia
--Initial revision
--
-- Revision 0.0 86/02/19 18:36:14 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
-- Revision 0.1 88/03/16
-- Additional argument added to allow user to specify file extension
-- to be used for generated Ada files. -- kn
with String_Pkg; use String_Pkg;
separate (Ayacc)
procedure Initialize is
use Ayacc_File_Names, Options;
Input_File, Extension, Options : String_Type := Create ("");
type Switch is ( On , Off );
C_Lex_Flag,
Debug_Flag,
Summary_Flag,
-- UMASS CODES :
Error_Recovery_Flag,
-- END OF UMASS CODES.
Verbose_Flag : Switch;
Invalid_Command_Line : exception;
procedure Get_Arguments (File : out String_Type;
C_Lex : out Switch;
Debug : out Switch;
Summary : out Switch;
Verbose : out Switch;
-- UMASS CODES :
Error_Recovery : out Switch;
-- END OF UMASS CODES.
Extension : out String_Type) is separate;
begin
Get_Arguments (Input_File,
C_Lex_Flag,
Debug_Flag,
Summary_Flag,
Verbose_Flag,
-- UMASS CODES :
Error_Recovery_Flag,
-- END OF UMASS CODES.
Extension);
New_Line;
Put_Line (" Ayacc (File => """ & Value (Input_File) & """,");
Put_Line (" C_Lex => " &
Value (Mixed (Switch'Image(C_Lex_Flag))) & ',');
Put_Line (" Debug => " &
Value (Mixed (Switch'Image(Debug_Flag))) & ',');
Put_Line (" Summary => " &
Value (Mixed (Switch'Image(Summary_Flag))) & ',');
Put_Line (" Verbose => " &
Value (Mixed (Switch'Image(Verbose_Flag))) & ",");
-- UMASS CODES :
Put_Line (" Error_Recovery => " &
Value (Mixed (Switch'Image(Error_Recovery_Flag))) & ");");
-- END OF UMASS CODES.
New_Line;
if C_Lex_Flag = On then
Options := Options & Create ("i");
end if;
if Debug_Flag = On then
Options := Options & Create ("d");
end if;
if Summary_Flag = On then
Options := Options & Create ("s");
end if;
if Verbose_Flag = On then
Options := Options & Create ("v");
end if;
-- UMASS CODES :
if Error_Recovery_Flag = On then
Options := Options & Create ("e");
end if;
-- END OF UMASS CODES.
Set_File_Names (Value (Input_File), Value(Extension));
Set_Options (Value (Options));
exception
when Invalid_Command_Line =>
raise Illegal_Argument_List;
end Initialize;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . S C A L A R _ V A L U E S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2003-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. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body System.Scalar_Values is
----------------
-- Initialize --
----------------
procedure Initialize (Mode1 : Character; Mode2 : Character) is
C1 : Character := Mode1;
C2 : Character := Mode2;
procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address);
pragma Import (C, Get_Env_Value_Ptr, "__gnat_getenv");
subtype String2 is String (1 .. 2);
type String2_Ptr is access all String2;
Env_Value_Ptr : aliased String2_Ptr;
Env_Value_Length : aliased Integer;
EV_Val : aliased constant String :=
"GNAT_INIT_SCALARS" & ASCII.NUL;
B : Byte1;
EFloat : constant Boolean := Long_Long_Float'Size > Long_Float'Size;
-- Set True if we are on an x86 with 96-bit floats for extended
AFloat : constant Boolean :=
Long_Float'Size = 48 and then Long_Long_Float'Size = 48;
-- Set True if we are on an AAMP with 48-bit extended floating point
type ByteLF is array (0 .. 7 - 2 * Boolean'Pos (AFloat)) of Byte1;
for ByteLF'Component_Size use 8;
-- Type used to hold Long_Float values on all targets and to initialize
-- 48-bit Long_Float values used on AAMP. On AAMP, this type is 6 bytes.
-- On other targets the type is 8 bytes, and type Byte8 is used for
-- values that are then converted to ByteLF.
pragma Warnings (Off); -- why ???
function To_ByteLF is new Ada.Unchecked_Conversion (Byte8, ByteLF);
pragma Warnings (On);
type ByteLLF is
array (0 .. 7 + 4 * Boolean'Pos (EFloat) - 2 * Boolean'Pos (AFloat))
of Byte1;
for ByteLLF'Component_Size use 8;
-- Type used to initialize Long_Long_Float values used on x86 and
-- any other target with the same 80-bit floating-point values that
-- GCC always stores in 96-bits. Note that we are assuming Intel
-- format little-endian addressing for this type. On non-Intel
-- architectures, this is the same length as Byte8 and holds
-- a Long_Float value.
-- The following variables are used to initialize the float values
-- by overlay. We can't assign directly to the float values, since
-- we may be assigning signalling Nan's that will cause a trap if
-- loaded into a floating-point register.
IV_Isf : aliased Byte4; -- Initialize short float
IV_Ifl : aliased Byte4; -- Initialize float
IV_Ilf : aliased ByteLF; -- Initialize long float
IV_Ill : aliased ByteLLF; -- Initialize long long float
for IV_Isf'Address use IS_Isf'Address;
for IV_Ifl'Address use IS_Ifl'Address;
for IV_Ilf'Address use IS_Ilf'Address;
for IV_Ill'Address use IS_Ill'Address;
-- The following pragmas are used to suppress initialization
pragma Import (Ada, IV_Isf);
pragma Import (Ada, IV_Ifl);
pragma Import (Ada, IV_Ilf);
pragma Import (Ada, IV_Ill);
begin
-- Acquire environment variable value if necessary
if C1 = 'E' and then C2 = 'V' then
Get_Env_Value_Ptr
(EV_Val'Address, Env_Value_Length'Address, Env_Value_Ptr'Address);
-- Ignore if length is not 2
if Env_Value_Length /= 2 then
C1 := 'I';
C2 := 'N';
-- Length is 2, see if it is a valid value
else
-- Acquire two characters and fold to upper case
C1 := Env_Value_Ptr (1);
C2 := Env_Value_Ptr (2);
if C1 in 'a' .. 'z' then
C1 := Character'Val (Character'Pos (C1) - 32);
end if;
if C2 in 'a' .. 'z' then
C2 := Character'Val (Character'Pos (C2) - 32);
end if;
-- IN/LO/HI are ok values
if (C1 = 'I' and then C2 = 'N')
or else
(C1 = 'L' and then C2 = 'O')
or else
(C1 = 'H' and then C2 = 'I')
then
null;
-- Try for valid hex digits
elsif (C1 in '0' .. '9' or else C1 in 'A' .. 'Z')
or else
(C2 in '0' .. '9' or else C2 in 'A' .. 'Z')
then
null;
-- Otherwise environment value is bad, ignore and use IN (invalid)
else
C1 := 'I';
C2 := 'N';
end if;
end if;
end if;
-- IN (invalid value)
if C1 = 'I' and then C2 = 'N' then
IS_Is1 := 16#80#;
IS_Is2 := 16#8000#;
IS_Is4 := 16#8000_0000#;
IS_Is8 := 16#8000_0000_0000_0000#;
IS_Iu1 := 16#FF#;
IS_Iu2 := 16#FFFF#;
IS_Iu4 := 16#FFFF_FFFF#;
IS_Iu8 := 16#FFFF_FFFF_FFFF_FFFF#;
IS_Iz1 := 16#00#;
IS_Iz2 := 16#0000#;
IS_Iz4 := 16#0000_0000#;
IS_Iz8 := 16#0000_0000_0000_0000#;
if AFloat then
IV_Isf := 16#FFFF_FF00#;
IV_Ifl := 16#FFFF_FF00#;
IV_Ilf := (0, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#);
else
IV_Isf := IS_Iu4;
IV_Ifl := IS_Iu4;
IV_Ilf := To_ByteLF (IS_Iu8);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#C0#, 16#FF#, 16#FF#, 0, 0);
end if;
-- LO (Low values)
elsif C1 = 'L' and then C2 = 'O' then
IS_Is1 := 16#80#;
IS_Is2 := 16#8000#;
IS_Is4 := 16#8000_0000#;
IS_Is8 := 16#8000_0000_0000_0000#;
IS_Iu1 := 16#00#;
IS_Iu2 := 16#0000#;
IS_Iu4 := 16#0000_0000#;
IS_Iu8 := 16#0000_0000_0000_0000#;
IS_Iz1 := 16#00#;
IS_Iz2 := 16#0000#;
IS_Iz4 := 16#0000_0000#;
IS_Iz8 := 16#0000_0000_0000_0000#;
if AFloat then
IV_Isf := 16#0000_0001#;
IV_Ifl := 16#0000_0001#;
IV_Ilf := (1, 0, 0, 0, 0, 0);
else
IV_Isf := 16#FF80_0000#;
IV_Ifl := 16#FF80_0000#;
IV_Ilf := To_ByteLF (16#FFF0_0000_0000_0000#);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#80#, 16#FF#, 16#FF#, 0, 0);
end if;
-- HI (High values)
elsif C1 = 'H' and then C2 = 'I' then
IS_Is1 := 16#7F#;
IS_Is2 := 16#7FFF#;
IS_Is4 := 16#7FFF_FFFF#;
IS_Is8 := 16#7FFF_FFFF_FFFF_FFFF#;
IS_Iu1 := 16#FF#;
IS_Iu2 := 16#FFFF#;
IS_Iu4 := 16#FFFF_FFFF#;
IS_Iu8 := 16#FFFF_FFFF_FFFF_FFFF#;
IS_Iz1 := 16#FF#;
IS_Iz2 := 16#FFFF#;
IS_Iz4 := 16#FFFF_FFFF#;
IS_Iz8 := 16#FFFF_FFFF_FFFF_FFFF#;
if AFloat then
IV_Isf := 16#7FFF_FFFF#;
IV_Ifl := 16#7FFF_FFFF#;
IV_Ilf := (16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#7F#);
else
IV_Isf := 16#7F80_0000#;
IV_Ifl := 16#7F80_0000#;
IV_Ilf := To_ByteLF (16#7FF0_0000_0000_0000#);
end if;
if EFloat then
IV_Ill := (0, 0, 0, 0, 0, 0, 0, 16#80#, 16#FF#, 16#7F#, 0, 0);
end if;
-- -Shh (hex byte)
else
-- Convert the two hex digits (we know they are valid here)
B := 16 * (Character'Pos (C1)
- (if C1 in '0' .. '9'
then Character'Pos ('0')
else Character'Pos ('A') - 10))
+ (Character'Pos (C2)
- (if C2 in '0' .. '9'
then Character'Pos ('0')
else Character'Pos ('A') - 10));
-- Initialize data values from the hex value
IS_Is1 := B;
IS_Is2 := 2**8 * Byte2 (IS_Is1) + Byte2 (IS_Is1);
IS_Is4 := 2**16 * Byte4 (IS_Is2) + Byte4 (IS_Is2);
IS_Is8 := 2**32 * Byte8 (IS_Is4) + Byte8 (IS_Is4);
IS_Iu1 := IS_Is1;
IS_Iu2 := IS_Is2;
IS_Iu4 := IS_Is4;
IS_Iu8 := IS_Is8;
IS_Iz1 := IS_Is1;
IS_Iz2 := IS_Is2;
IS_Iz4 := IS_Is4;
IS_Iz8 := IS_Is8;
IV_Isf := IS_Is4;
IV_Ifl := IS_Is4;
if AFloat then
IV_Ill := (B, B, B, B, B, B);
else
IV_Ilf := To_ByteLF (IS_Is8);
end if;
if EFloat then
IV_Ill := (B, B, B, B, B, B, B, B, B, B, B, B);
end if;
end if;
-- If no separate Long_Long_Float, then use Long_Float value as
-- Long_Long_Float initial value.
if not EFloat then
declare
pragma Warnings (Off); -- why???
function To_ByteLLF is
new Ada.Unchecked_Conversion (ByteLF, ByteLLF);
pragma Warnings (On);
begin
IV_Ill := To_ByteLLF (IV_Ilf);
end;
end if;
end Initialize;
end System.Scalar_Values;
|
------------------------------------------------------------------------------
-- --
-- GNAT EXAMPLE --
-- --
-- Copyright (C) 2013, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 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. --
-- --
------------------------------------------------------------------------------
-- Clock driver
with Ppc; use Ppc;
package body Clkdrv is
-- System clock
Fsys : constant := 128_000_000;
function Get_Clock return Unsigned_32 is
Tmp : Unsigned_64;
begin
Tmp := Unsigned_64 (Get_Tbu) * 16#1_0000_0000# + Unsigned_64 (Get_Tbl);
Tmp := Tmp / (Fsys / 10);
return Unsigned_32 (Tmp and 16#ffff_ffff#);
end Get_Clock;
end Clkdrv;
|
------------------------------------------------------------------------------
-- --
-- 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 League.Holders.Generic_Enumerations;
package AMF.UMLDI.Holders.UML_Inherited_State_Border_Kinds is
new League.Holders.Generic_Enumerations
(AMF.UMLDI.UMLDI_UML_Inherited_State_Border_Kind);
pragma Preelaborate (AMF.UMLDI.Holders.UML_Inherited_State_Border_Kinds);
|
------------------------------------------------------------------------------
-- AGAR CORE LIBRARY --
-- A G A R . I N I T --
-- S p e c --
------------------------------------------------------------------------------
with Interfaces.C;
with Interfaces.C.Strings;
package Agar.Init is
package C renames Interfaces.C;
package CS renames Interfaces.C.Strings;
type Agar_Version is limited record
Major : C.int;
Minor : C.int;
Patch : C.int;
end record
with Convention => C;
type Agar_Version_Access is access all Agar_Version with Convention => C;
type Atexit_Func_Access is access procedure with Convention => C;
--
-- Get the Agar version number.
--
procedure Get_Version
(Major : out Natural;
Minor : out Natural;
Patch : out Natural);
--
-- Initialize the Agar-Core library.
--
function Init_Core
(Program_Name : in String;
Verbose : in Boolean := False;
Create_Directory : in Boolean := False;
Software_Timers : in Boolean := False) return Boolean;
function Init_Core
(Verbose : in Boolean := False;
Create_Directory : in Boolean := False;
Software_Timers : in Boolean := False) return Boolean;
--
-- Set an exit callback routine.
--
procedure At_Exit (Callback : Atexit_Func_Access);
--
-- Release all resources and exit application.
--
procedure Quit
with Import, Convention => C, Link_Name => "AG_Quit";
--
-- Release all resources allocated by Agar-Core.
--
procedure Destroy
with Import, Convention => C, Link_Name => "AG_Destroy";
private
use type C.int;
use type C.unsigned;
procedure AG_GetVersion (Version : Agar_Version_Access)
with Import, Convention => C, Link_Name => "AG_GetVersion";
AG_VERBOSE : constant := 16#01#; -- Verbose() to console
AG_CREATE_DATADIR : constant := 16#02#; -- Check and create data dir
AG_SOFT_TIMERS : constant := 16#04#; -- Force software timing wheel
function AG_InitCore
(Progname : in CS.chars_ptr;
Flags : in C.unsigned) return C.int
with Import, Convention => C, Link_Name => "AG_InitCore";
procedure AG_AtExitFunc (Func : in Atexit_Func_Access)
with Import, Convention => C, Link_Name => "AG_AtExitFunc";
end Agar.Init;
|
-- 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.
-- Based on Ada gem #97 [1] and #107 [2]
--
-- [1] https://www.adacore.com/gems/gem-97-reference-counting-in-ada-part-1
-- [2] https://www.adacore.com/gems/gem-107-preventing-deallocation-for-reference-counted-types
private with Ada.Finalization;
private with Orka.Atomics;
generic
type Object_Type (<>) is limited private;
type Object_Access is access Object_Type;
with procedure Free_Object (Value : in out Object_Access);
package Orka.Smart_Pointers is
pragma Preelaborate;
type Reference (Value : not null access Object_Type) is limited private
with Implicit_Dereference => Value;
type Constant_Reference (Value : not null access constant Object_Type) is limited private
with Implicit_Dereference => Value;
type Abstract_Pointer is abstract tagged private;
function Is_Null (Object : Abstract_Pointer) return Boolean;
function References (Object : Abstract_Pointer) return Natural
with Pre => not Object.Is_Null;
procedure Set
(Object : in out Abstract_Pointer;
Value : not null Object_Access)
with Post => not Object.Is_Null and then Object.References = 1;
type Mutable_Pointer is new Abstract_Pointer with private;
function Get (Object : Mutable_Pointer) return Reference
with Pre => not Object.Is_Null;
type Pointer is new Abstract_Pointer with private;
function Get (Object : Pointer) return Constant_Reference
with Pre => not Object.Is_Null;
private
type Data_Record is limited record
References : Atomics.Counter (Initial_Value => 1);
Object : Object_Access;
end record;
type Data_Record_Access is access Data_Record;
type Abstract_Pointer is abstract new Ada.Finalization.Controlled with record
Data : Data_Record_Access;
end record;
overriding
procedure Adjust (Object : in out Abstract_Pointer);
overriding
procedure Finalize (Object : in out Abstract_Pointer);
type Mutable_Pointer is new Abstract_Pointer with null record;
type Pointer is new Abstract_Pointer with null record;
type Reference (Value : not null access Object_Type) is limited record
Hold : Mutable_Pointer;
end record;
type Constant_Reference (Value : not null access constant Object_Type) is limited record
Hold : Pointer;
end record;
end Orka.Smart_Pointers;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- P R J . M A K R --
-- --
-- B o d y --
-- --
-- Copyright (C) 2001-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Csets;
with Namet; use Namet;
with Opt;
with Output;
with Osint; use Osint;
with Prj; use Prj;
with Prj.Com;
with Prj.Part;
with Prj.PP;
with Prj.Tree; use Prj.Tree;
with Prj.Util; use Prj.Util;
with Snames; use Snames;
with Table; use Table;
with Ada.Characters.Handling; use Ada.Characters.Handling;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with GNAT.Regexp; use GNAT.Regexp;
with System.Case_Util; use System.Case_Util;
with System.CRTL;
package body Prj.Makr is
function Dup (Fd : File_Descriptor) return File_Descriptor;
procedure Dup2 (Old_Fd, New_Fd : File_Descriptor);
Gcc : constant String := "gcc";
Gcc_Path : String_Access := null;
Non_Empty_Node : constant Project_Node_Id := 1;
-- Used for the With_Clause of the naming project
type Matched_Type is (True, False, Excluded);
Naming_File_Suffix : constant String := "_naming";
Source_List_File_Suffix : constant String := "_source_list.txt";
Output_FD : File_Descriptor;
-- To save the project file and its naming project file
procedure Write_Eol;
-- Output an empty line
procedure Write_A_Char (C : Character);
-- Write one character to Output_FD
procedure Write_A_String (S : String);
-- Write a String to Output_FD
package Processed_Directories is new Table.Table
(Table_Component_Type => String_Access,
Table_Index_Type => Natural,
Table_Low_Bound => 0,
Table_Initial => 10,
Table_Increment => 10,
Table_Name => "Prj.Makr.Processed_Directories");
---------
-- Dup --
---------
function Dup (Fd : File_Descriptor) return File_Descriptor is
begin
return File_Descriptor (System.CRTL.dup (Integer (Fd)));
end Dup;
----------
-- Dup2 --
----------
procedure Dup2 (Old_Fd, New_Fd : File_Descriptor) is
Fd : Integer;
pragma Warnings (Off, Fd);
begin
Fd := System.CRTL.dup2 (Integer (Old_Fd), Integer (New_Fd));
end Dup2;
----------
-- Make --
----------
procedure Make
(File_Path : String;
Project_File : Boolean;
Directories : Argument_List;
Name_Patterns : Argument_List;
Excluded_Patterns : Argument_List;
Foreign_Patterns : Argument_List;
Preproc_Switches : Argument_List;
Very_Verbose : Boolean)
is
Tree : constant Project_Node_Tree_Ref := new Project_Node_Tree_Data;
Path_Name : String (1 .. File_Path'Length +
Project_File_Extension'Length);
Path_Last : Natural := File_Path'Length;
Directory_Last : Natural := 0;
Output_Name : String (Path_Name'Range);
Output_Name_Last : Natural;
Output_Name_Id : Name_Id;
Project_Node : Project_Node_Id := Empty_Node;
Project_Declaration : Project_Node_Id := Empty_Node;
Source_Dirs_List : Project_Node_Id := Empty_Node;
Current_Source_Dir : Project_Node_Id := Empty_Node;
Project_Naming_Node : Project_Node_Id := Empty_Node;
Project_Naming_Decl : Project_Node_Id := Empty_Node;
Naming_Package : Project_Node_Id := Empty_Node;
Naming_Package_Comments : Project_Node_Id := Empty_Node;
Source_Files_Comments : Project_Node_Id := Empty_Node;
Source_Dirs_Comments : Project_Node_Id := Empty_Node;
Source_List_File_Comments : Project_Node_Id := Empty_Node;
Project_Naming_File_Name : String (1 .. Output_Name'Length +
Naming_File_Suffix'Length);
Project_Naming_Last : Natural;
Project_Naming_Id : Name_Id := No_Name;
Excluded_Expressions : array (Excluded_Patterns'Range) of Regexp;
Regular_Expressions : array (Name_Patterns'Range) of Regexp;
Foreign_Expressions : array (Foreign_Patterns'Range) of Regexp;
Source_List_Path : String (1 .. Output_Name'Length +
Source_List_File_Suffix'Length);
Source_List_Last : Natural;
Source_List_FD : File_Descriptor;
Args : Argument_List (1 .. Preproc_Switches'Length + 6);
type SFN_Pragma is record
Unit : Name_Id;
File : Name_Id;
Index : Int := 0;
Spec : Boolean;
end record;
package SFN_Pragmas is new Table.Table
(Table_Component_Type => SFN_Pragma,
Table_Index_Type => Natural,
Table_Low_Bound => 0,
Table_Initial => 50,
Table_Increment => 50,
Table_Name => "Prj.Makr.SFN_Pragmas");
procedure Process_Directory (Dir_Name : String; Recursively : Boolean);
-- Look for Ada and foreign sources in a directory, according to the
-- patterns. When Recursively is True, after looking for sources in
-- Dir_Name, look also in its subdirectories, if any.
-----------------------
-- Process_Directory --
-----------------------
procedure Process_Directory (Dir_Name : String; Recursively : Boolean) is
Matched : Matched_Type := False;
Str : String (1 .. 2_000);
Canon : String (1 .. 2_000);
Last : Natural;
Dir : Dir_Type;
Process : Boolean := True;
Temp_File_Name : String_Access := null;
Save_Last_Pragma_Index : Natural := 0;
File_Name_Id : Name_Id := No_Name;
SFN_Prag : SFN_Pragma;
begin
-- Avoid processing the same directory more than once
for Index in 1 .. Processed_Directories.Last loop
if Processed_Directories.Table (Index).all = Dir_Name then
Process := False;
exit;
end if;
end loop;
if Process then
if Opt.Verbose_Mode then
Output.Write_Str ("Processing directory """);
Output.Write_Str (Dir_Name);
Output.Write_Line ("""");
end if;
Processed_Directories. Increment_Last;
Processed_Directories.Table (Processed_Directories.Last) :=
new String'(Dir_Name);
-- Get the source file names from the directory. Fails if the
-- directory does not exist.
begin
Open (Dir, Dir_Name);
exception
when Directory_Error =>
Prj.Com.Fail ("cannot open directory """, Dir_Name, """");
end;
-- Process each regular file in the directory
File_Loop : loop
Read (Dir, Str, Last);
exit File_Loop when Last = 0;
-- Copy the file name and put it in canonical case to match
-- against the patterns that have themselves already been put
-- in canonical case.
Canon (1 .. Last) := Str (1 .. Last);
Canonical_Case_File_Name (Canon (1 .. Last));
if Is_Regular_File
(Dir_Name & Directory_Separator & Str (1 .. Last))
then
Matched := True;
Name_Len := Last;
Name_Buffer (1 .. Name_Len) := Str (1 .. Last);
File_Name_Id := Name_Find;
-- First, check if the file name matches at least one of
-- the excluded expressions;
for Index in Excluded_Expressions'Range loop
if
Match (Canon (1 .. Last), Excluded_Expressions (Index))
then
Matched := Excluded;
exit;
end if;
end loop;
-- If it does not match any of the excluded expressions,
-- check if the file name matches at least one of the
-- regular expressions.
if Matched = True then
Matched := False;
for Index in Regular_Expressions'Range loop
if
Match
(Canon (1 .. Last), Regular_Expressions (Index))
then
Matched := True;
exit;
end if;
end loop;
end if;
if Very_Verbose
or else (Matched = True and then Opt.Verbose_Mode)
then
Output.Write_Str (" Checking """);
Output.Write_Str (Str (1 .. Last));
Output.Write_Line (""": ");
end if;
-- If the file name matches one of the regular expressions,
-- parse it to get its unit name.
if Matched = True then
declare
FD : File_Descriptor;
Success : Boolean;
Saved_Output : File_Descriptor;
Saved_Error : File_Descriptor;
begin
-- If we don't have the path of the compiler yet,
-- get it now. The compiler name may have a prefix,
-- so we get the potentially prefixed name.
if Gcc_Path = null then
declare
Prefix_Gcc : String_Access :=
Program_Name (Gcc);
begin
Gcc_Path :=
Locate_Exec_On_Path (Prefix_Gcc.all);
Free (Prefix_Gcc);
end;
if Gcc_Path = null then
Prj.Com.Fail ("could not locate " & Gcc);
end if;
end if;
-- If we don't have yet the file name of the
-- temporary file, get it now.
if Temp_File_Name = null then
Create_Temp_File (FD, Temp_File_Name);
if FD = Invalid_FD then
Prj.Com.Fail
("could not create temporary file");
end if;
Close (FD);
Delete_File (Temp_File_Name.all, Success);
end if;
Args (Args'Last) := new String'
(Dir_Name &
Directory_Separator &
Str (1 .. Last));
-- Create the temporary file
FD := Create_Output_Text_File
(Name => Temp_File_Name.all);
if FD = Invalid_FD then
Prj.Com.Fail
("could not create temporary file");
end if;
-- Save the standard output and error
Saved_Output := Dup (Standout);
Saved_Error := Dup (Standerr);
-- Set standard output and error to the temporary file
Dup2 (FD, Standout);
Dup2 (FD, Standerr);
-- And spawn the compiler
Spawn (Gcc_Path.all, Args, Success);
-- Restore the standard output and error
Dup2 (Saved_Output, Standout);
Dup2 (Saved_Error, Standerr);
-- Close the temporary file
Close (FD);
-- And close the saved standard output and error to
-- avoid too many file descriptors.
Close (Saved_Output);
Close (Saved_Error);
-- Now that standard output is restored, check if
-- the compiler ran correctly.
-- Read the lines of the temporary file:
-- they should contain the kind and name of the unit.
declare
File : Text_File;
Text_Line : String (1 .. 1_000);
Text_Last : Natural;
begin
Open (File, Temp_File_Name.all);
if not Is_Valid (File) then
Prj.Com.Fail
("could not read temporary file");
end if;
Save_Last_Pragma_Index := SFN_Pragmas.Last;
if End_Of_File (File) then
if Opt.Verbose_Mode then
if not Success then
Output.Write_Str (" (process died) ");
end if;
end if;
else
Line_Loop : while not End_Of_File (File) loop
Get_Line (File, Text_Line, Text_Last);
-- Find the first closing parenthesis
Char_Loop : for J in 1 .. Text_Last loop
if Text_Line (J) = ')' then
if J >= 13 and then
Text_Line (1 .. 4) = "Unit"
then
-- Add entry to SFN_Pragmas table
Name_Len := J - 12;
Name_Buffer (1 .. Name_Len) :=
Text_Line (6 .. J - 7);
SFN_Prag :=
(Unit => Name_Find,
File => File_Name_Id,
Index => 0,
Spec => Text_Line (J - 5 .. J) =
"(spec)");
SFN_Pragmas.Increment_Last;
SFN_Pragmas.Table
(SFN_Pragmas.Last) := SFN_Prag;
end if;
exit Char_Loop;
end if;
end loop Char_Loop;
end loop Line_Loop;
end if;
if Save_Last_Pragma_Index = SFN_Pragmas.Last then
if Opt.Verbose_Mode then
Output.Write_Line (" not a unit");
end if;
else
if SFN_Pragmas.Last >
Save_Last_Pragma_Index + 1
then
for Index in Save_Last_Pragma_Index + 1 ..
SFN_Pragmas.Last
loop
SFN_Pragmas.Table (Index).Index :=
Int (Index - Save_Last_Pragma_Index);
end loop;
end if;
for Index in Save_Last_Pragma_Index + 1 ..
SFN_Pragmas.Last
loop
SFN_Prag := SFN_Pragmas.Table (Index);
if Opt.Verbose_Mode then
if SFN_Prag.Spec then
Output.Write_Str (" spec of ");
else
Output.Write_Str (" body of ");
end if;
Output.Write_Line
(Get_Name_String (SFN_Prag.Unit));
end if;
if Project_File then
-- Add the corresponding attribute in the
-- Naming package of the naming project.
declare
Decl_Item : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind =>
N_Declarative_Item,
In_Tree => Tree);
Attribute : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind =>
N_Attribute_Declaration,
In_Tree => Tree);
Expression : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Expression,
And_Expr_Kind => Single,
In_Tree => Tree);
Term : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Term,
And_Expr_Kind => Single,
In_Tree => Tree);
Value : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Literal_String,
And_Expr_Kind => Single,
In_Tree => Tree);
begin
Set_Next_Declarative_Item
(Decl_Item,
To => First_Declarative_Item_Of
(Naming_Package, Tree),
In_Tree => Tree);
Set_First_Declarative_Item_Of
(Naming_Package,
To => Decl_Item,
In_Tree => Tree);
Set_Current_Item_Node
(Decl_Item,
To => Attribute,
In_Tree => Tree);
-- Is it a spec or a body?
if SFN_Prag.Spec then
Set_Name_Of
(Attribute, Tree,
To => Name_Spec);
else
Set_Name_Of
(Attribute, Tree,
To => Name_Body);
end if;
-- Get the name of the unit
Get_Name_String (SFN_Prag.Unit);
To_Lower (Name_Buffer (1 .. Name_Len));
Set_Associative_Array_Index_Of
(Attribute, Tree, To => Name_Find);
Set_Expression_Of
(Attribute, Tree, To => Expression);
Set_First_Term
(Expression, Tree, To => Term);
Set_Current_Term
(Term, Tree, To => Value);
-- And set the name of the file
Set_String_Value_Of
(Value, Tree, To => File_Name_Id);
Set_Source_Index_Of
(Value, Tree, To => SFN_Prag.Index);
end;
end if;
end loop;
if Project_File then
-- Add source file name to source list
-- file.
Last := Last + 1;
Str (Last) := ASCII.LF;
if Write (Source_List_FD,
Str (1)'Address,
Last) /= Last
then
Prj.Com.Fail ("disk full");
end if;
end if;
end if;
Close (File);
Delete_File (Temp_File_Name.all, Success);
end;
end;
-- File name matches none of the regular expressions
else
-- If file is not excluded, see if this is foreign source
if Matched /= Excluded then
for Index in Foreign_Expressions'Range loop
if Match (Canon (1 .. Last),
Foreign_Expressions (Index))
then
Matched := True;
exit;
end if;
end loop;
end if;
if Very_Verbose then
case Matched is
when False =>
Output.Write_Line ("no match");
when Excluded =>
Output.Write_Line ("excluded");
when True =>
Output.Write_Line ("foreign source");
end case;
end if;
if Project_File and Matched = True then
-- Add source file name to source list file
Last := Last + 1;
Str (Last) := ASCII.LF;
if Write (Source_List_FD,
Str (1)'Address,
Last) /= Last
then
Prj.Com.Fail ("disk full");
end if;
end if;
end if;
end if;
end loop File_Loop;
Close (Dir);
end if;
-- If Recursively is True, call itself for each subdirectory.
-- We do that, even when this directory has already been processed,
-- because all of its subdirectories may not have been processed.
if Recursively then
Open (Dir, Dir_Name);
loop
Read (Dir, Str, Last);
exit when Last = 0;
-- Do not call itself for "." or ".."
if Is_Directory
(Dir_Name & Directory_Separator & Str (1 .. Last))
and then Str (1 .. Last) /= "."
and then Str (1 .. Last) /= ".."
then
Process_Directory
(Dir_Name & Directory_Separator & Str (1 .. Last),
Recursively => True);
end if;
end loop;
Close (Dir);
end if;
end Process_Directory;
-- Start of processing for Make
begin
-- Do some needed initializations
Csets.Initialize;
Namet.Initialize;
Snames.Initialize;
Prj.Initialize (No_Project_Tree);
Prj.Tree.Initialize (Tree);
SFN_Pragmas.Set_Last (0);
Processed_Directories.Set_Last (0);
-- Initialize the compiler switches
Args (1) := new String'("-c");
Args (2) := new String'("-gnats");
Args (3) := new String'("-gnatu");
Args (4 .. 3 + Preproc_Switches'Length) := Preproc_Switches;
Args (4 + Preproc_Switches'Length) := new String'("-x");
Args (5 + Preproc_Switches'Length) := new String'("ada");
-- Get the path and file names
if File_Names_Case_Sensitive then
Path_Name (1 .. Path_Last) := File_Path;
else
Path_Name (1 .. Path_Last) := To_Lower (File_Path);
end if;
Path_Name (Path_Last + 1 .. Path_Name'Last) :=
Project_File_Extension;
-- Get the end of directory information, if any
for Index in reverse 1 .. Path_Last loop
if Path_Name (Index) = Directory_Separator then
Directory_Last := Index;
exit;
end if;
end loop;
if Project_File then
if Path_Last < Project_File_Extension'Length + 1
or else Path_Name
(Path_Last - Project_File_Extension'Length + 1 .. Path_Last)
/= Project_File_Extension
then
Path_Last := Path_Name'Last;
end if;
Output_Name (1 .. Path_Last) := To_Lower (Path_Name (1 .. Path_Last));
Output_Name_Last := Path_Last - Project_File_Extension'Length;
-- If there is already a project file with the specified name, parse
-- it to get the components that are not automatically generated.
if Is_Regular_File (Output_Name (1 .. Path_Last)) then
if Opt.Verbose_Mode then
Output.Write_Str ("Parsing already existing project file """);
Output.Write_Str (Output_Name (1 .. Output_Name_Last));
Output.Write_Line ("""");
end if;
Part.Parse
(In_Tree => Tree,
Project => Project_Node,
Project_File_Name => Output_Name (1 .. Output_Name_Last),
Always_Errout_Finalize => False,
Store_Comments => True);
-- Fail if parsing was not successful
if Project_Node = Empty_Node then
Fail ("parsing of existing project file failed");
else
-- If parsing was successful, remove the components that are
-- automatically generated, if any, so that they will be
-- unconditionally added later.
-- Remove the with clause for the naming project file
declare
With_Clause : Project_Node_Id :=
First_With_Clause_Of (Project_Node, Tree);
Previous : Project_Node_Id := Empty_Node;
begin
while With_Clause /= Empty_Node loop
if Prj.Tree.Name_Of (With_Clause, Tree) =
Project_Naming_Id
then
if Previous = Empty_Node then
Set_First_With_Clause_Of
(Project_Node, Tree,
To => Next_With_Clause_Of (With_Clause, Tree));
else
Set_Next_With_Clause_Of
(Previous, Tree,
To => Next_With_Clause_Of (With_Clause, Tree));
end if;
exit;
end if;
Previous := With_Clause;
With_Clause := Next_With_Clause_Of (With_Clause, Tree);
end loop;
end;
-- Remove attribute declarations of Source_Files,
-- Source_List_File, Source_Dirs, and the declaration of
-- package Naming, if they exist, but preserve the comments
-- attached to these nodes.
declare
Declaration : Project_Node_Id :=
First_Declarative_Item_Of
(Project_Declaration_Of
(Project_Node, Tree),
Tree);
Previous : Project_Node_Id := Empty_Node;
Current_Node : Project_Node_Id := Empty_Node;
Name : Name_Id;
Kind_Of_Node : Project_Node_Kind;
Comments : Project_Node_Id;
begin
while Declaration /= Empty_Node loop
Current_Node := Current_Item_Node (Declaration, Tree);
Kind_Of_Node := Kind_Of (Current_Node, Tree);
if Kind_Of_Node = N_Attribute_Declaration or else
Kind_Of_Node = N_Package_Declaration
then
Name := Prj.Tree.Name_Of (Current_Node, Tree);
if Name = Name_Source_Files or else
Name = Name_Source_List_File or else
Name = Name_Source_Dirs or else
Name = Name_Naming
then
Comments :=
Tree.Project_Nodes.Table (Current_Node).Comments;
if Name = Name_Source_Files then
Source_Files_Comments := Comments;
elsif Name = Name_Source_List_File then
Source_List_File_Comments := Comments;
elsif Name = Name_Source_Dirs then
Source_Dirs_Comments := Comments;
elsif Name = Name_Naming then
Naming_Package_Comments := Comments;
end if;
if Previous = Empty_Node then
Set_First_Declarative_Item_Of
(Project_Declaration_Of (Project_Node, Tree),
Tree,
To => Next_Declarative_Item
(Declaration, Tree));
else
Set_Next_Declarative_Item
(Previous, Tree,
To => Next_Declarative_Item
(Declaration, Tree));
end if;
else
Previous := Declaration;
end if;
end if;
Declaration := Next_Declarative_Item (Declaration, Tree);
end loop;
end;
end if;
end if;
if Directory_Last /= 0 then
Output_Name (1 .. Output_Name_Last - Directory_Last) :=
Output_Name (Directory_Last + 1 .. Output_Name_Last);
Output_Name_Last := Output_Name_Last - Directory_Last;
end if;
-- Get the project name id
Name_Len := Output_Name_Last;
Name_Buffer (1 .. Name_Len) := Output_Name (1 .. Name_Len);
Output_Name_Id := Name_Find;
-- Create the project naming file name
Project_Naming_Last := Output_Name_Last;
Project_Naming_File_Name (1 .. Project_Naming_Last) :=
Output_Name (1 .. Project_Naming_Last);
Project_Naming_File_Name
(Project_Naming_Last + 1 ..
Project_Naming_Last + Naming_File_Suffix'Length) :=
Naming_File_Suffix;
Project_Naming_Last :=
Project_Naming_Last + Naming_File_Suffix'Length;
-- Get the project naming id
Name_Len := Project_Naming_Last;
Name_Buffer (1 .. Name_Len) :=
Project_Naming_File_Name (1 .. Name_Len);
Project_Naming_Id := Name_Find;
Project_Naming_File_Name
(Project_Naming_Last + 1 ..
Project_Naming_Last + Project_File_Extension'Length) :=
Project_File_Extension;
Project_Naming_Last :=
Project_Naming_Last + Project_File_Extension'Length;
-- Create the source list file name
Source_List_Last := Output_Name_Last;
Source_List_Path (1 .. Source_List_Last) :=
Output_Name (1 .. Source_List_Last);
Source_List_Path
(Source_List_Last + 1 ..
Source_List_Last + Source_List_File_Suffix'Length) :=
Source_List_File_Suffix;
Source_List_Last := Source_List_Last + Source_List_File_Suffix'Length;
-- Add the project file extension to the project name
Output_Name
(Output_Name_Last + 1 ..
Output_Name_Last + Project_File_Extension'Length) :=
Project_File_Extension;
Output_Name_Last := Output_Name_Last + Project_File_Extension'Length;
end if;
-- Change the current directory to the directory of the project file,
-- if any directory information is specified.
if Directory_Last /= 0 then
begin
Change_Dir (Path_Name (1 .. Directory_Last));
exception
when Directory_Error =>
Prj.Com.Fail
("unknown directory """,
Path_Name (1 .. Directory_Last),
"""");
end;
end if;
if Project_File then
-- Delete the source list file, if it already exists
declare
Discard : Boolean;
begin
Delete_File
(Source_List_Path (1 .. Source_List_Last),
Success => Discard);
end;
-- And create a new source list file.
-- Fail if file cannot be created.
Source_List_FD := Create_New_File
(Name => Source_List_Path (1 .. Source_List_Last),
Fmode => Text);
if Source_List_FD = Invalid_FD then
Prj.Com.Fail
("cannot create file """,
Source_List_Path (1 .. Source_List_Last),
"""");
end if;
end if;
-- Compile the regular expressions. Fails immediately if any of
-- the specified strings is in error.
for Index in Excluded_Expressions'Range loop
if Very_Verbose then
Output.Write_Str ("Excluded pattern: """);
Output.Write_Str (Excluded_Patterns (Index).all);
Output.Write_Line ("""");
end if;
begin
Excluded_Expressions (Index) :=
Compile (Pattern => Excluded_Patterns (Index).all, Glob => True);
exception
when Error_In_Regexp =>
Prj.Com.Fail
("invalid regular expression """,
Excluded_Patterns (Index).all,
"""");
end;
end loop;
for Index in Foreign_Expressions'Range loop
if Very_Verbose then
Output.Write_Str ("Foreign pattern: """);
Output.Write_Str (Foreign_Patterns (Index).all);
Output.Write_Line ("""");
end if;
begin
Foreign_Expressions (Index) :=
Compile (Pattern => Foreign_Patterns (Index).all, Glob => True);
exception
when Error_In_Regexp =>
Prj.Com.Fail
("invalid regular expression """,
Foreign_Patterns (Index).all,
"""");
end;
end loop;
for Index in Regular_Expressions'Range loop
if Very_Verbose then
Output.Write_Str ("Pattern: """);
Output.Write_Str (Name_Patterns (Index).all);
Output.Write_Line ("""");
end if;
begin
Regular_Expressions (Index) :=
Compile (Pattern => Name_Patterns (Index).all, Glob => True);
exception
when Error_In_Regexp =>
Prj.Com.Fail
("invalid regular expression """,
Name_Patterns (Index).all,
"""");
end;
end loop;
if Project_File then
if Opt.Verbose_Mode then
Output.Write_Str ("Naming project file name is """);
Output.Write_Str
(Project_Naming_File_Name (1 .. Project_Naming_Last));
Output.Write_Line ("""");
end if;
-- If there were no already existing project file, or if the parsing
-- was unsuccessful, create an empty project node with the correct
-- name and its project declaration node.
if Project_Node = Empty_Node then
Project_Node :=
Default_Project_Node (Of_Kind => N_Project, In_Tree => Tree);
Set_Name_Of (Project_Node, Tree, To => Output_Name_Id);
Set_Project_Declaration_Of
(Project_Node, Tree,
To => Default_Project_Node
(Of_Kind => N_Project_Declaration, In_Tree => Tree));
end if;
-- Create the naming project node, and add an attribute declaration
-- for Source_Files as an empty list, to indicate there are no
-- sources in the naming project.
Project_Naming_Node :=
Default_Project_Node (Of_Kind => N_Project, In_Tree => Tree);
Set_Name_Of (Project_Naming_Node, Tree, To => Project_Naming_Id);
Project_Naming_Decl :=
Default_Project_Node
(Of_Kind => N_Project_Declaration, In_Tree => Tree);
Set_Project_Declaration_Of
(Project_Naming_Node, Tree, Project_Naming_Decl);
Naming_Package :=
Default_Project_Node
(Of_Kind => N_Package_Declaration, In_Tree => Tree);
Set_Name_Of (Naming_Package, Tree, To => Name_Naming);
declare
Decl_Item : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Declarative_Item, In_Tree => Tree);
Attribute : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Attribute_Declaration,
In_Tree => Tree,
And_Expr_Kind => List);
Expression : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Expression,
In_Tree => Tree,
And_Expr_Kind => List);
Term : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Term,
In_Tree => Tree,
And_Expr_Kind => List);
Empty_List : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Literal_String_List,
In_Tree => Tree);
begin
Set_First_Declarative_Item_Of
(Project_Naming_Decl, Tree, To => Decl_Item);
Set_Next_Declarative_Item (Decl_Item, Tree, Naming_Package);
Set_Current_Item_Node (Decl_Item, Tree, To => Attribute);
Set_Name_Of (Attribute, Tree, To => Name_Source_Files);
Set_Expression_Of (Attribute, Tree, To => Expression);
Set_First_Term (Expression, Tree, To => Term);
Set_Current_Term (Term, Tree, To => Empty_List);
end;
-- Add a with clause on the naming project in the main project, if
-- there is not already one.
declare
With_Clause : Project_Node_Id :=
First_With_Clause_Of (Project_Node, Tree);
begin
while With_Clause /= Empty_Node loop
exit when
Prj.Tree.Name_Of (With_Clause, Tree) = Project_Naming_Id;
With_Clause := Next_With_Clause_Of (With_Clause, Tree);
end loop;
if With_Clause = Empty_Node then
With_Clause := Default_Project_Node
(Of_Kind => N_With_Clause, In_Tree => Tree);
Set_Next_With_Clause_Of
(With_Clause, Tree,
To => First_With_Clause_Of (Project_Node, Tree));
Set_First_With_Clause_Of
(Project_Node, Tree, To => With_Clause);
Set_Name_Of (With_Clause, Tree, To => Project_Naming_Id);
-- We set the project node to something different than
-- Empty_Node, so that Prj.PP does not generate a limited
-- with clause.
Set_Project_Node_Of (With_Clause, Tree, Non_Empty_Node);
Name_Len := Project_Naming_Last;
Name_Buffer (1 .. Name_Len) :=
Project_Naming_File_Name (1 .. Project_Naming_Last);
Set_String_Value_Of (With_Clause, Tree, To => Name_Find);
end if;
end;
Project_Declaration := Project_Declaration_Of (Project_Node, Tree);
-- Add a renaming declaration for package Naming in the main project
declare
Decl_Item : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Declarative_Item,
In_Tree => Tree);
Naming : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Package_Declaration,
In_Tree => Tree);
begin
Set_Next_Declarative_Item
(Decl_Item, Tree,
To => First_Declarative_Item_Of (Project_Declaration, Tree));
Set_First_Declarative_Item_Of
(Project_Declaration, Tree, To => Decl_Item);
Set_Current_Item_Node (Decl_Item, Tree, To => Naming);
Set_Name_Of (Naming, Tree, To => Name_Naming);
Set_Project_Of_Renamed_Package_Of
(Naming, Tree, To => Project_Naming_Node);
-- Attach the comments, if any, that were saved for package
-- Naming.
Tree.Project_Nodes.Table (Naming).Comments :=
Naming_Package_Comments;
end;
-- Add an attribute declaration for Source_Dirs, initialized as an
-- empty list. Directories will be added as they are read from the
-- directory list file.
declare
Decl_Item : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Declarative_Item,
In_Tree => Tree);
Attribute : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Attribute_Declaration,
In_Tree => Tree,
And_Expr_Kind => List);
Expression : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Expression,
In_Tree => Tree,
And_Expr_Kind => List);
Term : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Term, In_Tree => Tree,
And_Expr_Kind => List);
begin
Set_Next_Declarative_Item
(Decl_Item, Tree,
To => First_Declarative_Item_Of (Project_Declaration, Tree));
Set_First_Declarative_Item_Of
(Project_Declaration, Tree, To => Decl_Item);
Set_Current_Item_Node (Decl_Item, Tree, To => Attribute);
Set_Name_Of (Attribute, Tree, To => Name_Source_Dirs);
Set_Expression_Of (Attribute, Tree, To => Expression);
Set_First_Term (Expression, Tree, To => Term);
Source_Dirs_List :=
Default_Project_Node
(Of_Kind => N_Literal_String_List,
In_Tree => Tree,
And_Expr_Kind => List);
Set_Current_Term (Term, Tree, To => Source_Dirs_List);
-- Attach the comments, if any, that were saved for attribute
-- Source_Dirs.
Tree.Project_Nodes.Table (Attribute).Comments :=
Source_Dirs_Comments;
end;
-- Add an attribute declaration for Source_List_File with the
-- source list file name that will be created.
declare
Decl_Item : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Declarative_Item,
In_Tree => Tree);
Attribute : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Attribute_Declaration,
In_Tree => Tree,
And_Expr_Kind => Single);
Expression : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Expression,
In_Tree => Tree,
And_Expr_Kind => Single);
Term : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Term,
In_Tree => Tree,
And_Expr_Kind => Single);
Value : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Literal_String,
In_Tree => Tree,
And_Expr_Kind => Single);
begin
Set_Next_Declarative_Item
(Decl_Item, Tree,
To => First_Declarative_Item_Of (Project_Declaration, Tree));
Set_First_Declarative_Item_Of
(Project_Declaration, Tree, To => Decl_Item);
Set_Current_Item_Node (Decl_Item, Tree, To => Attribute);
Set_Name_Of (Attribute, Tree, To => Name_Source_List_File);
Set_Expression_Of (Attribute, Tree, To => Expression);
Set_First_Term (Expression, Tree, To => Term);
Set_Current_Term (Term, Tree, To => Value);
Name_Len := Source_List_Last;
Name_Buffer (1 .. Name_Len) :=
Source_List_Path (1 .. Source_List_Last);
Set_String_Value_Of (Value, Tree, To => Name_Find);
-- If there was no comments for attribute Source_List_File, put
-- those for Source_Files, if they exist.
if Source_List_File_Comments /= Empty_Node then
Tree.Project_Nodes.Table (Attribute).Comments :=
Source_List_File_Comments;
else
Tree.Project_Nodes.Table (Attribute).Comments :=
Source_Files_Comments;
end if;
end;
end if;
-- Process each directory
for Index in Directories'Range loop
declare
Dir_Name : constant String := Directories (Index).all;
Last : Natural := Dir_Name'Last;
Recursively : Boolean := False;
begin
if Dir_Name'Length >= 4
and then (Dir_Name (Last - 2 .. Last) = "/**")
then
Last := Last - 3;
Recursively := True;
end if;
if Project_File then
-- Add the directory in the list for attribute Source_Dirs
declare
Expression : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Expression,
In_Tree => Tree,
And_Expr_Kind => Single);
Term : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Term,
In_Tree => Tree,
And_Expr_Kind => Single);
Value : constant Project_Node_Id :=
Default_Project_Node
(Of_Kind => N_Literal_String,
In_Tree => Tree,
And_Expr_Kind => Single);
begin
if Current_Source_Dir = Empty_Node then
Set_First_Expression_In_List
(Source_Dirs_List, Tree, To => Expression);
else
Set_Next_Expression_In_List
(Current_Source_Dir, Tree, To => Expression);
end if;
Current_Source_Dir := Expression;
Set_First_Term (Expression, Tree, To => Term);
Set_Current_Term (Term, Tree, To => Value);
Name_Len := Dir_Name'Length;
Name_Buffer (1 .. Name_Len) := Dir_Name;
Set_String_Value_Of (Value, Tree, To => Name_Find);
end;
end if;
Process_Directory (Dir_Name (Dir_Name'First .. Last), Recursively);
end;
end loop;
if Project_File then
Close (Source_List_FD);
end if;
declare
Discard : Boolean;
begin
-- Delete the file if it already exists
Delete_File
(Path_Name (Directory_Last + 1 .. Path_Last),
Success => Discard);
-- Create a new one
if Opt.Verbose_Mode then
Output.Write_Str ("Creating new file """);
Output.Write_Str (Path_Name (Directory_Last + 1 .. Path_Last));
Output.Write_Line ("""");
end if;
Output_FD := Create_New_File
(Path_Name (Directory_Last + 1 .. Path_Last),
Fmode => Text);
-- Fails if project file cannot be created
if Output_FD = Invalid_FD then
Prj.Com.Fail
("cannot create new """, Path_Name (1 .. Path_Last), """");
end if;
if Project_File then
-- Output the project file
Prj.PP.Pretty_Print
(Project_Node, Tree,
W_Char => Write_A_Char'Access,
W_Eol => Write_Eol'Access,
W_Str => Write_A_String'Access,
Backward_Compatibility => False);
Close (Output_FD);
-- Delete the naming project file if it already exists
Delete_File
(Project_Naming_File_Name (1 .. Project_Naming_Last),
Success => Discard);
-- Create a new one
if Opt.Verbose_Mode then
Output.Write_Str ("Creating new naming project file """);
Output.Write_Str (Project_Naming_File_Name
(1 .. Project_Naming_Last));
Output.Write_Line ("""");
end if;
Output_FD := Create_New_File
(Project_Naming_File_Name (1 .. Project_Naming_Last),
Fmode => Text);
-- Fails if naming project file cannot be created
if Output_FD = Invalid_FD then
Prj.Com.Fail
("cannot create new """,
Project_Naming_File_Name (1 .. Project_Naming_Last),
"""");
end if;
-- Output the naming project file
Prj.PP.Pretty_Print
(Project_Naming_Node, Tree,
W_Char => Write_A_Char'Access,
W_Eol => Write_Eol'Access,
W_Str => Write_A_String'Access,
Backward_Compatibility => False);
Close (Output_FD);
else
-- Write to the output file each entry in the SFN_Pragmas table
-- as an pragma Source_File_Name.
for Index in 1 .. SFN_Pragmas.Last loop
Write_A_String ("pragma Source_File_Name");
Write_Eol;
Write_A_String (" (");
Write_A_String
(Get_Name_String (SFN_Pragmas.Table (Index).Unit));
Write_A_String (",");
Write_Eol;
if SFN_Pragmas.Table (Index).Spec then
Write_A_String (" Spec_File_Name => """);
else
Write_A_String (" Body_File_Name => """);
end if;
Write_A_String
(Get_Name_String (SFN_Pragmas.Table (Index).File));
Write_A_String ("""");
if SFN_Pragmas.Table (Index).Index /= 0 then
Write_A_String (", Index =>");
Write_A_String (SFN_Pragmas.Table (Index).Index'Img);
end if;
Write_A_String (");");
Write_Eol;
end loop;
Close (Output_FD);
end if;
end;
end Make;
----------------
-- Write_Char --
----------------
procedure Write_A_Char (C : Character) is
begin
Write_A_String ((1 => C));
end Write_A_Char;
---------------
-- Write_Eol --
---------------
procedure Write_Eol is
begin
Write_A_String ((1 => ASCII.LF));
end Write_Eol;
--------------------
-- Write_A_String --
--------------------
procedure Write_A_String (S : String) is
Str : String (1 .. S'Length);
begin
if S'Length > 0 then
Str := S;
if Write (Output_FD, Str (1)'Address, Str'Length) /= Str'Length then
Prj.Com.Fail ("disk full");
end if;
end if;
end Write_A_String;
end Prj.Makr;
|
-- This spec has been automatically generated from STM32WL5x_CM4.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.DAC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- CR_TSEL array
type CR_TSEL_Field_Array is array (10 .. 13) of Boolean
with Component_Size => 1, Size => 4;
-- Type definition for CR_TSEL
type CR_TSEL_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- TSEL as a value
Val : HAL.UInt4;
when True =>
-- TSEL as an array
Arr : CR_TSEL_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for CR_TSEL_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
subtype CR_WAVE1_Field is HAL.UInt2;
subtype CR_MAMP1_Field is HAL.UInt4;
-- control register
type CR_Register is record
-- DAC channel1 enable
EN1 : Boolean := False;
-- DAC channel1 trigger enable
TEN1 : Boolean := False;
-- TSEL10
TSEL : CR_TSEL_Field := (As_Array => False, Val => 16#0#);
-- DAC channel1 noise/triangle wave generation enable
WAVE1 : CR_WAVE1_Field := 16#0#;
-- DAC channel1 mask/amplitude selector
MAMP1 : CR_MAMP1_Field := 16#0#;
-- DAC channel1 DMA enable
DMAEN1 : Boolean := False;
-- DAC channel1 DMA Underrun Interrupt enable
DMAUDRIE1 : Boolean := False;
-- DAC Channel 1 calibration enable
CEN1 : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
EN1 at 0 range 0 .. 0;
TEN1 at 0 range 1 .. 1;
TSEL at 0 range 2 .. 5;
WAVE1 at 0 range 6 .. 7;
MAMP1 at 0 range 8 .. 11;
DMAEN1 at 0 range 12 .. 12;
DMAUDRIE1 at 0 range 13 .. 13;
CEN1 at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- software trigger register
type SWTRGR_Register is record
-- Write-only. DAC channel1 software trigger
SWTRIG1 : Boolean := False;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SWTRGR_Register use record
SWTRIG1 at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype DHR12R1_DACC1DHR_Field is HAL.UInt12;
-- channel1 12-bit right-aligned data holding register
type DHR12R1_Register is record
-- DAC channel1 12-bit right-aligned data
DACC1DHR : DHR12R1_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR12R1_Register use record
DACC1DHR at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype DHR12L1_DACC1DHR_Field is HAL.UInt12;
-- channel1 12-bit left aligned data holding register
type DHR12L1_Register is record
-- unspecified
Reserved_0_3 : HAL.UInt4 := 16#0#;
-- DAC channel1 12-bit left-aligned data
DACC1DHR : DHR12L1_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR12L1_Register use record
Reserved_0_3 at 0 range 0 .. 3;
DACC1DHR at 0 range 4 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DHR8R1_DACC1DHR_Field is HAL.UInt8;
-- channel1 8-bit right aligned data holding register
type DHR8R1_Register is record
-- DAC channel1 8-bit right-aligned data
DACC1DHR : DHR8R1_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR8R1_Register use record
DACC1DHR at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype DHR12RD_DACC1DHR_Field is HAL.UInt12;
-- Dual DAC 12-bit right-aligned data holding register
type DHR12RD_Register is record
-- DAC channel1 12-bit right-aligned data
DACC1DHR : DHR12RD_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR12RD_Register use record
DACC1DHR at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype DHR12LD_DACC1DHR_Field is HAL.UInt12;
-- Dual DAC 12-bit left aligned data holding register
type DHR12LD_Register is record
-- unspecified
Reserved_0_3 : HAL.UInt4 := 16#0#;
-- DAC channel1 12-bit left-aligned data
DACC1DHR : DHR12LD_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR12LD_Register use record
Reserved_0_3 at 0 range 0 .. 3;
DACC1DHR at 0 range 4 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DHR8RD_DACC1DHR_Field is HAL.UInt8;
-- Dual DAC 8-bit right aligned data holding register
type DHR8RD_Register is record
-- DAC channel1 8-bit right-aligned data
DACC1DHR : DHR8RD_DACC1DHR_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DHR8RD_Register use record
DACC1DHR at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype DOR1_DACC1DOR_Field is HAL.UInt12;
-- DAC channel1 data output register
type DOR1_Register is record
-- Read-only. DACC1DOR
DACC1DOR : DOR1_DACC1DOR_Field;
-- unspecified
Reserved_12_31 : HAL.UInt20;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for DOR1_Register use record
DACC1DOR at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-- status register
type SR_Register is record
-- unspecified
Reserved_0_12 : HAL.UInt13 := 16#0#;
-- DAC channel1 DMA underrun flag
DMAUDR1 : Boolean := False;
-- Read-only. DAC Channel 1 calibration offset status
CAL_FLAG1 : Boolean := False;
-- Read-only. DAC Channel 1 busy writing sample time flag
BWST1 : Boolean := False;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
Reserved_0_12 at 0 range 0 .. 12;
DMAUDR1 at 0 range 13 .. 13;
CAL_FLAG1 at 0 range 14 .. 14;
BWST1 at 0 range 15 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype CCR_OTRIM1_Field is HAL.UInt5;
-- calibration control register
type CCR_Register is record
-- DAC Channel 1 offset trimming value
OTRIM1 : CCR_OTRIM1_Field := 16#0#;
-- unspecified
Reserved_5_31 : HAL.UInt27 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CCR_Register use record
OTRIM1 at 0 range 0 .. 4;
Reserved_5_31 at 0 range 5 .. 31;
end record;
subtype MCR_MODE1_Field is HAL.UInt3;
-- mode control register
type MCR_Register is record
-- DAC Channel 1 mode
MODE1 : MCR_MODE1_Field := 16#0#;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for MCR_Register use record
MODE1 at 0 range 0 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
subtype SHSR1_TSAMPLE1_Field is HAL.UInt10;
-- Sample and Hold sample time register 1
type SHSR1_Register is record
-- DAC Channel 1 sample Time (only valid in Sample and Hold mode)
TSAMPLE1 : SHSR1_TSAMPLE1_Field := 16#0#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SHSR1_Register use record
TSAMPLE1 at 0 range 0 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
subtype SHHR_THOLD1_Field is HAL.UInt10;
-- Sample and Hold hold time register
type SHHR_Register is record
-- DAC Channel 1 hold Time (only valid in Sample and Hold mode)
THOLD1 : SHHR_THOLD1_Field := 16#1#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#40#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SHHR_Register use record
THOLD1 at 0 range 0 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
subtype SHRR_TREFRESH1_Field is HAL.UInt8;
-- Sample and Hold refresh time register
type SHRR_Register is record
-- DAC Channel 1 refresh Time (only valid in Sample and Hold mode)
TREFRESH1 : SHRR_TREFRESH1_Field := 16#1#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#100#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SHRR_Register use record
TREFRESH1 at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Digital-to-analog converter
type DAC_Peripheral is record
-- control register
CR : aliased CR_Register;
-- software trigger register
SWTRGR : aliased SWTRGR_Register;
-- channel1 12-bit right-aligned data holding register
DHR12R1 : aliased DHR12R1_Register;
-- channel1 12-bit left aligned data holding register
DHR12L1 : aliased DHR12L1_Register;
-- channel1 8-bit right aligned data holding register
DHR8R1 : aliased DHR8R1_Register;
-- Dual DAC 12-bit right-aligned data holding register
DHR12RD : aliased DHR12RD_Register;
-- Dual DAC 12-bit left aligned data holding register
DHR12LD : aliased DHR12LD_Register;
-- Dual DAC 8-bit right aligned data holding register
DHR8RD : aliased DHR8RD_Register;
-- DAC channel1 data output register
DOR1 : aliased DOR1_Register;
-- status register
SR : aliased SR_Register;
-- calibration control register
CCR : aliased CCR_Register;
-- mode control register
MCR : aliased MCR_Register;
-- Sample and Hold sample time register 1
SHSR1 : aliased SHSR1_Register;
-- Sample and Hold hold time register
SHHR : aliased SHHR_Register;
-- Sample and Hold refresh time register
SHRR : aliased SHRR_Register;
end record
with Volatile;
for DAC_Peripheral use record
CR at 16#0# range 0 .. 31;
SWTRGR at 16#4# range 0 .. 31;
DHR12R1 at 16#8# range 0 .. 31;
DHR12L1 at 16#C# range 0 .. 31;
DHR8R1 at 16#10# range 0 .. 31;
DHR12RD at 16#20# range 0 .. 31;
DHR12LD at 16#24# range 0 .. 31;
DHR8RD at 16#28# range 0 .. 31;
DOR1 at 16#2C# range 0 .. 31;
SR at 16#34# range 0 .. 31;
CCR at 16#38# range 0 .. 31;
MCR at 16#3C# range 0 .. 31;
SHSR1 at 16#40# range 0 .. 31;
SHHR at 16#48# range 0 .. 31;
SHRR at 16#4C# range 0 .. 31;
end record;
-- Digital-to-analog converter
DAC_Periph : aliased DAC_Peripheral
with Import, Address => DAC_Base;
end STM32_SVD.DAC;
|
-- C47009A.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:
-- WHEN THE TYPE MARK IN A QUALIFIED EXPRESSION DENOTES A
-- CONSTRAINED ACCESS TYPE, CHECK THAT CONSTRAINT_ERROR IS RAISED
-- WHEN THE VALUE OF THE OPERAND IS NOT NULL AND THE DESIGNATED
-- OBJECT HAS INDEX BOUNDS OR DISCRIMINANT VALUES THAT DO NOT EQUAL
-- THOSE SPECIFIED IN THE ACCESS TYPE'S CONSTRAINT.
-- HISTORY:
-- RJW 7/23/86
-- DWC 07/24/87 REVISED TO MAKE THE ACCESS TYPE UNCONSTRAINED
-- AND TO PREVENT DEAD VARIABLE OPTIMIZATION.
WITH REPORT; USE REPORT;
PROCEDURE C47009A IS
BEGIN
TEST( "C47009A", "WHEN THE TYPE MARK IN A QUALIFIED EXPRESSION " &
"DENOTES A CONSTRAINED ACCESS TYPE, CHECK " &
"THAT CONSTRAINT_ERROR IS RAISED WHEN THE " &
"VALUE OF THE OPERAND IS NOT NULL AND THE " &
"DESIGNATED OBJECT HAS INDEX BOUNDS OR " &
"DISCRIMINANT VALUES THAT DO NOT EQUAL THOSE " &
"SPECIFIED IN THE ACCESS TYPE'S CONSTRAINT" );
DECLARE
TYPE ARR IS ARRAY (NATURAL RANGE <>) OF INTEGER;
TYPE ACC1 IS ACCESS ARR;
SUBTYPE ACC1S IS ACC1 (IDENT_INT (1) .. IDENT_INT (5));
A : ACC1;
B : ARR (IDENT_INT (2) .. IDENT_INT (6));
BEGIN
A := ACC1S'(NEW ARR'(B'FIRST .. B'LAST => 0));
IF A'FIRST = 1 THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC1 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC1 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC1" );
END;
DECLARE
TYPE ARR IS ARRAY (NATURAL RANGE <>, NATURAL RANGE <>)
OF INTEGER;
TYPE ACC2 IS ACCESS ARR;
SUBTYPE ACC2S IS ACC2 (IDENT_INT (1) .. IDENT_INT (5),
IDENT_INT (1) .. IDENT_INT (1));
A : ACC2;
B : ARR (IDENT_INT (1) .. IDENT_INT (5),
IDENT_INT (2) .. IDENT_INT (2));
BEGIN
A := ACC2S'(NEW ARR'(B'RANGE => (B'RANGE (2) => 0)));
IF A'FIRST = 1 THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC2 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC2 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC2" );
END;
DECLARE
TYPE REC (D : INTEGER) IS
RECORD
NULL;
END RECORD;
TYPE ACC3 IS ACCESS REC;
SUBTYPE ACC3S IS ACC3 (IDENT_INT (3));
A : ACC3;
B : REC (IDENT_INT (5)) := (D => (IDENT_INT (5)));
BEGIN
A := ACC3S'(NEW REC'(B));
IF A = NULL THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC3 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC3 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC3" );
END;
DECLARE
TYPE REC (D1,D2 : INTEGER) IS
RECORD
NULL;
END RECORD;
TYPE ACC4 IS ACCESS REC;
SUBTYPE ACC4S IS ACC4 (IDENT_INT (4), IDENT_INT (5));
A : ACC4;
B : REC (IDENT_INT (5), IDENT_INT (4)) :=
(D1 => (IDENT_INT (5)), D2 => (IDENT_INT (4)));
BEGIN
A := ACC4S'(NEW REC'(B));
IF A = NULL THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC4 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC4 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR DISC VALUES " &
"DIFFERENT FROM THOSE OF TYPE ACC4" );
END;
DECLARE
PACKAGE PKG IS
TYPE REC (D : INTEGER) IS PRIVATE;
B : CONSTANT REC;
PRIVATE
TYPE REC (D : INTEGER) IS
RECORD
NULL;
END RECORD;
B : CONSTANT REC := (D => (IDENT_INT (4)));
END PKG;
USE PKG;
TYPE ACC5 IS ACCESS REC;
SUBTYPE ACC5S IS ACC5 (IDENT_INT (3));
A : ACC5;
BEGIN
A := ACC5S'(NEW REC'(B));
IF A = NULL THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC5 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC5 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR DISC VALUES " &
"DIFFERENT FROM THOSE OF TYPE ACC5" );
END;
DECLARE
PACKAGE PKG1 IS
TYPE REC (D : INTEGER) IS LIMITED PRIVATE;
TYPE ACC6 IS ACCESS REC;
SUBTYPE ACC6S IS ACC6 (IDENT_INT (6));
FUNCTION F RETURN ACC6;
PRIVATE
TYPE REC (D : INTEGER) IS
RECORD
NULL;
END RECORD;
END PKG1;
PACKAGE BODY PKG1 IS
FUNCTION F RETURN ACC6 IS
BEGIN
RETURN NEW REC'(D => IDENT_INT (5));
END F;
END PKG1;
PACKAGE PKG2 IS END PKG2;
PACKAGE BODY PKG2 IS
USE PKG1;
A : ACC6;
BEGIN
A := ACC6S'(F);
IF A = NULL THEN
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC6 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED FOR INDEX BOUNDS " &
"DIFFERENT FROM THOSE OF TYPE ACC6 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED FOR DISC " &
"VALUES DIFFERENT FROM THOSE OF TYPE " &
"ACC6" );
END PKG2;
BEGIN
NULL;
END;
RESULT;
END C47009A;
|
----------------------------------------------------------------------
--
-- The Dining Philosophers' Problem
--
-- written by
--
-- Edmond Schonberg
-- and
-- Gerry Fisher
--
-- Ada Project
-- Courant Institute
-- New York University
-- 251 Mercer Street
-- New York, New York 10012
--
-----------------------------------------------------------------------
with TEXT_IO; use TEXT_IO;
procedure DINING_PHILOSOPHERS is
type PHILOSOPHER is (Descartes, Hegel, Turing, Plato, Sartre);
meals: constant array(PHILOSOPHER) of INTEGER := (3,2,2,2,3);
Message1: constant array(PHILOSOPHER) of STRING(1 .. 30) :=
("I eat: therefore I am ",
"Hegel synthesizes ",
"Turing shifts ",
"Plato eats the ideal spaghetti",
"Sartre gorges "
);
Message2: constant array(PHILOSOPHER) of STRING(1 .. 30) :=
("Descartes cogitates ",
"Hegel's pure spirit at work ",
"Turing machinates ",
"Plato watches the shadows ",
"Sartre eats nothing "
);
Message3: constant array(PHILOSOPHER) of STRING(1 .. 30) :=
("Descartes concludes ",
"The owl of Minerva is stuffed ",
"Turing halts ",
"Plato retreats ",
"Sartre is nauseated "
);
task type DINING is
entry WHO_AM_I(p: PHILOSOPHER);
end DINING;
task TABLE_MANAGER is
entry EAT(PHILOSOPHER);
entry REST(p: PHILOSOPHER);
entry FAST_RELIEF(p: PHILOSOPHER);
end TABLE_MANAGER;
task body DINING is separate;
task body TABLE_MANAGER is separate;
begin
declare
PHILS: array(PHILOSOPHER) of DINING;
begin
for philo in PHILOSOPHER
loop
PHILS(philo).WHO_AM_I(philo);
end loop;
end;
put_line("Closing time ...");
end DINING_PHILOSOPHERS;
-----------------------------------------------------------------------
separate(DINING_PHILOSOPHERS)
task body DINING is
philo: PHILOSOPHER;
begin
accept WHO_AM_I(p: PHILOSOPHER) do
philo := p;
end WHO_AM_I;
for n in 1 .. meals(philo)
loop
TABLE_MANAGER.EAT(philo);
delay 1.0;
TABLE_MANAGER.REST(philo);
delay 0.5;
end loop;
TABLE_MANAGER.FAST_RELIEF(philo);
end DINING;
------------------------------------------------------------------------
separate(DINING_PHILOSOPHERS)
task body TABLE_MANAGER is
type AVAIL is
record
LEFT, RIGHT: BOOLEAN;
end record;
FORKS: array(PHILOSOPHER) of AVAIL :=
(PHILOSOPHER'FIRST..PHILOSOPHER'LAST => (TRUE, TRUE));
type ACTION is (seize,release);
numphil: constant INTEGER := 5;
TWO: constant AVAIL := (TRUE,TRUE);
procedure fork_action(p: PHILOSOPHER; a: ACTION) is separate;
begin
loop
select
when FORKS(Descartes) = TWO =>
accept EAT(Descartes);
fork_action(Descartes, seize);
put_line(Message1(Descartes));
or when FORKS(Hegel) = TWO =>
accept EAT(Hegel);
fork_action(Hegel, seize);
put_line(Message1(Hegel));
or when FORKS(Turing) = TWO =>
accept EAT(Turing);
fork_action(Turing, seize);
put_line(Message1(Turing));
or when FORKS(Plato) = TWO =>
accept EAT(Plato);
fork_action(Plato, seize);
put_line(Message1(Plato));
or when FORKS(Sartre) = TWO =>
accept EAT(Sartre);
fork_action(Sartre, seize);
put_line(Message1(Sartre));
or
accept REST(p: PHILOSOPHER) do
fork_action(p, release);
put_line(Message2(p));
end REST;
or
accept FAST_RELIEF(p: PHILOSOPHER) do
put_line(Message3(p));
end FAST_RELIEF;
or
terminate;
end select ;
end loop ;
end TABLE_MANAGER ;
----------------------------------------------------------------------
separate(DINING_PHILOSOPHERS.TABLE_MANAGER)
procedure fork_action(p: PHILOSOPHER; a: ACTION) is
pp: PHILOSOPHER;
v: array(ACTION) of BOOLEAN := (FALSE, TRUE);
begin
pp := PHILOSOPHER'VAL((PHILOSOPHER'POS(p) + 1) mod numphil);
FORKS(pp).LEFT := v(a);
pp := PHILOSOPHER'VAL((PHILOSOPHER'POS(p) + 4) mod numphil);
FORKS(pp).RIGHT := v(a);
end fork_action;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 2 9 --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-1999 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-2907, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 29
package System.Pack_29 is
pragma Preelaborate (Pack_29);
Bits : constant := 29;
type Bits_29 is mod 2 ** Bits;
for Bits_29'Size use Bits;
function Get_29 (Arr : System.Address; N : Natural) return Bits_29;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_29 (Arr : System.Address; N : Natural; E : Bits_29);
-- 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_29;
|
-- Generated by utildgen.c from system includes
with Interfaces.C;
package Util.Systems.Types is
subtype dev_t is Interfaces.C.unsigned;
subtype ino_t is Long_Long_Integer;
subtype off_t is Long_Long_Integer;
subtype blksize_t is Interfaces.C.int;
subtype blkcnt_t is Long_Long_Integer;
subtype uid_t is Interfaces.C.unsigned;
subtype gid_t is Interfaces.C.unsigned;
subtype nlink_t is Interfaces.C.unsigned_short;
subtype mode_t is Interfaces.C.unsigned_short;
S_IFMT : constant mode_t := 8#00170000#;
S_IFDIR : constant mode_t := 8#00040000#;
S_IFCHR : constant mode_t := 8#00020000#;
S_IFBLK : constant mode_t := 8#00060000#;
S_IFREG : constant mode_t := 8#00100000#;
S_IFIFO : constant mode_t := 8#00010000#;
S_IFLNK : constant mode_t := 8#00120000#;
S_IFSOCK : constant mode_t := 8#00140000#;
S_ISUID : constant mode_t := 8#00004000#;
S_ISGID : constant mode_t := 8#00002000#;
S_IREAD : constant mode_t := 8#00000400#;
S_IWRITE : constant mode_t := 8#00000200#;
S_IEXEC : constant mode_t := 8#00000100#;
type File_Type is new Interfaces.C.int;
subtype Time_Type is Long_Long_Integer;
type Timespec is record
tv_sec : Time_Type;
tv_nsec : Long_Long_Integer;
end record;
pragma Convention (C_Pass_By_Copy, Timespec);
type Seek_Mode is (SEEK_SET, SEEK_CUR, SEEK_END);
for Seek_Mode use (SEEK_SET => 0, SEEK_CUR => 1, SEEK_END => 2);
-- Size = 144
-- st_dev = 4
-- st_mode = 2
-- st_uid = 4
-- st_atim = 8
-- st_nlink@ 6
-- st_rdev@ 24
-- st_size@ 96
STAT_NAME : constant String := "_stat64";
FSTAT_NAME : constant String := "_fstat64";
type Stat_Type is record
st_dev : dev_t;
st_mode : mode_t;
st_nlink : nlink_t;
st_ino : ino_t;
st_uid : uid_t;
st_gid : gid_t;
st_rdev : dev_t;
st_atim : Timespec;
st_mtim : Timespec;
st_ctim : Timespec;
st_birthtim : Timespec;
st_size : off_t;
st_blocks : blkcnt_t;
st_blksize : blksize_t;
st_flags : Interfaces.C.unsigned;
st_gen : Interfaces.C.unsigned;
st_lspare : Interfaces.C.unsigned;
st_qspare1 : Interfaces.C.unsigned;
st_qspare2 : Interfaces.C.unsigned;
st_qspare3 : Interfaces.C.unsigned;
st_qspare4 : Interfaces.C.unsigned;
end record;
pragma Convention (C_Pass_By_Copy, Stat_Type);
end Util.Systems.Types;
|
-----------------------------------------------------------------------
-- package body e_Jacobi_Eigen, extended precision Jacobi eigen-decomposition
-- Copyright (C) 2008-2018 Jonathan S. Parker
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
---------------------------------------------------------------------------
package body e_Jacobi_Eigen is
Reciprocal_Epsilon : constant Real := One / e_Real_Model_Epsilon;
---------------------------------
-- Get_Jacobi_Rotation_Factors --
---------------------------------
-- all underflows are OK here.
-- no overflows are OK here.
-- so we test for Q / P overflows by calculating P / Q
procedure Get_Jacobi_Rotation_Factors
(P, Q : in Real;
s : out Real;
tau : out Real;
Delta_D : out Real)
is
t, Gamma : Real;
-- function "/" (x, y : Real) return Real renames Divide;
-- faster than stnd "/", but scarcely matters.
begin
s := Zero;
tau := Zero;
Delta_D := Zero;
if Abs (Q) > e_Real_Safe_Min and then
Abs (P) > e_Real_Safe_Min and then
Abs (Q) < e_Real_Safe_Max and then
Abs (P) < e_Real_Safe_Max then
-- Following Gamma is usually the more accurate.
Gamma := P / (Abs (Q) + Sqrt (P*P + Q*Q));
if Q < Zero then Gamma := -Gamma; end if;
-- usual case overwhelmingly. If you scale matrix to unit Norm,
-- then no overflows because Matrix norm is preserved, preventing
-- large P, Q if they are not large to begin with. (So the above
-- tests for < e_Real_Safe_Max would be unnecessary.)
-- (Requires scaling of matrix prior to decomposition to be
-- absolutely sure.)
-- Should be able to do the following w/o any tests of p,q if don't care
-- about quality of answer in P < e_Safe_Small, Q < e_Safe_Small limit.
--
--Gamma := P / (Abs(Q) + Sqrt (P*P + Q*Q) + e_Safe_Small);
--if Q < Zero then Gamma := -Gamma; end if;
elsif Abs (Q) > Abs (P) then
-- Abs (P) > 0 was a tested before arrival, which implies Abs (Q) > 0.
t := P / Q;
Gamma := t / (One + Sqrt (One + t*t));
-- Underflow OK; overflow not allowed.
elsif Abs (P) >= Abs (Q) then
t := Q / P;
Gamma := One / (Abs (t) + Sqrt (One + t*t));
-- Underflow OK; overflow not allowed.
if t < Zero then Gamma := -Gamma; end if;
else
return; -- must have hit some inf's. Use stnd rotation init'd above.
end if;
declare
c : Real;
begin
c := Reciprocal_Sqrt (One + Gamma*Gamma); -- Cosine (ok)
--c := Sqrt (One / (One + Gamma*Gamma)); -- Cosine
s := c * Gamma; -- Sine
tau := s / (One + c); -- -cos_minus_1_over_sin
Delta_D := P * Gamma;
end;
end Get_Jacobi_Rotation_Factors;
---------------------
-- Eigen_Decompose --
---------------------
procedure Eigen_Decompose
(A : in out Matrix;
Q_tr : out Matrix;
Eigenvals : out Col_Vector;
No_of_Sweeps_Performed : out Natural;
Total_No_of_Rotations : out Natural;
Start_Col : in Index := Index'First;
Final_Col : in Index := Index'Last;
Eigenvectors_Desired : in Boolean := False)
is
D : Col_Vector renames Eigenvals;
Z, B : Col_Vector;
Max_Allowed_No_of_Sweeps : constant Positive := 256; -- badly scaled need lots
No_of_Preliminary_Sweeps : constant Positive := 14;
--Reciprocal_Epsilon : constant Real := One / e_Real_Model_Epsilon;
-- Good stnd setting for the effective eps is: Real'Epsilon * Two**(-2).
-- Usually, Real'Epsilon := 2.0**(-50) for 15 digit Reals.
Matrix_Size : constant Real_8 := Real_8(Final_Col) - Real_8(Start_Col) + 1.0;
No_of_Off_Diag_Elements : constant Real_8 := 0.5*Matrix_Size*(Matrix_Size-1.0);
Mean_Off_Diagonal_Element_Size : Real;
s, g, h, tau : Real; -- Rutishauser variable names.
Q, Delta_D : Real;
Sum, Pivot, Threshold : Real;
begin
-- Initialize all out parameters. D renames Eigenvals.
-- Q_tr starts as Identity; is rotated into set of Eigenvectors of A.
Q_tr := (others => (others => Zero));
for j in Index loop
Q_tr(j,j) := One;
end loop;
Z := (others => Zero);
B := (others => Zero);
D := (others => Zero);
for j in Start_Col .. Final_Col loop -- assume A not all init
D(j) := A(j,j);
B(j) := A(j,j);
end loop;
No_of_Sweeps_Performed := 0;
Total_No_of_Rotations := 0;
if Matrix_Size <= 1.0 then return; end if; -- right answer for Size=1.
Sweep: for Sweep_id in 1 .. Max_Allowed_No_of_Sweeps loop
Sum := Zero;
for N in Start_Col .. Final_Col-1 loop --sum off-diagonal elements
for I in N+1 .. Final_Col loop
Sum := Sum + Abs (A(N,I));
end loop;
end loop;
Mean_Off_Diagonal_Element_Size := Sum / (+No_of_Off_Diag_Elements);
exit Sweep when Mean_Off_Diagonal_Element_Size < Min_Allowed_Real;
if Sweep_id > No_of_Preliminary_Sweeps then
Threshold := Zero;
else
Threshold := One * Mean_Off_Diagonal_Element_Size;
end if;
for N in Start_Col .. Final_Col-1 loop
for I in N+1 .. Final_Col loop
Pivot := A(N,I);
-- Have to zero out sufficiently small A(I,N) to get convergence,
-- ie, to get Off_Diag_Sum -> 0.0.
-- After 4 sweeps all A(I,N) are small so that
-- A(I,N) / Epsilon will never overflow. The test is
-- A(I,N) / Epsilon <= Abs D(I) and A(I,N) / Epsilon <= Abs D(N).
if
(Sweep_id > No_of_Preliminary_Sweeps) and then
(Reciprocal_Epsilon * Abs (Pivot) <= Abs D(N)) and then
(Reciprocal_Epsilon * Abs (Pivot) <= Abs D(I))
then
A(N,I) := Zero;
elsif Abs (Pivot) > Threshold then
Q := Half * (D(I) - D(N));
Get_Jacobi_Rotation_Factors (Pivot, Q, s, tau, Delta_D);
-- Pivot=A(N,I)
D(N) := D(N) - Delta_D; -- Locally D is only used for threshold test.
D(I) := D(I) + Delta_D;
Z(N) := Z(N) - Delta_D; -- Z is reinitialized to 0 each sweep, so Z
Z(I) := Z(I) + Delta_D; -- sums the small d's 1st. Helps a tad.
A(N,I) := Zero;
for j in Start_Col .. N-1 loop
g := A(j,N);
h := A(j,I);
A(j,N) := g-s*(h+g*tau);
A(j,I) := h+s*(g-h*tau);
end loop;
for j in N+1 .. I-1 loop
g := A(N,j);
h := A(j,I);
A(N,j) := g-s*(h+g*tau);
A(j,I) := h+s*(g-h*tau);
end loop;
for j in I+1 .. Final_Col loop
g := A(N,j);
h := A(I,j);
A(N,j) := g-s*(h+g*tau);
A(I,j) := h+s*(g-h*tau);
end loop;
if Eigenvectors_Desired then
for j in Start_Col .. Final_Col loop
g := Q_tr(N,j);
h := Q_tr(I,j);
Q_tr(N,j) := g-s*(h+g*tau);
Q_tr(I,j) := h+s*(g-h*tau);
end loop;
end if;
Total_No_of_Rotations := Total_No_of_Rotations + 1;
end if; -- if (Sweep_id > No_of_Preliminary_Sweeps)
end loop; --I loop (Col)
end loop; --N loop (Row)
for j in Start_Col .. Final_Col loop -- assume A not all initialized
B(j) := B(j) + Z(j);
D(j) := B(j);
Z(j) := Zero;
end loop;
end loop Sweep; --Sweep_id loop
end Eigen_Decompose;
---------------
-- Sort_Eigs --
---------------
procedure Sort_Eigs
(Eigenvals : in out Col_Vector;
Q_tr : in out Matrix; -- rows are the eigvectors
Start_Col : in Index := Index'First;
Final_Col : in Index := Index'Last;
Sort_Eigvecs_Also : in Boolean := False)
is
Max_Eig, tmp : Real;
Max_id : Index;
begin
if Start_Col < Final_Col then
for i in Start_Col .. Final_Col-1 loop
Max_Eig := Eigenvals(i); Max_id := i;
for j in i+1 .. Final_Col loop
if Eigenvals(j) > Max_Eig then
Max_Eig := Eigenvals(j); Max_id := j;
end if;
end loop;
tmp := Eigenvals(i);
Eigenvals(i) := Max_Eig;
Eigenvals(Max_id) := tmp;
-- swap rows of Q_tr:
if Sort_Eigvecs_Also then
for k in Start_Col .. Final_Col loop
tmp := Q_tr(i,k);
Q_tr(i,k) := Q_tr(Max_id,k);
Q_tr(Max_id,k) := tmp;
end loop;
end if;
end loop;
end if;
end Sort_Eigs;
end e_Jacobi_Eigen;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ U N B O U N D E D . W I D E _ H A S H --
-- --
-- B o d y --
-- --
-- Copyright (C) 2004-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
with System.String_Hash;
function Ada.Strings.Wide_Unbounded.Wide_Hash
(Key : Unbounded_Wide_String) return Containers.Hash_Type
is
use Ada.Containers;
function Hash is new System.String_Hash.Hash
(Wide_Character, Wide_String, Hash_Type);
begin
return Hash (To_Wide_String (Key));
end Ada.Strings.Wide_Unbounded.Wide_Hash;
|
with Datos;
use Datos;
function Media ( L : Lista ) return Float is
-- pre: Dada una lista, calcular la media de sus valores
-- post: La media de los valores de la lista Suma / longitud
numelementos : Natural;
acumulador : Float;
LCopia : Lista;
begin
numelementos := 0;
acumulador := 0.0;
LCopia := L;
while LCopia /= null loop
numelementos := numelementos+1;
acumulador := acumulador + Float(LCopia.all.info);
LCopia := LCopia.all.sig;
end loop;
return acumulador / Float(numelementos);
end Media;
|
-- Swaggy Jenkins
-- Jenkins API clients generated from Swagger / Open API specification
--
-- OpenAPI spec version: 1.1.1
-- Contact: blah@cliffano.com
--
-- NOTE: This package is auto generated by the swagger code generator 3.2.1-SNAPSHOT.
-- https://openapi-generator.tech
-- Do not edit the class manually.
with Swagger.Streams;
with Swagger.Servers.Operation;
package body .Skeletons is
package body Skeleton is
package API_Get_Crumb is
new Swagger.Servers.Operation (Handler => Get_Crumb,
Method => Swagger.Servers.GET,
URI => "/crumbIssuer/api/json");
--
procedure Get_Crumb
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Result : .Models.DefaultCrumbIssuer_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Impl.Get_Crumb (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Crumb;
package API_Delete_Pipeline_Queue_Item is
new Swagger.Servers.Operation (Handler => Delete_Pipeline_Queue_Item,
Method => Swagger.Servers.DELETE,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/queue/{queue}");
--
procedure Delete_Pipeline_Queue_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Queue : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Queue);
Impl.Delete_Pipeline_Queue_Item
(Organization,
Pipeline,
Queue, Context);
end Delete_Pipeline_Queue_Item;
package API_Get_Authenticated_User is
new Swagger.Servers.Operation (Handler => Get_Authenticated_User,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/user/");
--
procedure Get_Authenticated_User
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Impl.Get_Authenticated_User
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Authenticated_User;
package API_Get_Classes is
new Swagger.Servers.Operation (Handler => Get_Classes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/classes/{class}");
--
procedure Get_Classes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Class : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Class);
Impl.Get_Classes
(Class, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Classes;
package API_Get_Json_Web_Key is
new Swagger.Servers.Operation (Handler => Get_Json_Web_Key,
Method => Swagger.Servers.GET,
URI => "/jwt-auth/jwks/{key}");
--
procedure Get_Json_Web_Key
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Key : Integer;
Result : Swagger.UString;
begin
Swagger.Servers.Get_Path_Parameter (Req, 1, Key);
Impl.Get_Json_Web_Key
(Key, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Json_Web_Key;
package API_Get_Json_Web_Token is
new Swagger.Servers.Operation (Handler => Get_Json_Web_Token,
Method => Swagger.Servers.GET,
URI => "/jwt-auth/token");
--
procedure Get_Json_Web_Token
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Expiry_Time_In_Mins : Swagger.Nullable_Integer;
Max_Expiry_Time_In_Mins : Swagger.Nullable_Integer;
Result : Swagger.UString;
begin
Swagger.Servers.Get_Query_Parameter (Req, "expiryTimeInMins", Expiry_Time_In_Mins);
Swagger.Servers.Get_Query_Parameter (Req, "maxExpiryTimeInMins", Max_Expiry_Time_In_Mins);
Impl.Get_Json_Web_Token
(Expiry_Time_In_Mins,
Max_Expiry_Time_In_Mins, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Json_Web_Token;
package API_Get_Organisation is
new Swagger.Servers.Operation (Handler => Get_Organisation,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}");
--
procedure Get_Organisation
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Result : .Models.Organisation_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Impl.Get_Organisation
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Organisation;
package API_Get_Organisations is
new Swagger.Servers.Operation (Handler => Get_Organisations,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/");
--
procedure Get_Organisations
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Result : .Models.Organisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Impl.Get_Organisations (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Organisations;
package API_Get_Pipeline is
new Swagger.Servers.Operation (Handler => Get_Pipeline,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}");
--
procedure Get_Pipeline
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.Pipeline_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Get_Pipeline
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline;
package API_Get_Pipeline_Activities is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Activities,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/activities");
--
procedure Get_Pipeline_Activities
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineActivities_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Get_Pipeline_Activities
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Activities;
package API_Get_Pipeline_Branch is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branch,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches/{branch}/");
--
procedure Get_Pipeline_Branch
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Branch : Swagger.UString;
Result : .Models.BranchImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Branch);
Impl.Get_Pipeline_Branch
(Organization,
Pipeline,
Branch, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branch;
package API_Get_Pipeline_Branch_Run is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branch_Run,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches/{branch}/runs/{run}");
--
procedure Get_Pipeline_Branch_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Branch : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Branch);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Impl.Get_Pipeline_Branch_Run
(Organization,
Pipeline,
Branch,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branch_Run;
package API_Get_Pipeline_Branches is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branches,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches");
--
procedure Get_Pipeline_Branches
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.MultibranchPipeline_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Get_Pipeline_Branches
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branches;
package API_Get_Pipeline_Folder is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Folder,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{folder}/");
--
procedure Get_Pipeline_Folder
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Folder : Swagger.UString;
Result : .Models.PipelineFolderImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Folder);
Impl.Get_Pipeline_Folder
(Organization,
Folder, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Folder;
package API_Get_Pipeline_Folder_Pipeline is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Folder_Pipeline,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{folder}/pipelines/{pipeline}");
--
procedure Get_Pipeline_Folder_Pipeline
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Folder : Swagger.UString;
Result : .Models.PipelineImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Folder);
Impl.Get_Pipeline_Folder_Pipeline
(Organization,
Pipeline,
Folder, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Folder_Pipeline;
package API_Get_Pipeline_Queue is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Queue,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/queue");
--
procedure Get_Pipeline_Queue
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineQueue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Get_Pipeline_Queue
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Queue;
package API_Get_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}");
--
procedure Get_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Impl.Get_Pipeline_Run
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run;
package API_Get_Pipeline_Run_Log is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Log,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/log");
--
procedure Get_Pipeline_Run_Log
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Start : Swagger.Nullable_Integer;
Download : Swagger.Nullable_Boolean;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "start", Start);
Swagger.Servers.Get_Query_Parameter (Req, "download", Download);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Impl.Get_Pipeline_Run_Log
(Organization,
Pipeline,
Run,
Start,
Download, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Log;
package API_Get_Pipeline_Run_Node is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}");
--
procedure Get_Pipeline_Run_Node
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Result : .Models.PipelineRunNode_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Swagger.Servers.Get_Path_Parameter (Req, 4, Node);
Impl.Get_Pipeline_Run_Node
(Organization,
Pipeline,
Run,
Node, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node;
package API_Get_Pipeline_Run_Node_Step is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Step,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps/{step}");
--
procedure Get_Pipeline_Run_Node_Step
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Step : Swagger.UString;
Result : .Models.PipelineStepImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 5, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 5, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 5, Run);
Swagger.Servers.Get_Path_Parameter (Req, 5, Node);
Swagger.Servers.Get_Path_Parameter (Req, 5, Step);
Impl.Get_Pipeline_Run_Node_Step
(Organization,
Pipeline,
Run,
Node,
Step, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Step;
package API_Get_Pipeline_Run_Node_Step_Log is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Step_Log,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps/{step}/log");
--
procedure Get_Pipeline_Run_Node_Step_Log
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Step : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 5, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 5, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 5, Run);
Swagger.Servers.Get_Path_Parameter (Req, 5, Node);
Swagger.Servers.Get_Path_Parameter (Req, 5, Step);
Impl.Get_Pipeline_Run_Node_Step_Log
(Organization,
Pipeline,
Run,
Node,
Step, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Step_Log;
package API_Get_Pipeline_Run_Node_Steps is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Steps,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps");
--
procedure Get_Pipeline_Run_Node_Steps
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Result : .Models.PipelineRunNodeSteps_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Swagger.Servers.Get_Path_Parameter (Req, 4, Node);
Impl.Get_Pipeline_Run_Node_Steps
(Organization,
Pipeline,
Run,
Node, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Steps;
package API_Get_Pipeline_Run_Nodes is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Nodes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes");
--
procedure Get_Pipeline_Run_Nodes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRunNodes_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Impl.Get_Pipeline_Run_Nodes
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Nodes;
package API_Get_Pipeline_Runs is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Runs,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs");
--
procedure Get_Pipeline_Runs
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineRuns_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Get_Pipeline_Runs
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Runs;
package API_Get_Pipelines is
new Swagger.Servers.Operation (Handler => Get_Pipelines,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/");
--
procedure Get_Pipelines
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Result : .Models.Pipelines_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Impl.Get_Pipelines
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipelines;
package API_Get_S_C_M is
new Swagger.Servers.Operation (Handler => Get_S_C_M,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}");
--
procedure Get_S_C_M
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Scm : Swagger.UString;
Result : .Models.GithubScm_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Scm);
Impl.Get_S_C_M
(Organization,
Scm, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M;
package API_Get_S_C_M_Organisation_Repositories is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisation_Repositories,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations/{scmOrganisation}/repositories");
--
procedure Get_S_C_M_Organisation_Repositories
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Scm : Swagger.UString;
Scm_Organisation : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Page_Size : Swagger.Nullable_Integer;
Page_Number : Swagger.Nullable_Integer;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Query_Parameter (Req, "pageSize", Page_Size);
Swagger.Servers.Get_Query_Parameter (Req, "pageNumber", Page_Number);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Scm);
Swagger.Servers.Get_Path_Parameter (Req, 3, Scm_Organisation);
Impl.Get_S_C_M_Organisation_Repositories
(Organization,
Scm,
Scm_Organisation,
Credential_Id,
Page_Size,
Page_Number, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisation_Repositories;
package API_Get_S_C_M_Organisation_Repository is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisation_Repository,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations/{scmOrganisation}/repositories/{repository}");
--
procedure Get_S_C_M_Organisation_Repository
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Scm : Swagger.UString;
Scm_Organisation : Swagger.UString;
Repository : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Scm);
Swagger.Servers.Get_Path_Parameter (Req, 4, Scm_Organisation);
Swagger.Servers.Get_Path_Parameter (Req, 4, Repository);
Impl.Get_S_C_M_Organisation_Repository
(Organization,
Scm,
Scm_Organisation,
Repository,
Credential_Id, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisation_Repository;
package API_Get_S_C_M_Organisations is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisations,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations");
--
procedure Get_S_C_M_Organisations
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Scm : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Scm);
Impl.Get_S_C_M_Organisations
(Organization,
Scm,
Credential_Id, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisations;
package API_Get_User is
new Swagger.Servers.Operation (Handler => Get_User,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/users/{user}");
--
procedure Get_User
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
User : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, User);
Impl.Get_User
(Organization,
User, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_User;
package API_Get_User_Favorites is
new Swagger.Servers.Operation (Handler => Get_User_Favorites,
Method => Swagger.Servers.GET,
URI => "/blue/rest/users/{user}/favorites");
--
procedure Get_User_Favorites
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
User : Swagger.UString;
Result : .Models.UserFavorites_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, User);
Impl.Get_User_Favorites
(User, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_User_Favorites;
package API_Get_Users is
new Swagger.Servers.Operation (Handler => Get_Users,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/users/");
--
procedure Get_Users
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Impl.Get_Users
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Users;
package API_Post_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Post_Pipeline_Run,
Method => Swagger.Servers.POST,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/replay");
--
procedure Post_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.QueueItemImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Impl.Post_Pipeline_Run
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Post_Pipeline_Run;
package API_Post_Pipeline_Runs is
new Swagger.Servers.Operation (Handler => Post_Pipeline_Runs,
Method => Swagger.Servers.POST,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs");
--
procedure Post_Pipeline_Runs
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.QueueItemImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Impl.Post_Pipeline_Runs
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Post_Pipeline_Runs;
package API_Put_Pipeline_Favorite is
new Swagger.Servers.Operation (Handler => Put_Pipeline_Favorite,
Method => Swagger.Servers.PUT,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/favorite");
--
procedure Put_Pipeline_Favorite
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Body_Type : Body_Type;
Result : .Models.FavoriteImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "Body_Type", Body_Type);
Impl.Put_Pipeline_Favorite
(Organization,
Pipeline,
Body_Type, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Put_Pipeline_Favorite;
package API_Put_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Put_Pipeline_Run,
Method => Swagger.Servers.PUT,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/stop");
--
procedure Put_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Blocking : Swagger.Nullable_UString;
Time_Out_In_Secs : Swagger.Nullable_Integer;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "blocking", Blocking);
Swagger.Servers.Get_Query_Parameter (Req, "timeOutInSecs", Time_Out_In_Secs);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Impl.Put_Pipeline_Run
(Organization,
Pipeline,
Run,
Blocking,
Time_Out_In_Secs, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Put_Pipeline_Run;
package API_Search is
new Swagger.Servers.Operation (Handler => Search,
Method => Swagger.Servers.GET,
URI => "/blue/rest/search/");
--
procedure Search
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Q : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "q", Q);
Impl.Search
(Q, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Search;
package API_Search_Classes is
new Swagger.Servers.Operation (Handler => Search_Classes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/classes/");
--
procedure Search_Classes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Q : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "q", Q);
Impl.Search_Classes
(Q, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Search_Classes;
package API_Get_Computer is
new Swagger.Servers.Operation (Handler => Get_Computer,
Method => Swagger.Servers.GET,
URI => "/computer/api/json");
--
procedure Get_Computer
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Depth : Integer;
Result : .Models.ComputerSet_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "depth", Depth);
Impl.Get_Computer
(Depth, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Computer;
package API_Get_Jenkins is
new Swagger.Servers.Operation (Handler => Get_Jenkins,
Method => Swagger.Servers.GET,
URI => "/api/json");
--
procedure Get_Jenkins
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Result : .Models.Hudson_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Impl.Get_Jenkins (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Jenkins;
package API_Get_Job is
new Swagger.Servers.Operation (Handler => Get_Job,
Method => Swagger.Servers.GET,
URI => "/job/{name}/api/json");
--
procedure Get_Job
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Result : .Models.FreeStyleProject_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Get_Job
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job;
package API_Get_Job_Config is
new Swagger.Servers.Operation (Handler => Get_Job_Config,
Method => Swagger.Servers.GET,
URI => "/job/{name}/config.xml");
--
procedure Get_Job_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Get_Job_Config
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job_Config;
package API_Get_Job_Last_Build is
new Swagger.Servers.Operation (Handler => Get_Job_Last_Build,
Method => Swagger.Servers.GET,
URI => "/job/{name}/lastBuild/api/json");
--
procedure Get_Job_Last_Build
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Result : .Models.FreeStyleBuild_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Get_Job_Last_Build
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job_Last_Build;
package API_Get_Job_Progressive_Text is
new Swagger.Servers.Operation (Handler => Get_Job_Progressive_Text,
Method => Swagger.Servers.GET,
URI => "/job/{name}/{number}/logText/progressiveText");
--
procedure Get_Job_Progressive_Text
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Number : Swagger.UString;
Start : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "start", Start);
Swagger.Servers.Get_Path_Parameter (Req, 2, Name);
Swagger.Servers.Get_Path_Parameter (Req, 2, Number);
Impl.Get_Job_Progressive_Text
(Name,
Number,
Start, Context);
end Get_Job_Progressive_Text;
package API_Get_Queue is
new Swagger.Servers.Operation (Handler => Get_Queue,
Method => Swagger.Servers.GET,
URI => "/queue/api/json");
--
procedure Get_Queue
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Result : .Models.Queue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Impl.Get_Queue (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Queue;
package API_Get_Queue_Item is
new Swagger.Servers.Operation (Handler => Get_Queue_Item,
Method => Swagger.Servers.GET,
URI => "/queue/item/{number}/api/json");
--
procedure Get_Queue_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Number : Swagger.UString;
Result : .Models.Queue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Number);
Impl.Get_Queue_Item
(Number, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Queue_Item;
package API_Get_View is
new Swagger.Servers.Operation (Handler => Get_View,
Method => Swagger.Servers.GET,
URI => "/view/{name}/api/json");
--
procedure Get_View
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Result : .Models.ListView_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Get_View
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_View;
package API_Get_View_Config is
new Swagger.Servers.Operation (Handler => Get_View_Config,
Method => Swagger.Servers.GET,
URI => "/view/{name}/config.xml");
--
procedure Get_View_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Get_View_Config
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_View_Config;
package API_Head_Jenkins is
new Swagger.Servers.Operation (Handler => Head_Jenkins,
Method => Swagger.Servers.HEAD,
URI => "/api/json");
--
procedure Head_Jenkins
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Impl.Head_Jenkins (Context);
end Head_Jenkins;
package API_Post_Create_Item is
new Swagger.Servers.Operation (Handler => Post_Create_Item,
Method => Swagger.Servers.POST,
URI => "/createItem");
--
procedure Post_Create_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Impl : Implementation_Type;
Name : Swagger.UString;
From : Swagger.Nullable_UString;
Mode : Swagger.Nullable_UString;
Jenkins_Crumb : Swagger.Nullable_UString;
Content_Type : Swagger.Nullable_UString;
P_Body : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "name", Name);
Swagger.Servers.Get_Query_Parameter (Req, "from", From);
Swagger.Servers.Get_Query_Parameter (Req, "mode", Mode);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Impl.Post_Create_Item
(Name,
From,
Mode,
Jenkins_Crumb,
Content_Type,
P_Body, Context);
end Post_Create_Item;
package API_Post_Create_View is
new Swagger.Servers.Operation (Handler => Post_Create_View,
Method => Swagger.Servers.POST,
URI => "/createView");
--
procedure Post_Create_View
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Impl : Implementation_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
Content_Type : Swagger.Nullable_UString;
P_Body : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "name", Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Impl.Post_Create_View
(Name,
Jenkins_Crumb,
Content_Type,
P_Body, Context);
end Post_Create_View;
package API_Post_Job_Build is
new Swagger.Servers.Operation (Handler => Post_Job_Build,
Method => Swagger.Servers.POST,
URI => "/job/{name}/build");
--
procedure Post_Job_Build
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Json : Swagger.UString;
Token : Swagger.Nullable_UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "json", Json);
Swagger.Servers.Get_Query_Parameter (Req, "token", Token);
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Post_Job_Build
(Name,
Json,
Token,
Jenkins_Crumb, Context);
end Post_Job_Build;
package API_Post_Job_Config is
new Swagger.Servers.Operation (Handler => Post_Job_Config,
Method => Swagger.Servers.POST,
URI => "/job/{name}/config.xml");
--
procedure Post_Job_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Impl : Implementation_Type;
Name : Swagger.UString;
P_Body : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Impl.Post_Job_Config
(Name,
P_Body,
Jenkins_Crumb, Context);
end Post_Job_Config;
package API_Post_Job_Delete is
new Swagger.Servers.Operation (Handler => Post_Job_Delete,
Method => Swagger.Servers.POST,
URI => "/job/{name}/doDelete");
--
procedure Post_Job_Delete
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Post_Job_Delete
(Name,
Jenkins_Crumb, Context);
end Post_Job_Delete;
package API_Post_Job_Disable is
new Swagger.Servers.Operation (Handler => Post_Job_Disable,
Method => Swagger.Servers.POST,
URI => "/job/{name}/disable");
--
procedure Post_Job_Disable
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Post_Job_Disable
(Name,
Jenkins_Crumb, Context);
end Post_Job_Disable;
package API_Post_Job_Enable is
new Swagger.Servers.Operation (Handler => Post_Job_Enable,
Method => Swagger.Servers.POST,
URI => "/job/{name}/enable");
--
procedure Post_Job_Enable
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Post_Job_Enable
(Name,
Jenkins_Crumb, Context);
end Post_Job_Enable;
package API_Post_Job_Last_Build_Stop is
new Swagger.Servers.Operation (Handler => Post_Job_Last_Build_Stop,
Method => Swagger.Servers.POST,
URI => "/job/{name}/lastBuild/stop");
--
procedure Post_Job_Last_Build_Stop
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Impl : Implementation_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Impl.Post_Job_Last_Build_Stop
(Name,
Jenkins_Crumb, Context);
end Post_Job_Last_Build_Stop;
package API_Post_View_Config is
new Swagger.Servers.Operation (Handler => Post_View_Config,
Method => Swagger.Servers.POST,
URI => "/view/{name}/config.xml");
--
procedure Post_View_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Impl : Implementation_Type;
Name : Swagger.UString;
P_Body : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Impl.Post_View_Config
(Name,
P_Body,
Jenkins_Crumb, Context);
end Post_View_Config;
procedure Register (Server : in out Swagger.Servers.Application_Type'Class) is
begin
Swagger.Servers.Register (Server, API_Get_Crumb.Definition);
Swagger.Servers.Register (Server, API_Delete_Pipeline_Queue_Item.Definition);
Swagger.Servers.Register (Server, API_Get_Authenticated_User.Definition);
Swagger.Servers.Register (Server, API_Get_Classes.Definition);
Swagger.Servers.Register (Server, API_Get_Json_Web_Key.Definition);
Swagger.Servers.Register (Server, API_Get_Json_Web_Token.Definition);
Swagger.Servers.Register (Server, API_Get_Organisation.Definition);
Swagger.Servers.Register (Server, API_Get_Organisations.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Activities.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branch.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branch_Run.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branches.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Folder.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Folder_Pipeline.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Queue.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Log.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Step.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Step_Log.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Steps.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Nodes.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Runs.Definition);
Swagger.Servers.Register (Server, API_Get_Pipelines.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisation_Repositories.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisation_Repository.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisations.Definition);
Swagger.Servers.Register (Server, API_Get_User.Definition);
Swagger.Servers.Register (Server, API_Get_User_Favorites.Definition);
Swagger.Servers.Register (Server, API_Get_Users.Definition);
Swagger.Servers.Register (Server, API_Post_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Post_Pipeline_Runs.Definition);
Swagger.Servers.Register (Server, API_Put_Pipeline_Favorite.Definition);
Swagger.Servers.Register (Server, API_Put_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Search.Definition);
Swagger.Servers.Register (Server, API_Search_Classes.Definition);
Swagger.Servers.Register (Server, API_Get_Computer.Definition);
Swagger.Servers.Register (Server, API_Get_Jenkins.Definition);
Swagger.Servers.Register (Server, API_Get_Job.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Config.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Last_Build.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Progressive_Text.Definition);
Swagger.Servers.Register (Server, API_Get_Queue.Definition);
Swagger.Servers.Register (Server, API_Get_Queue_Item.Definition);
Swagger.Servers.Register (Server, API_Get_View.Definition);
Swagger.Servers.Register (Server, API_Get_View_Config.Definition);
Swagger.Servers.Register (Server, API_Head_Jenkins.Definition);
Swagger.Servers.Register (Server, API_Post_Create_Item.Definition);
Swagger.Servers.Register (Server, API_Post_Create_View.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Build.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Config.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Delete.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Disable.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Enable.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Last_Build_Stop.Definition);
Swagger.Servers.Register (Server, API_Post_View_Config.Definition);
end Register;
end Skeleton;
package body Shared_Instance is
--
procedure Get_Crumb
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Result : .Models.DefaultCrumbIssuer_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Server.Get_Crumb (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Crumb;
package API_Get_Crumb is
new Swagger.Servers.Operation (Handler => Get_Crumb,
Method => Swagger.Servers.GET,
URI => "/crumbIssuer/api/json");
--
procedure Delete_Pipeline_Queue_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Queue : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Queue);
Server.Delete_Pipeline_Queue_Item
(Organization,
Pipeline,
Queue, Context);
end Delete_Pipeline_Queue_Item;
package API_Delete_Pipeline_Queue_Item is
new Swagger.Servers.Operation (Handler => Delete_Pipeline_Queue_Item,
Method => Swagger.Servers.DELETE,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/queue/{queue}");
--
procedure Get_Authenticated_User
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Server.Get_Authenticated_User
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Authenticated_User;
package API_Get_Authenticated_User is
new Swagger.Servers.Operation (Handler => Get_Authenticated_User,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/user/");
--
procedure Get_Classes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Class : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Class);
Server.Get_Classes
(Class, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Classes;
package API_Get_Classes is
new Swagger.Servers.Operation (Handler => Get_Classes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/classes/{class}");
--
procedure Get_Json_Web_Key
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Key : Integer;
Result : Swagger.UString;
begin
Swagger.Servers.Get_Path_Parameter (Req, 1, Key);
Server.Get_Json_Web_Key
(Key, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Json_Web_Key;
package API_Get_Json_Web_Key is
new Swagger.Servers.Operation (Handler => Get_Json_Web_Key,
Method => Swagger.Servers.GET,
URI => "/jwt-auth/jwks/{key}");
--
procedure Get_Json_Web_Token
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Expiry_Time_In_Mins : Swagger.Nullable_Integer;
Max_Expiry_Time_In_Mins : Swagger.Nullable_Integer;
Result : Swagger.UString;
begin
Swagger.Servers.Get_Query_Parameter (Req, "expiryTimeInMins", Expiry_Time_In_Mins);
Swagger.Servers.Get_Query_Parameter (Req, "maxExpiryTimeInMins", Max_Expiry_Time_In_Mins);
Server.Get_Json_Web_Token
(Expiry_Time_In_Mins,
Max_Expiry_Time_In_Mins, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Json_Web_Token;
package API_Get_Json_Web_Token is
new Swagger.Servers.Operation (Handler => Get_Json_Web_Token,
Method => Swagger.Servers.GET,
URI => "/jwt-auth/token");
--
procedure Get_Organisation
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Result : .Models.Organisation_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Server.Get_Organisation
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Organisation;
package API_Get_Organisation is
new Swagger.Servers.Operation (Handler => Get_Organisation,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}");
--
procedure Get_Organisations
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Result : .Models.Organisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Server.Get_Organisations (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Organisations;
package API_Get_Organisations is
new Swagger.Servers.Operation (Handler => Get_Organisations,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/");
--
procedure Get_Pipeline
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.Pipeline_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Get_Pipeline
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline;
package API_Get_Pipeline is
new Swagger.Servers.Operation (Handler => Get_Pipeline,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}");
--
procedure Get_Pipeline_Activities
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineActivities_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Get_Pipeline_Activities
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Activities;
package API_Get_Pipeline_Activities is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Activities,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/activities");
--
procedure Get_Pipeline_Branch
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Branch : Swagger.UString;
Result : .Models.BranchImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Branch);
Server.Get_Pipeline_Branch
(Organization,
Pipeline,
Branch, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branch;
package API_Get_Pipeline_Branch is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branch,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches/{branch}/");
--
procedure Get_Pipeline_Branch_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Branch : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Branch);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Server.Get_Pipeline_Branch_Run
(Organization,
Pipeline,
Branch,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branch_Run;
package API_Get_Pipeline_Branch_Run is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branch_Run,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches/{branch}/runs/{run}");
--
procedure Get_Pipeline_Branches
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.MultibranchPipeline_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Get_Pipeline_Branches
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Branches;
package API_Get_Pipeline_Branches is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Branches,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/branches");
--
procedure Get_Pipeline_Folder
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Folder : Swagger.UString;
Result : .Models.PipelineFolderImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Folder);
Server.Get_Pipeline_Folder
(Organization,
Folder, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Folder;
package API_Get_Pipeline_Folder is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Folder,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{folder}/");
--
procedure Get_Pipeline_Folder_Pipeline
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Folder : Swagger.UString;
Result : .Models.PipelineImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Folder);
Server.Get_Pipeline_Folder_Pipeline
(Organization,
Pipeline,
Folder, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Folder_Pipeline;
package API_Get_Pipeline_Folder_Pipeline is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Folder_Pipeline,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{folder}/pipelines/{pipeline}");
--
procedure Get_Pipeline_Queue
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineQueue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Get_Pipeline_Queue
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Queue;
package API_Get_Pipeline_Queue is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Queue,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/queue");
--
procedure Get_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Server.Get_Pipeline_Run
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run;
package API_Get_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}");
--
procedure Get_Pipeline_Run_Log
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Start : Swagger.Nullable_Integer;
Download : Swagger.Nullable_Boolean;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "start", Start);
Swagger.Servers.Get_Query_Parameter (Req, "download", Download);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Server.Get_Pipeline_Run_Log
(Organization,
Pipeline,
Run,
Start,
Download, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Log;
package API_Get_Pipeline_Run_Log is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Log,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/log");
--
procedure Get_Pipeline_Run_Node
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Result : .Models.PipelineRunNode_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Swagger.Servers.Get_Path_Parameter (Req, 4, Node);
Server.Get_Pipeline_Run_Node
(Organization,
Pipeline,
Run,
Node, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node;
package API_Get_Pipeline_Run_Node is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}");
--
procedure Get_Pipeline_Run_Node_Step
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Step : Swagger.UString;
Result : .Models.PipelineStepImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 5, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 5, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 5, Run);
Swagger.Servers.Get_Path_Parameter (Req, 5, Node);
Swagger.Servers.Get_Path_Parameter (Req, 5, Step);
Server.Get_Pipeline_Run_Node_Step
(Organization,
Pipeline,
Run,
Node,
Step, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Step;
package API_Get_Pipeline_Run_Node_Step is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Step,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps/{step}");
--
procedure Get_Pipeline_Run_Node_Step_Log
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Step : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 5, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 5, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 5, Run);
Swagger.Servers.Get_Path_Parameter (Req, 5, Node);
Swagger.Servers.Get_Path_Parameter (Req, 5, Step);
Server.Get_Pipeline_Run_Node_Step_Log
(Organization,
Pipeline,
Run,
Node,
Step, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Step_Log;
package API_Get_Pipeline_Run_Node_Step_Log is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Step_Log,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps/{step}/log");
--
procedure Get_Pipeline_Run_Node_Steps
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Node : Swagger.UString;
Result : .Models.PipelineRunNodeSteps_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 4, Run);
Swagger.Servers.Get_Path_Parameter (Req, 4, Node);
Server.Get_Pipeline_Run_Node_Steps
(Organization,
Pipeline,
Run,
Node, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Node_Steps;
package API_Get_Pipeline_Run_Node_Steps is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Node_Steps,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes/{node}/steps");
--
procedure Get_Pipeline_Run_Nodes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.PipelineRunNodes_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Server.Get_Pipeline_Run_Nodes
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Run_Nodes;
package API_Get_Pipeline_Run_Nodes is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Run_Nodes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/nodes");
--
procedure Get_Pipeline_Runs
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.PipelineRuns_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Get_Pipeline_Runs
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipeline_Runs;
package API_Get_Pipeline_Runs is
new Swagger.Servers.Operation (Handler => Get_Pipeline_Runs,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs");
--
procedure Get_Pipelines
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Result : .Models.Pipelines_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Server.Get_Pipelines
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Pipelines;
package API_Get_Pipelines is
new Swagger.Servers.Operation (Handler => Get_Pipelines,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/pipelines/");
--
procedure Get_S_C_M
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Scm : Swagger.UString;
Result : .Models.GithubScm_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Scm);
Server.Get_S_C_M
(Organization,
Scm, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M;
package API_Get_S_C_M is
new Swagger.Servers.Operation (Handler => Get_S_C_M,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}");
--
procedure Get_S_C_M_Organisation_Repositories
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Scm : Swagger.UString;
Scm_Organisation : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Page_Size : Swagger.Nullable_Integer;
Page_Number : Swagger.Nullable_Integer;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Query_Parameter (Req, "pageSize", Page_Size);
Swagger.Servers.Get_Query_Parameter (Req, "pageNumber", Page_Number);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Scm);
Swagger.Servers.Get_Path_Parameter (Req, 3, Scm_Organisation);
Server.Get_S_C_M_Organisation_Repositories
(Organization,
Scm,
Scm_Organisation,
Credential_Id,
Page_Size,
Page_Number, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisation_Repositories;
package API_Get_S_C_M_Organisation_Repositories is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisation_Repositories,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations/{scmOrganisation}/repositories");
--
procedure Get_S_C_M_Organisation_Repository
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Scm : Swagger.UString;
Scm_Organisation : Swagger.UString;
Repository : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Path_Parameter (Req, 4, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 4, Scm);
Swagger.Servers.Get_Path_Parameter (Req, 4, Scm_Organisation);
Swagger.Servers.Get_Path_Parameter (Req, 4, Repository);
Server.Get_S_C_M_Organisation_Repository
(Organization,
Scm,
Scm_Organisation,
Repository,
Credential_Id, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisation_Repository;
package API_Get_S_C_M_Organisation_Repository is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisation_Repository,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations/{scmOrganisation}/repositories/{repository}");
--
procedure Get_S_C_M_Organisations
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Scm : Swagger.UString;
Credential_Id : Swagger.Nullable_UString;
Result : .Models.ScmOrganisations_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "credentialId", Credential_Id);
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Scm);
Server.Get_S_C_M_Organisations
(Organization,
Scm,
Credential_Id, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_S_C_M_Organisations;
package API_Get_S_C_M_Organisations is
new Swagger.Servers.Operation (Handler => Get_S_C_M_Organisations,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/scm/{scm}/organizations");
--
procedure Get_User
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
User : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, User);
Server.Get_User
(Organization,
User, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_User;
package API_Get_User is
new Swagger.Servers.Operation (Handler => Get_User,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/users/{user}");
--
procedure Get_User_Favorites
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
User : Swagger.UString;
Result : .Models.UserFavorites_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, User);
Server.Get_User_Favorites
(User, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_User_Favorites;
package API_Get_User_Favorites is
new Swagger.Servers.Operation (Handler => Get_User_Favorites,
Method => Swagger.Servers.GET,
URI => "/blue/rest/users/{user}/favorites");
--
procedure Get_Users
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Result : .Models.User_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Organization);
Server.Get_Users
(Organization, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Users;
package API_Get_Users is
new Swagger.Servers.Operation (Handler => Get_Users,
Method => Swagger.Servers.GET,
URI => "/blue/rest/organizations/{organization}/users/");
--
procedure Post_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Result : .Models.QueueItemImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Server.Post_Pipeline_Run
(Organization,
Pipeline,
Run, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Post_Pipeline_Run;
package API_Post_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Post_Pipeline_Run,
Method => Swagger.Servers.POST,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/replay");
--
procedure Post_Pipeline_Runs
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Result : .Models.QueueItemImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Server.Post_Pipeline_Runs
(Organization,
Pipeline, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Post_Pipeline_Runs;
package API_Post_Pipeline_Runs is
new Swagger.Servers.Operation (Handler => Post_Pipeline_Runs,
Method => Swagger.Servers.POST,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs");
--
procedure Put_Pipeline_Favorite
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Body_Type : Body_Type;
Result : .Models.FavoriteImpl_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 2, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 2, Pipeline);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "Body_Type", Body_Type);
Server.Put_Pipeline_Favorite
(Organization,
Pipeline,
Body_Type, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Put_Pipeline_Favorite;
package API_Put_Pipeline_Favorite is
new Swagger.Servers.Operation (Handler => Put_Pipeline_Favorite,
Method => Swagger.Servers.PUT,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/favorite");
--
procedure Put_Pipeline_Run
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Organization : Swagger.UString;
Pipeline : Swagger.UString;
Run : Swagger.UString;
Blocking : Swagger.Nullable_UString;
Time_Out_In_Secs : Swagger.Nullable_Integer;
Result : .Models.PipelineRun_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "blocking", Blocking);
Swagger.Servers.Get_Query_Parameter (Req, "timeOutInSecs", Time_Out_In_Secs);
Swagger.Servers.Get_Path_Parameter (Req, 3, Organization);
Swagger.Servers.Get_Path_Parameter (Req, 3, Pipeline);
Swagger.Servers.Get_Path_Parameter (Req, 3, Run);
Server.Put_Pipeline_Run
(Organization,
Pipeline,
Run,
Blocking,
Time_Out_In_Secs, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Put_Pipeline_Run;
package API_Put_Pipeline_Run is
new Swagger.Servers.Operation (Handler => Put_Pipeline_Run,
Method => Swagger.Servers.PUT,
URI => "/blue/rest/organizations/{organization}/pipelines/{pipeline}/runs/{run}/stop");
--
procedure Search
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Q : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "q", Q);
Server.Search
(Q, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Search;
package API_Search is
new Swagger.Servers.Operation (Handler => Search,
Method => Swagger.Servers.GET,
URI => "/blue/rest/search/");
--
procedure Search_Classes
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Q : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "q", Q);
Server.Search_Classes
(Q, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Search_Classes;
package API_Search_Classes is
new Swagger.Servers.Operation (Handler => Search_Classes,
Method => Swagger.Servers.GET,
URI => "/blue/rest/classes/");
--
procedure Get_Computer
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Depth : Integer;
Result : .Models.ComputerSet_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "depth", Depth);
Server.Get_Computer
(Depth, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Computer;
package API_Get_Computer is
new Swagger.Servers.Operation (Handler => Get_Computer,
Method => Swagger.Servers.GET,
URI => "/computer/api/json");
--
procedure Get_Jenkins
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Result : .Models.Hudson_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Server.Get_Jenkins (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Jenkins;
package API_Get_Jenkins is
new Swagger.Servers.Operation (Handler => Get_Jenkins,
Method => Swagger.Servers.GET,
URI => "/api/json");
--
procedure Get_Job
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Result : .Models.FreeStyleProject_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Get_Job
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job;
package API_Get_Job is
new Swagger.Servers.Operation (Handler => Get_Job,
Method => Swagger.Servers.GET,
URI => "/job/{name}/api/json");
--
procedure Get_Job_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Get_Job_Config
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job_Config;
package API_Get_Job_Config is
new Swagger.Servers.Operation (Handler => Get_Job_Config,
Method => Swagger.Servers.GET,
URI => "/job/{name}/config.xml");
--
procedure Get_Job_Last_Build
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Result : .Models.FreeStyleBuild_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Get_Job_Last_Build
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Job_Last_Build;
package API_Get_Job_Last_Build is
new Swagger.Servers.Operation (Handler => Get_Job_Last_Build,
Method => Swagger.Servers.GET,
URI => "/job/{name}/lastBuild/api/json");
--
procedure Get_Job_Progressive_Text
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Number : Swagger.UString;
Start : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "start", Start);
Swagger.Servers.Get_Path_Parameter (Req, 2, Name);
Swagger.Servers.Get_Path_Parameter (Req, 2, Number);
Server.Get_Job_Progressive_Text
(Name,
Number,
Start, Context);
end Get_Job_Progressive_Text;
package API_Get_Job_Progressive_Text is
new Swagger.Servers.Operation (Handler => Get_Job_Progressive_Text,
Method => Swagger.Servers.GET,
URI => "/job/{name}/{number}/logText/progressiveText");
--
procedure Get_Queue
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Result : .Models.Queue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Server.Get_Queue (Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Queue;
package API_Get_Queue is
new Swagger.Servers.Operation (Handler => Get_Queue,
Method => Swagger.Servers.GET,
URI => "/queue/api/json");
--
procedure Get_Queue_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Number : Swagger.UString;
Result : .Models.Queue_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Number);
Server.Get_Queue_Item
(Number, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_Queue_Item;
package API_Get_Queue_Item is
new Swagger.Servers.Operation (Handler => Get_Queue_Item,
Method => Swagger.Servers.GET,
URI => "/queue/item/{number}/api/json");
--
procedure Get_View
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Result : .Models.ListView_Type;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Get_View
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
.Models.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_View;
package API_Get_View is
new Swagger.Servers.Operation (Handler => Get_View,
Method => Swagger.Servers.GET,
URI => "/view/{name}/api/json");
--
procedure Get_View_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Result : Swagger.UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Get_View_Config
(Name, Result, Context);
if Context.Get_Status = 200 then
Stream.Start_Document;
Swagger.Streams.Serialize (Stream, "", Result);
Stream.End_Document;
end if;
end Get_View_Config;
package API_Get_View_Config is
new Swagger.Servers.Operation (Handler => Get_View_Config,
Method => Swagger.Servers.GET,
URI => "/view/{name}/config.xml");
--
procedure Head_Jenkins
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Server.Head_Jenkins (Context);
end Head_Jenkins;
package API_Head_Jenkins is
new Swagger.Servers.Operation (Handler => Head_Jenkins,
Method => Swagger.Servers.HEAD,
URI => "/api/json");
--
procedure Post_Create_Item
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Name : Swagger.UString;
From : Swagger.Nullable_UString;
Mode : Swagger.Nullable_UString;
Jenkins_Crumb : Swagger.Nullable_UString;
Content_Type : Swagger.Nullable_UString;
P_Body : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "name", Name);
Swagger.Servers.Get_Query_Parameter (Req, "from", From);
Swagger.Servers.Get_Query_Parameter (Req, "mode", Mode);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Server.Post_Create_Item
(Name,
From,
Mode,
Jenkins_Crumb,
Content_Type,
P_Body, Context);
end Post_Create_Item;
package API_Post_Create_Item is
new Swagger.Servers.Operation (Handler => Post_Create_Item,
Method => Swagger.Servers.POST,
URI => "/createItem");
--
procedure Post_Create_View
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
Content_Type : Swagger.Nullable_UString;
P_Body : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "name", Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Server.Post_Create_View
(Name,
Jenkins_Crumb,
Content_Type,
P_Body, Context);
end Post_Create_View;
package API_Post_Create_View is
new Swagger.Servers.Operation (Handler => Post_Create_View,
Method => Swagger.Servers.POST,
URI => "/createView");
--
procedure Post_Job_Build
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Json : Swagger.UString;
Token : Swagger.Nullable_UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Query_Parameter (Req, "json", Json);
Swagger.Servers.Get_Query_Parameter (Req, "token", Token);
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Post_Job_Build
(Name,
Json,
Token,
Jenkins_Crumb, Context);
end Post_Job_Build;
package API_Post_Job_Build is
new Swagger.Servers.Operation (Handler => Post_Job_Build,
Method => Swagger.Servers.POST,
URI => "/job/{name}/build");
--
procedure Post_Job_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Name : Swagger.UString;
P_Body : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Server.Post_Job_Config
(Name,
P_Body,
Jenkins_Crumb, Context);
end Post_Job_Config;
package API_Post_Job_Config is
new Swagger.Servers.Operation (Handler => Post_Job_Config,
Method => Swagger.Servers.POST,
URI => "/job/{name}/config.xml");
--
procedure Post_Job_Delete
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Post_Job_Delete
(Name,
Jenkins_Crumb, Context);
end Post_Job_Delete;
package API_Post_Job_Delete is
new Swagger.Servers.Operation (Handler => Post_Job_Delete,
Method => Swagger.Servers.POST,
URI => "/job/{name}/doDelete");
--
procedure Post_Job_Disable
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Post_Job_Disable
(Name,
Jenkins_Crumb, Context);
end Post_Job_Disable;
package API_Post_Job_Disable is
new Swagger.Servers.Operation (Handler => Post_Job_Disable,
Method => Swagger.Servers.POST,
URI => "/job/{name}/disable");
--
procedure Post_Job_Enable
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Post_Job_Enable
(Name,
Jenkins_Crumb, Context);
end Post_Job_Enable;
package API_Post_Job_Enable is
new Swagger.Servers.Operation (Handler => Post_Job_Enable,
Method => Swagger.Servers.POST,
URI => "/job/{name}/enable");
--
procedure Post_Job_Last_Build_Stop
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Name : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Server.Post_Job_Last_Build_Stop
(Name,
Jenkins_Crumb, Context);
end Post_Job_Last_Build_Stop;
package API_Post_Job_Last_Build_Stop is
new Swagger.Servers.Operation (Handler => Post_Job_Last_Build_Stop,
Method => Swagger.Servers.POST,
URI => "/job/{name}/lastBuild/stop");
--
procedure Post_View_Config
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type) is
Input : Swagger.Value_Type;
Name : Swagger.UString;
P_Body : Swagger.UString;
Jenkins_Crumb : Swagger.Nullable_UString;
begin
if not Context.Is_Authenticated then
Context.Set_Error (401, "Not authenticated");
return;
end if;
Swagger.Servers.Get_Path_Parameter (Req, 1, Name);
Swagger.Servers.Read (Req, Input);
.Models.Deserialize (Input, "body", P_Body);
Server.Post_View_Config
(Name,
P_Body,
Jenkins_Crumb, Context);
end Post_View_Config;
package API_Post_View_Config is
new Swagger.Servers.Operation (Handler => Post_View_Config,
Method => Swagger.Servers.POST,
URI => "/view/{name}/config.xml");
procedure Register (Server : in out Swagger.Servers.Application_Type'Class) is
begin
Swagger.Servers.Register (Server, API_Get_Crumb.Definition);
Swagger.Servers.Register (Server, API_Delete_Pipeline_Queue_Item.Definition);
Swagger.Servers.Register (Server, API_Get_Authenticated_User.Definition);
Swagger.Servers.Register (Server, API_Get_Classes.Definition);
Swagger.Servers.Register (Server, API_Get_Json_Web_Key.Definition);
Swagger.Servers.Register (Server, API_Get_Json_Web_Token.Definition);
Swagger.Servers.Register (Server, API_Get_Organisation.Definition);
Swagger.Servers.Register (Server, API_Get_Organisations.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Activities.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branch.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branch_Run.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Branches.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Folder.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Folder_Pipeline.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Queue.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Log.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Step.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Step_Log.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Node_Steps.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Run_Nodes.Definition);
Swagger.Servers.Register (Server, API_Get_Pipeline_Runs.Definition);
Swagger.Servers.Register (Server, API_Get_Pipelines.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisation_Repositories.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisation_Repository.Definition);
Swagger.Servers.Register (Server, API_Get_S_C_M_Organisations.Definition);
Swagger.Servers.Register (Server, API_Get_User.Definition);
Swagger.Servers.Register (Server, API_Get_User_Favorites.Definition);
Swagger.Servers.Register (Server, API_Get_Users.Definition);
Swagger.Servers.Register (Server, API_Post_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Post_Pipeline_Runs.Definition);
Swagger.Servers.Register (Server, API_Put_Pipeline_Favorite.Definition);
Swagger.Servers.Register (Server, API_Put_Pipeline_Run.Definition);
Swagger.Servers.Register (Server, API_Search.Definition);
Swagger.Servers.Register (Server, API_Search_Classes.Definition);
Swagger.Servers.Register (Server, API_Get_Computer.Definition);
Swagger.Servers.Register (Server, API_Get_Jenkins.Definition);
Swagger.Servers.Register (Server, API_Get_Job.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Config.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Last_Build.Definition);
Swagger.Servers.Register (Server, API_Get_Job_Progressive_Text.Definition);
Swagger.Servers.Register (Server, API_Get_Queue.Definition);
Swagger.Servers.Register (Server, API_Get_Queue_Item.Definition);
Swagger.Servers.Register (Server, API_Get_View.Definition);
Swagger.Servers.Register (Server, API_Get_View_Config.Definition);
Swagger.Servers.Register (Server, API_Head_Jenkins.Definition);
Swagger.Servers.Register (Server, API_Post_Create_Item.Definition);
Swagger.Servers.Register (Server, API_Post_Create_View.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Build.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Config.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Delete.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Disable.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Enable.Definition);
Swagger.Servers.Register (Server, API_Post_Job_Last_Build_Stop.Definition);
Swagger.Servers.Register (Server, API_Post_View_Config.Definition);
end Register;
protected body Server is
--
procedure Get_Crumb (Result : out .Models.DefaultCrumbIssuer_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Crumb (Result, Context);
end Get_Crumb;
--
procedure Delete_Pipeline_Queue_Item
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Queue : in Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Delete_Pipeline_Queue_Item
(Organization,
Pipeline,
Queue,
Context);
end Delete_Pipeline_Queue_Item;
--
procedure Get_Authenticated_User
(Organization : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Authenticated_User
(Organization,
Result,
Context);
end Get_Authenticated_User;
--
procedure Get_Classes
(Class : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Classes
(Class,
Result,
Context);
end Get_Classes;
--
procedure Get_Json_Web_Key
(Key : in Integer;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Json_Web_Key
(Key,
Result,
Context);
end Get_Json_Web_Key;
--
procedure Get_Json_Web_Token
(Expiry_Time_In_Mins : in Swagger.Nullable_Integer;
Max_Expiry_Time_In_Mins : in Swagger.Nullable_Integer;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Json_Web_Token
(Expiry_Time_In_Mins,
Max_Expiry_Time_In_Mins,
Result,
Context);
end Get_Json_Web_Token;
--
procedure Get_Organisation
(Organization : in Swagger.UString;
Result : out .Models.Organisation_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Organisation
(Organization,
Result,
Context);
end Get_Organisation;
--
procedure Get_Organisations (Result : out .Models.Organisations_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Organisations (Result, Context);
end Get_Organisations;
--
procedure Get_Pipeline
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.Pipeline_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline
(Organization,
Pipeline,
Result,
Context);
end Get_Pipeline;
--
procedure Get_Pipeline_Activities
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.PipelineActivities_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Activities
(Organization,
Pipeline,
Result,
Context);
end Get_Pipeline_Activities;
--
procedure Get_Pipeline_Branch
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Branch : in Swagger.UString;
Result : out .Models.BranchImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Branch
(Organization,
Pipeline,
Branch,
Result,
Context);
end Get_Pipeline_Branch;
--
procedure Get_Pipeline_Branch_Run
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Branch : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Branch_Run
(Organization,
Pipeline,
Branch,
Run,
Result,
Context);
end Get_Pipeline_Branch_Run;
--
procedure Get_Pipeline_Branches
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.MultibranchPipeline_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Branches
(Organization,
Pipeline,
Result,
Context);
end Get_Pipeline_Branches;
--
procedure Get_Pipeline_Folder
(Organization : in Swagger.UString;
Folder : in Swagger.UString;
Result : out .Models.PipelineFolderImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Folder
(Organization,
Folder,
Result,
Context);
end Get_Pipeline_Folder;
--
procedure Get_Pipeline_Folder_Pipeline
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Folder : in Swagger.UString;
Result : out .Models.PipelineImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Folder_Pipeline
(Organization,
Pipeline,
Folder,
Result,
Context);
end Get_Pipeline_Folder_Pipeline;
--
procedure Get_Pipeline_Queue
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.PipelineQueue_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Queue
(Organization,
Pipeline,
Result,
Context);
end Get_Pipeline_Queue;
--
procedure Get_Pipeline_Run
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run
(Organization,
Pipeline,
Run,
Result,
Context);
end Get_Pipeline_Run;
--
procedure Get_Pipeline_Run_Log
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Start : in Swagger.Nullable_Integer;
Download : in Swagger.Nullable_Boolean;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Log
(Organization,
Pipeline,
Run,
Start,
Download,
Result,
Context);
end Get_Pipeline_Run_Log;
--
procedure Get_Pipeline_Run_Node
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Result : out .Models.PipelineRunNode_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Node
(Organization,
Pipeline,
Run,
Node,
Result,
Context);
end Get_Pipeline_Run_Node;
--
procedure Get_Pipeline_Run_Node_Step
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Step : in Swagger.UString;
Result : out .Models.PipelineStepImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Node_Step
(Organization,
Pipeline,
Run,
Node,
Step,
Result,
Context);
end Get_Pipeline_Run_Node_Step;
--
procedure Get_Pipeline_Run_Node_Step_Log
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Step : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Node_Step_Log
(Organization,
Pipeline,
Run,
Node,
Step,
Result,
Context);
end Get_Pipeline_Run_Node_Step_Log;
--
procedure Get_Pipeline_Run_Node_Steps
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Result : out .Models.PipelineRunNodeSteps_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Node_Steps
(Organization,
Pipeline,
Run,
Node,
Result,
Context);
end Get_Pipeline_Run_Node_Steps;
--
procedure Get_Pipeline_Run_Nodes
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRunNodes_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Run_Nodes
(Organization,
Pipeline,
Run,
Result,
Context);
end Get_Pipeline_Run_Nodes;
--
procedure Get_Pipeline_Runs
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.PipelineRuns_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipeline_Runs
(Organization,
Pipeline,
Result,
Context);
end Get_Pipeline_Runs;
--
procedure Get_Pipelines
(Organization : in Swagger.UString;
Result : out .Models.Pipelines_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Pipelines
(Organization,
Result,
Context);
end Get_Pipelines;
--
procedure Get_S_C_M
(Organization : in Swagger.UString;
Scm : in Swagger.UString;
Result : out .Models.GithubScm_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_S_C_M
(Organization,
Scm,
Result,
Context);
end Get_S_C_M;
--
procedure Get_S_C_M_Organisation_Repositories
(Organization : in Swagger.UString;
Scm : in Swagger.UString;
Scm_Organisation : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Page_Size : in Swagger.Nullable_Integer;
Page_Number : in Swagger.Nullable_Integer;
Result : out .Models.ScmOrganisations_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_S_C_M_Organisation_Repositories
(Organization,
Scm,
Scm_Organisation,
Credential_Id,
Page_Size,
Page_Number,
Result,
Context);
end Get_S_C_M_Organisation_Repositories;
--
procedure Get_S_C_M_Organisation_Repository
(Organization : in Swagger.UString;
Scm : in Swagger.UString;
Scm_Organisation : in Swagger.UString;
Repository : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Result : out .Models.ScmOrganisations_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_S_C_M_Organisation_Repository
(Organization,
Scm,
Scm_Organisation,
Repository,
Credential_Id,
Result,
Context);
end Get_S_C_M_Organisation_Repository;
--
procedure Get_S_C_M_Organisations
(Organization : in Swagger.UString;
Scm : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Result : out .Models.ScmOrganisations_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_S_C_M_Organisations
(Organization,
Scm,
Credential_Id,
Result,
Context);
end Get_S_C_M_Organisations;
--
procedure Get_User
(Organization : in Swagger.UString;
User : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_User
(Organization,
User,
Result,
Context);
end Get_User;
--
procedure Get_User_Favorites
(User : in Swagger.UString;
Result : out .Models.UserFavorites_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_User_Favorites
(User,
Result,
Context);
end Get_User_Favorites;
--
procedure Get_Users
(Organization : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Users
(Organization,
Result,
Context);
end Get_Users;
--
procedure Post_Pipeline_Run
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.QueueItemImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Pipeline_Run
(Organization,
Pipeline,
Run,
Result,
Context);
end Post_Pipeline_Run;
--
procedure Post_Pipeline_Runs
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.QueueItemImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Pipeline_Runs
(Organization,
Pipeline,
Result,
Context);
end Post_Pipeline_Runs;
--
procedure Put_Pipeline_Favorite
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Body_Type : in Body_Type;
Result : out .Models.FavoriteImpl_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Put_Pipeline_Favorite
(Organization,
Pipeline,
Body_Type,
Result,
Context);
end Put_Pipeline_Favorite;
--
procedure Put_Pipeline_Run
(Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Blocking : in Swagger.Nullable_UString;
Time_Out_In_Secs : in Swagger.Nullable_Integer;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Put_Pipeline_Run
(Organization,
Pipeline,
Run,
Blocking,
Time_Out_In_Secs,
Result,
Context);
end Put_Pipeline_Run;
--
procedure Search
(Q : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Search
(Q,
Result,
Context);
end Search;
--
procedure Search_Classes
(Q : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Search_Classes
(Q,
Result,
Context);
end Search_Classes;
--
procedure Get_Computer
(Depth : in Integer;
Result : out .Models.ComputerSet_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Computer
(Depth,
Result,
Context);
end Get_Computer;
--
procedure Get_Jenkins (Result : out .Models.Hudson_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Jenkins (Result, Context);
end Get_Jenkins;
--
procedure Get_Job
(Name : in Swagger.UString;
Result : out .Models.FreeStyleProject_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Job
(Name,
Result,
Context);
end Get_Job;
--
procedure Get_Job_Config
(Name : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Job_Config
(Name,
Result,
Context);
end Get_Job_Config;
--
procedure Get_Job_Last_Build
(Name : in Swagger.UString;
Result : out .Models.FreeStyleBuild_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Job_Last_Build
(Name,
Result,
Context);
end Get_Job_Last_Build;
--
procedure Get_Job_Progressive_Text
(Name : in Swagger.UString;
Number : in Swagger.UString;
Start : in Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Job_Progressive_Text
(Name,
Number,
Start,
Context);
end Get_Job_Progressive_Text;
--
procedure Get_Queue (Result : out .Models.Queue_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Queue (Result, Context);
end Get_Queue;
--
procedure Get_Queue_Item
(Number : in Swagger.UString;
Result : out .Models.Queue_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_Queue_Item
(Number,
Result,
Context);
end Get_Queue_Item;
--
procedure Get_View
(Name : in Swagger.UString;
Result : out .Models.ListView_Type;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_View
(Name,
Result,
Context);
end Get_View;
--
procedure Get_View_Config
(Name : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Get_View_Config
(Name,
Result,
Context);
end Get_View_Config;
--
procedure Head_Jenkins (Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Head_Jenkins (Context);
end Head_Jenkins;
--
procedure Post_Create_Item
(Name : in Swagger.UString;
From : in Swagger.Nullable_UString;
Mode : in Swagger.Nullable_UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Content_Type : in Swagger.Nullable_UString;
P_Body : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Create_Item
(Name,
From,
Mode,
Jenkins_Crumb,
Content_Type,
P_Body,
Context);
end Post_Create_Item;
--
procedure Post_Create_View
(Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Content_Type : in Swagger.Nullable_UString;
P_Body : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Create_View
(Name,
Jenkins_Crumb,
Content_Type,
P_Body,
Context);
end Post_Create_View;
--
procedure Post_Job_Build
(Name : in Swagger.UString;
Json : in Swagger.UString;
Token : in Swagger.Nullable_UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Build
(Name,
Json,
Token,
Jenkins_Crumb,
Context);
end Post_Job_Build;
--
procedure Post_Job_Config
(Name : in Swagger.UString;
P_Body : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Config
(Name,
P_Body,
Jenkins_Crumb,
Context);
end Post_Job_Config;
--
procedure Post_Job_Delete
(Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Delete
(Name,
Jenkins_Crumb,
Context);
end Post_Job_Delete;
--
procedure Post_Job_Disable
(Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Disable
(Name,
Jenkins_Crumb,
Context);
end Post_Job_Disable;
--
procedure Post_Job_Enable
(Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Enable
(Name,
Jenkins_Crumb,
Context);
end Post_Job_Enable;
--
procedure Post_Job_Last_Build_Stop
(Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_Job_Last_Build_Stop
(Name,
Jenkins_Crumb,
Context);
end Post_Job_Last_Build_Stop;
--
procedure Post_View_Config
(Name : in Swagger.UString;
P_Body : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type) is
begin
Impl.Post_View_Config
(Name,
P_Body,
Jenkins_Crumb,
Context);
end Post_View_Config;
end Server;
end Shared_Instance;
end .Skeletons;
|
-- Copyright 2017 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local json = require("json")
name = "Sublist3rAPI"
type = "api"
function start()
setratelimit(1)
end
function vertical(ctx, domain)
local page, err = request({url=buildurl(domain)})
if (err ~= nil and err ~= "") then
return
end
local resp = json.decode(page)
if (resp == nil or #resp == 0) then
return
end
for i, v in pairs(resp) do
newname(ctx, v)
end
end
function buildurl(domain)
return "https://api.sublist3r.com/search.php?domain=" .. domain
end
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- A D A . W I D E _ T E X T _ I O --
-- --
-- S p e c --
-- --
-- $Revision: 2 $ --
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with Ada.IO_Exceptions;
with System;
with System.Parameters;
package Ada.Wide_Text_IO is
type File_Type is limited private;
type File_Mode is (In_File, Out_File, Append_File);
type Count is range 0 .. System.Parameters.Count_Max;
subtype Positive_Count is Count range 1 .. Count'Last;
Unbounded : constant Count := 0;
-- Line and page length
subtype Field is Integer range 0 .. System.Parameters.Field_Max;
subtype Number_Base is Integer range 2 .. 16;
type Type_Set is (Lower_Case, Upper_Case);
---------------------
-- File Management --
---------------------
procedure Create
(File : in out File_Type;
Mode : in File_Mode := Out_File;
Name : in String := "";
Form : in String := "");
procedure Open
(File : in out File_Type;
Mode : in File_Mode;
Name : in String;
Form : in String := "");
procedure Close (File : in out File_Type);
procedure Delete (File : in out File_Type);
procedure Reset (File : in out File_Type; Mode : in File_Mode);
procedure Reset (File : in out File_Type);
function Mode (File : in File_Type) return File_Mode;
function Name (File : in File_Type) return String;
function Form (File : in File_Type) return String;
function Is_Open (File : in File_Type) return Boolean;
------------------------------------------------------
-- Control of default input, output and error files --
------------------------------------------------------
procedure Set_Input (File : in File_Type);
procedure Set_Output (File : in File_Type);
procedure Set_Error (File : in File_Type);
function Standard_Input return File_Type;
function Standard_Output return File_Type;
function Standard_Error return File_Type;
function Current_Input return File_Type;
function Current_Output return File_Type;
function Current_Error return File_Type;
type File_Access is access constant File_Type;
function Standard_Input return File_Access;
function Standard_Output return File_Access;
function Standard_Error return File_Access;
function Current_Input return File_Access;
function Current_Output return File_Access;
function Current_Error return File_Access;
--------------------
-- Buffer control --
--------------------
procedure Flush (File : in out File_Type);
procedure Flush;
--------------------------------------------
-- Specification of line and page lengths --
--------------------------------------------
procedure Set_Line_Length (File : in File_Type; To : in Count);
procedure Set_Line_Length (To : in Count);
procedure Set_Page_Length (File : in File_Type; To : in Count);
procedure Set_Page_Length (To : in Count);
function Line_Length (File : in File_Type) return Count;
function Line_Length return Count;
function Page_Length (File : in File_Type) return Count;
function Page_Length return Count;
------------------------------------
-- Column, Line, and Page Control --
------------------------------------
procedure New_Line (File : in File_Type; Spacing : in Positive_Count := 1);
procedure New_Line (Spacing : in Positive_Count := 1);
procedure Skip_Line (File : in File_Type; Spacing : in Positive_Count := 1);
procedure Skip_Line (Spacing : in Positive_Count := 1);
function End_Of_Line (File : in File_Type) return Boolean;
function End_Of_Line return Boolean;
procedure New_Page (File : in File_Type);
procedure New_Page;
procedure Skip_Page (File : in File_Type);
procedure Skip_Page;
function End_Of_Page (File : in File_Type) return Boolean;
function End_Of_Page return Boolean;
function End_Of_File (File : in File_Type) return Boolean;
function End_Of_File return Boolean;
procedure Set_Col (File : in File_Type; To : in Positive_Count);
procedure Set_Col (To : in Positive_Count);
procedure Set_Line (File : in File_Type; To : in Positive_Count);
procedure Set_Line (To : in Positive_Count);
function Col (File : in File_Type) return Positive_Count;
function Col return Positive_Count;
function Line (File : in File_Type) return Positive_Count;
function Line return Positive_Count;
function Page (File : in File_Type) return Positive_Count;
function Page return Positive_Count;
-----------------------------
-- Characters Input-Output --
-----------------------------
procedure Get (File : in File_Type; Item : out Wide_Character);
procedure Get (Item : out Wide_Character);
procedure Put (File : in File_Type; Item : in Wide_Character);
procedure Put (Item : in Wide_Character);
procedure Look_Ahead
(File : in File_Type;
Item : out Wide_Character;
End_Of_Line : out Boolean);
procedure Look_Ahead
(Item : out Wide_Character;
End_of_Line : out Boolean);
procedure Get_Immediate
(File : in File_Type;
Item : out Wide_Character);
procedure Get_Immediate
(Item : out Wide_Character);
procedure Get_Immediate
(File : in File_Type;
Item : out Wide_Character;
Available : out Boolean);
procedure Get_Immediate
(Item : out Wide_Character;
Available : out Boolean);
--------------------------
-- Strings Input-Output --
--------------------------
procedure Get (File : in File_Type; Item : out Wide_String);
procedure Get (Item : out Wide_String);
procedure Put (File : in File_Type; Item : in Wide_String);
procedure Put (Item : in Wide_String);
procedure Get_Line
(File : in File_Type;
Item : out Wide_String;
Last : out Natural);
procedure Get_Line
(Item : out Wide_String;
Last : out Natural);
procedure Put_Line
(File : in File_Type;
Item : in Wide_String);
procedure Put_Line
(Item : in Wide_String);
--------------------------------------------------------
-- Generic packages for Input-Output of Integer Types --
--------------------------------------------------------
generic
type Num is range <>;
package Integer_Io is
Default_Width : Field := Num'Width;
Default_Base : Number_Base := 10;
procedure Get
(File : in File_Type;
Item : out Num;
Width : in Field := 0);
procedure Get
(Item : out Num;
Width : in Field := 0);
procedure Put
(File : in File_Type;
Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base);
procedure Put
(Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base);
procedure Get
(From : in Wide_String;
Item : out Num;
Last : out Positive);
procedure Put
(To : out Wide_String;
Item : in Num;
Base : in Number_Base := Default_Base);
end Integer_Io;
-----------------------------------
-- Input-Output of Modular Types --
-----------------------------------
generic
type Num is mod <>;
package Modular_IO is
Default_Width : Field := Num'Width;
Default_Base : Number_Base := 10;
procedure Get
(File : in File_Type;
Item : out Num;
Width : in Field := 0);
procedure Get
(Item : out Num;
Width : in Field := 0);
procedure Put
(File : in File_Type;
Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base);
procedure Put
(Item : in Num;
Width : in Field := Default_Width;
Base : in Number_Base := Default_Base);
procedure Get
(From : in Wide_String;
Item : out Num;
Last : out Positive);
procedure Put
(To : out Wide_String;
Item : in Num;
Base : in Number_Base := Default_Base);
end Modular_IO;
--------------------------------
-- Input-Output of Real Types --
--------------------------------
generic
type Num is digits <>;
package Float_Io is
Default_Fore : Field := 2;
Default_Aft : Field := Num'Digits - 1;
Default_Exp : Field := 3;
procedure Get
(File : in File_Type;
Item : out Num;
Width : in Field := 0);
procedure Get
(Item : out Num;
Width : in Field := 0);
procedure Put
(File : in File_Type;
Item : in Num;
Fore : in Field := Default_Fore;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
procedure Put
(Item : in Num;
Fore : in Field := Default_Fore;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
procedure Get
(From : in Wide_String;
Item : out Num;
Last : out Positive);
procedure Put
(To : out Wide_String;
Item : in Num;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
end Float_Io;
generic
type Num is delta <>;
package Fixed_Io is
Default_Fore : Field := Num'Fore;
Default_Aft : Field := Num'Aft;
Default_Exp : Field := 0;
procedure Get
(File : in File_Type;
Item : out Num;
Width : in Field := 0);
procedure Get
(Item : out Num;
Width : in Field := 0);
procedure Put
(File : in File_Type;
Item : in Num;
Fore : in Field := Default_Fore;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
procedure Put
(Item : in Num;
Fore : in Field := Default_Fore;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
procedure Get
(From : in Wide_String;
Item : out Num; Last : out Positive);
procedure Put
(To : out Wide_String;
Item : in Num;
Aft : in Field := Default_Aft;
Exp : in Field := Default_Exp);
end Fixed_Io;
-- generic
-- type Num is delta <> digits <>;
-- package Decimal_IO is
--
-- Default_Fore : Field := Num'Fore;
-- Default_Aft : Field := Num'Aft;
-- Default_Exp : Field := 0;
-- procedure Get
-- (File : in File_Type;
-- Item : out Num;
-- Width : in Field := 0);
-- procedure Get
-- (Item : out Num;
-- Width : in Field := 0);
-- procedure Put
-- (File : in File_Type;
-- Item : in Num;
-- Fore : in Field := Default_Fore;
-- Aft : in Field := Default_Aft;
-- Exp : in Field := Default_Exp);
-- procedure Put
-- (Item : in Num;
-- Fore : in Field := Default_Fore;
-- Aft : in Field := Default_Aft;
-- Exp : in Field := Default_Exp);
-- procedure Get
-- (From : in Wide_String;
-- Item : out Num;
-- Last : out Positive);
-- procedure Put
-- (To : out Wide_String;
-- Item : in Num;
-- Aft : in Field := Default_Aft;
-- Exp : in Field := Default_Exp);
--
-- end Decimal_IO;
---------------------------------------
-- Input-Output of Enumeration Types --
---------------------------------------
generic
type Enum is (<>);
package Enumeration_Io is
Default_Width : Field := 0;
Default_Setting : Type_Set := Upper_Case;
procedure Get (File : in File_Type; Item : out Enum);
procedure Get (Item : out Enum);
procedure Put
(File : in File_Type;
Item : in Enum;
Width : in Field := Default_Width;
Set : in Type_Set := Default_Setting);
procedure Put
(Item : in Enum;
Width : in Field := Default_Width;
Set : in Type_Set := Default_Setting);
procedure Get
(From : in Wide_String;
Item : out Enum;
Last : out positive);
procedure Put
(To : out Wide_String;
Item : in Enum;
Set : in Type_Set := Default_Setting);
end Enumeration_Io;
-- Exceptions
Status_Error : exception renames IO_Exceptions.Status_Error;
Mode_Error : exception renames IO_Exceptions.Mode_Error;
Name_Error : exception renames IO_Exceptions.Name_Error;
Use_Error : exception renames IO_Exceptions.Use_Error;
Device_Error : exception renames IO_Exceptions.Device_Error;
End_Error : exception renames IO_Exceptions.End_Error;
Data_Error : exception renames IO_Exceptions.Data_Error;
Layout_Error : exception renames IO_Exceptions.Layout_Error;
private
type File_Ptr is new System.Address;
type Pstring is access String;
-- Ada File Control Block
type AFCB is record
AFCB_In_Use : Boolean;
Desc : File_Ptr;
Name : Pstring;
Form : Pstring;
Mode : File_Mode;
Page : Count;
Line : Count;
Col : Positive_Count;
Line_Length : Count;
Page_Length : Count;
Count : Integer;
Is_Keyboard : Boolean;
Look_Ahead : String (1 .. 3);
end record;
type File_Type is access AFCB;
end Ada.Wide_Text_IO;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 5 1 --
-- --
-- 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_51 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_51;
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_51 --
------------
function Get_51
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_51
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_51;
------------
-- Set_51 --
------------
procedure Set_51
(Arr : System.Address;
N : Natural;
E : Bits_51;
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_51;
end System.Pack_51;
|
-- OEML _ REST API
-- This section will provide necessary information about the `CoinAPI OEML REST API` protocol. This API is also available in the Postman application: <a href=\"https://postman.coinapi.io/\" target=\"_blank\">https://postman.coinapi.io/</a>
--
-- The version of the OpenAPI document: v1
-- Contact: support@coinapi.io
--
-- NOTE: This package is auto generated by OpenAPI-Generator 5.0.0.
-- https://openapi-generator.tech
-- Do not edit the class manually.
with Swagger.Streams;
with Ada.Containers.Vectors;
package .Models is
type Severity_Type is
record
end record;
package Severity_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Severity_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Severity_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Severity_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Severity_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Severity_Type_Vectors.Vector);
-- ------------------------------
-- Message object.
-- ------------------------------
type Message_Type is
record
P_Type : Swagger.Nullable_UString;
Severity : .Models.Severity_Type;
Exchange_Id : Swagger.Nullable_UString;
Message : Swagger.Nullable_UString;
end record;
package Message_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Message_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Message_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Message_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Message_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Message_Type_Vectors.Vector);
-- ------------------------------
-- JSON validation error.
-- ------------------------------
type ValidationError_Type is
record
P_Type : Swagger.Nullable_UString;
Title : Swagger.Nullable_UString;
Status : Swagger.Number;
Trace_Id : Swagger.Nullable_UString;
Errors : Swagger.Nullable_UString;
end record;
package ValidationError_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => ValidationError_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in ValidationError_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in ValidationError_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out ValidationError_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out ValidationError_Type_Vectors.Vector);
type OrdType_Type is
record
end record;
package OrdType_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrdType_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdType_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdType_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdType_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdType_Type_Vectors.Vector);
type OrdStatus_Type is
record
end record;
package OrdStatus_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrdStatus_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdStatus_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdStatus_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdStatus_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdStatus_Type_Vectors.Vector);
type OrderCancelAllRequest_Type is
record
Exchange_Id : Swagger.UString;
end record;
package OrderCancelAllRequest_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrderCancelAllRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelAllRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelAllRequest_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelAllRequest_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelAllRequest_Type_Vectors.Vector);
type OrderCancelSingleRequest_Type is
record
Exchange_Id : Swagger.UString;
Exchange_Order_Id : Swagger.Nullable_UString;
Client_Order_Id : Swagger.Nullable_UString;
end record;
package OrderCancelSingleRequest_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrderCancelSingleRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelSingleRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderCancelSingleRequest_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelSingleRequest_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderCancelSingleRequest_Type_Vectors.Vector);
type OrdSide_Type is
record
end record;
package OrdSide_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrdSide_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdSide_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrdSide_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdSide_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrdSide_Type_Vectors.Vector);
type TimeInForce_Type is
record
end record;
package TimeInForce_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => TimeInForce_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in TimeInForce_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in TimeInForce_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out TimeInForce_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out TimeInForce_Type_Vectors.Vector);
type OrderNewSingleRequest_Type is
record
Exchange_Id : Swagger.UString;
Client_Order_Id : Swagger.UString;
Symbol_Id_Exchange : Swagger.Nullable_UString;
Symbol_Id_Coinapi : Swagger.Nullable_UString;
Amount_Order : Swagger.Number;
Price : Swagger.Number;
Side : .Models.OrdSide_Type;
Order_Type : .Models.OrdType_Type;
Time_In_Force : .Models.TimeInForce_Type;
Expire_Time : Swagger.Nullable_Date;
Exec_Inst : Swagger.UString_Vectors.Vector;
end record;
package OrderNewSingleRequest_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrderNewSingleRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderNewSingleRequest_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderNewSingleRequest_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderNewSingleRequest_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderNewSingleRequest_Type_Vectors.Vector);
-- ------------------------------
-- Relay fill information on working orders.
-- ------------------------------
type Fills_Type is
record
Time : Swagger.Nullable_Date;
Price : Swagger.Number;
Amount : Swagger.Number;
end record;
package Fills_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Fills_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Fills_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Fills_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Fills_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Fills_Type_Vectors.Vector);
type OrderExecutionReport_Type is
record
Exchange_Id : Swagger.UString;
Client_Order_Id : Swagger.UString;
Symbol_Id_Exchange : Swagger.Nullable_UString;
Symbol_Id_Coinapi : Swagger.Nullable_UString;
Amount_Order : Swagger.Number;
Price : Swagger.Number;
Side : .Models.OrdSide_Type;
Order_Type : .Models.OrdType_Type;
Time_In_Force : .Models.TimeInForce_Type;
Expire_Time : Swagger.Nullable_Date;
Exec_Inst : Swagger.UString_Vectors.Vector;
Client_Order_Id_Format_Exchange : Swagger.UString;
Exchange_Order_Id : Swagger.Nullable_UString;
Amount_Open : Swagger.Number;
Amount_Filled : Swagger.Number;
Avg_Px : Swagger.Number;
Status : .Models.OrdStatus_Type;
Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector;
Error_Message : Swagger.Nullable_UString;
Fills : .Models.Fills_Type_Vectors.Vector;
end record;
package OrderExecutionReport_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrderExecutionReport_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReport_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReport_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReport_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReport_Type_Vectors.Vector);
type OrderExecutionReportAllOf_Type is
record
Client_Order_Id_Format_Exchange : Swagger.UString;
Exchange_Order_Id : Swagger.Nullable_UString;
Amount_Open : Swagger.Number;
Amount_Filled : Swagger.Number;
Avg_Px : Swagger.Number;
Status : .Models.OrdStatus_Type;
Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector;
Error_Message : Swagger.Nullable_UString;
Fills : .Models.Fills_Type_Vectors.Vector;
end record;
package OrderExecutionReportAllOf_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => OrderExecutionReportAllOf_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReportAllOf_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in OrderExecutionReportAllOf_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReportAllOf_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out OrderExecutionReportAllOf_Type_Vectors.Vector);
type BalanceData_Type is
record
Asset_Id_Exchange : Swagger.Nullable_UString;
Asset_Id_Coinapi : Swagger.Nullable_UString;
Balance : float;
Available : float;
Locked : float;
Last_Updated_By : Swagger.Nullable_UString;
Rate_Usd : float;
Traded : float;
end record;
package BalanceData_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => BalanceData_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in BalanceData_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in BalanceData_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out BalanceData_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out BalanceData_Type_Vectors.Vector);
type Balance_Type is
record
Exchange_Id : Swagger.Nullable_UString;
Data : .Models.BalanceData_Type_Vectors.Vector;
end record;
package Balance_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Balance_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Balance_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Balance_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Balance_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Balance_Type_Vectors.Vector);
type Position_Type is
record
Exchange_Id : Swagger.Nullable_UString;
Data : .Models.PositionData_Type_Vectors.Vector;
end record;
package Position_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => Position_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Position_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in Position_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Position_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out Position_Type_Vectors.Vector);
type PositionData_Type is
record
Symbol_Id_Exchange : Swagger.Nullable_UString;
Symbol_Id_Coinapi : Swagger.Nullable_UString;
Avg_Entry_Price : Swagger.Number;
Quantity : Swagger.Number;
Side : .Models.OrdSide_Type;
Unrealized_Pnl : Swagger.Number;
Leverage : Swagger.Number;
Cross_Margin : Swagger.Nullable_Boolean;
Liquidation_Price : Swagger.Number;
Raw_Data : Swagger.Object;
end record;
package PositionData_Type_Vectors is
new Ada.Containers.Vectors (Index_Type => Positive,
Element_Type => PositionData_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in PositionData_Type);
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class;
Name : in String;
Value : in PositionData_Type_Vectors.Vector);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out PositionData_Type);
procedure Deserialize (From : in Swagger.Value_Type;
Name : in String;
Value : out PositionData_Type_Vectors.Vector);
end .Models;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . M D 5 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-2005, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package implements the MD5 Message-Digest Algorithm as described in
-- RFC 1321. The complete text of RFC 1321 can be found at:
--
-- http://www.ietf.org/rfc/rfc1321.txt
--
-- The implementation is derived from the RSA Data Secutity, Inc. MD5
-- Message-Digest Algorithm, as described in RFC 1321.
with Ada.Streams;
with Interfaces;
package GNAT.MD5 is
type Context is private;
-- This type is the four-word (16 byte) MD buffer, as described in
-- RFC 1321 (3.3). It initial value is Initial_Context below.
Initial_Context : constant Context;
-- Initial value of a Context object. May be used to reinitialize
-- a Context value by simple assignment of this value to the object.
procedure Update
(C : in out Context;
Input : String);
procedure Wide_Update
(C : in out Context;
Input : Wide_String);
procedure Update
(C : in out Context;
Input : Ada.Streams.Stream_Element_Array);
-- Modify the Context C. If C has the initial value Initial_Context,
-- then, after a call to one of these procedures, Digest (C) will return
-- the Message-Digest of Input.
--
-- These procedures may be called successively with the same context and
-- different inputs, and these several successive calls will produce
-- the same final context as a call with the concatenation of the inputs.
subtype Message_Digest is String (1 .. 32);
-- The string type returned by function Digest
function Digest (C : Context) return Message_Digest;
-- Extracts the Message-Digest from a context. This function should be
-- used after one or several calls to Update.
function Digest (S : String) return Message_Digest;
function Wide_Digest (W : Wide_String) return Message_Digest;
function Digest
(A : Ada.Streams.Stream_Element_Array)
return Message_Digest;
-- These functions are equivalent to the corresponding Update (or
-- Wide_Update) on a default initialized Context, followed by Digest
-- on the resulting Context.
private
-- Magic numbers
Initial_A : constant := 16#67452301#;
Initial_B : constant := 16#EFCDAB89#;
Initial_C : constant := 16#98BADCFE#;
Initial_D : constant := 16#10325476#;
type Context is record
A : Interfaces.Unsigned_32 := Initial_A;
B : Interfaces.Unsigned_32 := Initial_B;
C : Interfaces.Unsigned_32 := Initial_C;
D : Interfaces.Unsigned_32 := Initial_D;
Buffer : String (1 .. 64) := (others => ASCII.NUL);
Last : Natural := 0;
Length : Natural := 0;
end record;
Initial_Context : constant Context :=
(A => Initial_A, B => Initial_B, C => Initial_C, D => Initial_D,
Buffer => (others => ASCII.NUL), Last => 0, Length => 0);
end GNAT.MD5;
|
with Test_Solution; use Test_Solution;
with Ada.Numerics; use Ada.Numerics;
with Ada.Numerics.Elementary_Functions;
use Ada.Numerics.Elementary_Functions;
with Ada.Containers.Vectors;
package Problem_5 is
type Int64 is range -2**63 .. 2**63 - 1;
type Prime_Count is record
Prime : Int64;
Count : Int64;
end record;
package P is new Ada.Containers.Vectors(Index_Type => Natural,
Element_Type => Prime_Count);
function Solution_1( Min, Max : Integer ) return Int64;
function Solution_2( Min, Max : Integer ) return Int64;
procedure Test_Solution_1;
procedure Test_Solution_2;
function Get_Solutions return Solution_Case;
private
function Greatest_Common_Divisor( A, B : Integer ) return Integer;
function Least_Common_Multiple( A, B : Integer ) return Integer;
end Problem_5;
|
------------------------------------------------------------------------------
-- --
-- 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_Read_Link_Actions is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Read_Link_Action_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_Read_Link_Action
(AMF.UML.Read_Link_Actions.UML_Read_Link_Action_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Read_Link_Action_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_Read_Link_Action
(AMF.UML.Read_Link_Actions.UML_Read_Link_Action_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Read_Link_Action_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_Read_Link_Action
(Visitor,
AMF.UML.Read_Link_Actions.UML_Read_Link_Action_Access (Self),
Control);
end if;
end Visit_Element;
----------------
-- Get_Result --
----------------
overriding function Get_Result
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Output_Pins.UML_Output_Pin_Access is
begin
return
AMF.UML.Output_Pins.UML_Output_Pin_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Result
(Self.Element)));
end Get_Result;
----------------
-- Set_Result --
----------------
overriding procedure Set_Result
(Self : not null access UML_Read_Link_Action_Proxy;
To : AMF.UML.Output_Pins.UML_Output_Pin_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Result
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Result;
------------------
-- Get_End_Data --
------------------
overriding function Get_End_Data
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Link_End_Datas.Collections.Set_Of_UML_Link_End_Data is
begin
return
AMF.UML.Link_End_Datas.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_End_Data
(Self.Element)));
end Get_End_Data;
---------------------
-- Get_Input_Value --
---------------------
overriding function Get_Input_Value
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Input_Pins.Collections.Set_Of_UML_Input_Pin is
begin
return
AMF.UML.Input_Pins.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Input_Value
(Self.Element)));
end Get_Input_Value;
-----------------
-- Get_Context --
-----------------
overriding function Get_Context
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access is
begin
return
AMF.UML.Classifiers.UML_Classifier_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Context
(Self.Element)));
end Get_Context;
---------------
-- Get_Input --
---------------
overriding function Get_Input
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Input_Pins.Collections.Ordered_Set_Of_UML_Input_Pin is
begin
return
AMF.UML.Input_Pins.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Input
(Self.Element)));
end Get_Input;
------------------------------
-- Get_Is_Locally_Reentrant --
------------------------------
overriding function Get_Is_Locally_Reentrant
(Self : not null access constant UML_Read_Link_Action_Proxy)
return Boolean is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Is_Locally_Reentrant
(Self.Element);
end Get_Is_Locally_Reentrant;
------------------------------
-- Set_Is_Locally_Reentrant --
------------------------------
overriding procedure Set_Is_Locally_Reentrant
(Self : not null access UML_Read_Link_Action_Proxy;
To : Boolean) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Is_Locally_Reentrant
(Self.Element, To);
end Set_Is_Locally_Reentrant;
-----------------------------
-- Get_Local_Postcondition --
-----------------------------
overriding function Get_Local_Postcondition
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint is
begin
return
AMF.UML.Constraints.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Local_Postcondition
(Self.Element)));
end Get_Local_Postcondition;
----------------------------
-- Get_Local_Precondition --
----------------------------
overriding function Get_Local_Precondition
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint is
begin
return
AMF.UML.Constraints.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Local_Precondition
(Self.Element)));
end Get_Local_Precondition;
----------------
-- Get_Output --
----------------
overriding function Get_Output
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Output_Pins.Collections.Ordered_Set_Of_UML_Output_Pin is
begin
return
AMF.UML.Output_Pins.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Output
(Self.Element)));
end Get_Output;
-----------------
-- Get_Handler --
-----------------
overriding function Get_Handler
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Exception_Handlers.Collections.Set_Of_UML_Exception_Handler is
begin
return
AMF.UML.Exception_Handlers.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Handler
(Self.Element)));
end Get_Handler;
------------------
-- Get_Activity --
------------------
overriding function Get_Activity
(Self : not null access constant UML_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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;
-----------------
-- Association --
-----------------
overriding function Association
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Associations.UML_Association_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Association unimplemented");
raise Program_Error with "Unimplemented procedure UML_Read_Link_Action_Proxy.Association";
return Association (Self);
end Association;
-------------
-- Context --
-------------
overriding function Context
(Self : not null access constant UML_Read_Link_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Context unimplemented");
raise Program_Error with "Unimplemented procedure UML_Read_Link_Action_Proxy.Context";
return Context (Self);
end Context;
------------------------
-- Is_Consistent_With --
------------------------
overriding function Is_Consistent_With
(Self : not null access constant UML_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_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_Read_Link_Action_Proxy.Namespace";
return Namespace (Self);
end Namespace;
end AMF.Internals.UML_Read_Link_Actions;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2021, 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 System.Storage_Elements; use System.Storage_Elements;
package body USB.Utils is
----------
-- Copy --
----------
procedure Copy (Src, Dst : System.Address; Count : Natural) is
Src_Arr : UInt8_Array (1 .. Count) with Address => Src;
Dst_Arr : UInt8_Array (1 .. Count) with Address => Dst;
begin
Dst_Arr := Src_Arr;
end Copy;
----------
-- Copy --
----------
procedure Copy (Src, Dst : System.Address; Count : HAL.UInt32) is
begin
Copy (Src, Dst, Natural (Count));
end Copy;
----------
-- Copy --
----------
procedure Copy (Src, Dst : System.Address; Count : HAL.UInt11) is
begin
Copy (Src, Dst, Natural (Count));
end Copy;
--------------
-- Allocate --
--------------
function Allocate (This : in out Basic_RAM_Allocator;
Alignment : UInt8;
Len : UInt11)
return System.Address
is
begin
-- First align the Top pointer according to requested alignment
Align_Top (This, Alignment);
-- Check if top is within range, otherwise there is no memory left
if This.Top not in This.Buffer'Range then
return System.Null_Address;
end if;
declare
New_Top : constant Natural := This.Top + Natural (Len);
Ret : System.Address;
begin
-- Check if allocation fits in the buffer
if New_Top - 1 > This.Buffer'Last then
return System.Null_Address;
end if;
Ret := This.Buffer (This.Top)'Address;
This.Top := New_Top;
return Ret;
end;
end Allocate;
---------------
-- Align_Top --
---------------
procedure Align_Top (This : in out Basic_RAM_Allocator;
Alignment : UInt8)
is
begin
-- Top is already outside of buffer range. There is no memory available
-- anymore.
if This.Top not in This.Buffer'Range then
return;
end if;
declare
Addr : constant System.Address := This.Buffer (This.Top)'Address;
Int : constant Integer_Address := To_Integer (Addr);
Align : constant Integer_Address := Integer_Address (Alignment);
Padding : constant Integer_Address :=
(Align - (Int mod Align)) mod Align;
begin
-- This may result in a Top that is outside the range of allocated
-- buffer.
This.Top := This.Top + Natural (Padding);
end;
end Align_Top;
end USB.Utils;
|
-- This spec has been automatically generated from STM32F429x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with HAL;
with System;
package STM32_SVD.ADC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-----------------
-- SR_Register --
-----------------
-- status register
type SR_Register is record
-- Analog watchdog flag
AWD : Boolean := False;
-- Regular channel end of conversion
EOC : Boolean := False;
-- Injected channel end of conversion
JEOC : Boolean := False;
-- Injected channel start flag
JSTRT : Boolean := False;
-- Regular channel start flag
STRT : Boolean := False;
-- Overrun
OVR : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
AWD at 0 range 0 .. 0;
EOC at 0 range 1 .. 1;
JEOC at 0 range 2 .. 2;
JSTRT at 0 range 3 .. 3;
STRT at 0 range 4 .. 4;
OVR at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
------------------
-- CR1_Register --
------------------
subtype CR1_AWDCH_Field is HAL.UInt5;
subtype CR1_DISCNUM_Field is HAL.UInt3;
subtype CR1_RES_Field is HAL.UInt2;
-- control register 1
type CR1_Register is record
-- Analog watchdog channel select bits
AWDCH : CR1_AWDCH_Field := 16#0#;
-- Interrupt enable for EOC
EOCIE : Boolean := False;
-- Analog watchdog interrupt enable
AWDIE : Boolean := False;
-- Interrupt enable for injected channels
JEOCIE : Boolean := False;
-- Scan mode
SCAN : Boolean := False;
-- Enable the watchdog on a single channel in scan mode
AWDSGL : Boolean := False;
-- Automatic injected group conversion
JAUTO : Boolean := False;
-- Discontinuous mode on regular channels
DISCEN : Boolean := False;
-- Discontinuous mode on injected channels
JDISCEN : Boolean := False;
-- Discontinuous mode channel count
DISCNUM : CR1_DISCNUM_Field := 16#0#;
-- unspecified
Reserved_16_21 : HAL.UInt6 := 16#0#;
-- Analog watchdog enable on injected channels
JAWDEN : Boolean := False;
-- Analog watchdog enable on regular channels
AWDEN : Boolean := False;
-- Resolution
RES : CR1_RES_Field := 16#0#;
-- Overrun interrupt enable
OVRIE : Boolean := False;
-- unspecified
Reserved_27_31 : HAL.UInt5 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR1_Register use record
AWDCH at 0 range 0 .. 4;
EOCIE at 0 range 5 .. 5;
AWDIE at 0 range 6 .. 6;
JEOCIE at 0 range 7 .. 7;
SCAN at 0 range 8 .. 8;
AWDSGL at 0 range 9 .. 9;
JAUTO at 0 range 10 .. 10;
DISCEN at 0 range 11 .. 11;
JDISCEN at 0 range 12 .. 12;
DISCNUM at 0 range 13 .. 15;
Reserved_16_21 at 0 range 16 .. 21;
JAWDEN at 0 range 22 .. 22;
AWDEN at 0 range 23 .. 23;
RES at 0 range 24 .. 25;
OVRIE at 0 range 26 .. 26;
Reserved_27_31 at 0 range 27 .. 31;
end record;
------------------
-- CR2_Register --
------------------
subtype CR2_JEXTSEL_Field is HAL.UInt4;
subtype CR2_JEXTEN_Field is HAL.UInt2;
subtype CR2_EXTSEL_Field is HAL.UInt4;
subtype CR2_EXTEN_Field is HAL.UInt2;
-- control register 2
type CR2_Register is record
-- A/D Converter ON / OFF
ADON : Boolean := False;
-- Continuous conversion
CONT : Boolean := False;
-- unspecified
Reserved_2_7 : HAL.UInt6 := 16#0#;
-- Direct memory access mode (for single ADC mode)
DMA : Boolean := False;
-- DMA disable selection (for single ADC mode)
DDS : Boolean := False;
-- End of conversion selection
EOCS : Boolean := False;
-- Data alignment
ALIGN : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- External event select for injected group
JEXTSEL : CR2_JEXTSEL_Field := 16#0#;
-- External trigger enable for injected channels
JEXTEN : CR2_JEXTEN_Field := 16#0#;
-- Start conversion of injected channels
JSWSTART : Boolean := False;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External event select for regular group
EXTSEL : CR2_EXTSEL_Field := 16#0#;
-- External trigger enable for regular channels
EXTEN : CR2_EXTEN_Field := 16#0#;
-- Start conversion of regular channels
SWSTART : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR2_Register use record
ADON at 0 range 0 .. 0;
CONT at 0 range 1 .. 1;
Reserved_2_7 at 0 range 2 .. 7;
DMA at 0 range 8 .. 8;
DDS at 0 range 9 .. 9;
EOCS at 0 range 10 .. 10;
ALIGN at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
JEXTSEL at 0 range 16 .. 19;
JEXTEN at 0 range 20 .. 21;
JSWSTART at 0 range 22 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EXTSEL at 0 range 24 .. 27;
EXTEN at 0 range 28 .. 29;
SWSTART at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
--------------------
-- SMPR1_Register --
--------------------
---------------
-- SMPR1.SMP --
---------------
-- SMPR1_SMP array element
subtype SMPR1_SMP_Element is HAL.UInt3;
-- SMPR1_SMP array
type SMPR1_SMP_Field_Array is array (10 .. 18) of SMPR1_SMP_Element
with Component_Size => 3, Size => 27;
-- Type definition for SMPR1_SMP
type SMPR1_SMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SMP as a value
Val : HAL.UInt27;
when True =>
-- SMP as an array
Arr : SMPR1_SMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 27;
for SMPR1_SMP_Field use record
Val at 0 range 0 .. 26;
Arr at 0 range 0 .. 26;
end record;
-- sample time register 1
type SMPR1_Register is record
-- Sample time bits
SMP : SMPR1_SMP_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_27_31 : HAL.UInt5 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SMPR1_Register use record
SMP at 0 range 0 .. 26;
Reserved_27_31 at 0 range 27 .. 31;
end record;
--------------------
-- SMPR2_Register --
--------------------
---------------
-- SMPR2.SMP --
---------------
-- SMPR2_SMP array element
subtype SMPR2_SMP_Element is HAL.UInt3;
-- SMPR2_SMP array
type SMPR2_SMP_Field_Array is array (0 .. 9) of SMPR2_SMP_Element
with Component_Size => 3, Size => 30;
-- Type definition for SMPR2_SMP
type SMPR2_SMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SMP as a value
Val : HAL.UInt30;
when True =>
-- SMP as an array
Arr : SMPR2_SMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SMPR2_SMP_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- sample time register 2
type SMPR2_Register is record
-- Sample time bits
SMP : SMPR2_SMP_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SMPR2_Register use record
SMP at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
--------------------
-- JOFR1_Register --
--------------------
subtype JOFR1_JOFFSET1_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR1_Register is record
-- Data offset for injected channel x
JOFFSET1 : JOFR1_JOFFSET1_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR1_Register use record
JOFFSET1 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
--------------------
-- JOFR2_Register --
--------------------
subtype JOFR2_JOFFSET2_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR2_Register is record
-- Data offset for injected channel x
JOFFSET2 : JOFR2_JOFFSET2_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR2_Register use record
JOFFSET2 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
--------------------
-- JOFR3_Register --
--------------------
subtype JOFR3_JOFFSET3_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR3_Register is record
-- Data offset for injected channel x
JOFFSET3 : JOFR3_JOFFSET3_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR3_Register use record
JOFFSET3 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
--------------------
-- JOFR4_Register --
--------------------
subtype JOFR4_JOFFSET4_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR4_Register is record
-- Data offset for injected channel x
JOFFSET4 : JOFR4_JOFFSET4_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR4_Register use record
JOFFSET4 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
------------------
-- HTR_Register --
------------------
subtype HTR_HT_Field is HAL.UInt12;
-- watchdog higher threshold register
type HTR_Register is record
-- Analog watchdog higher threshold
HT : HTR_HT_Field := 16#FFF#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for HTR_Register use record
HT at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
------------------
-- LTR_Register --
------------------
subtype LTR_LT_Field is HAL.UInt12;
-- watchdog lower threshold register
type LTR_Register is record
-- Analog watchdog lower threshold
LT : LTR_LT_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for LTR_Register use record
LT at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-------------------
-- SQR1_Register --
-------------------
-------------
-- SQR1.SQ --
-------------
-- SQR1_SQ array element
subtype SQR1_SQ_Element is HAL.UInt5;
-- SQR1_SQ array
type SQR1_SQ_Field_Array is array (13 .. 16) of SQR1_SQ_Element
with Component_Size => 5, Size => 20;
-- Type definition for SQR1_SQ
type SQR1_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt20;
when True =>
-- SQ as an array
Arr : SQR1_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 20;
for SQR1_SQ_Field use record
Val at 0 range 0 .. 19;
Arr at 0 range 0 .. 19;
end record;
subtype SQR1_L_Field is HAL.UInt4;
-- regular sequence register 1
type SQR1_Register is record
-- 13th conversion in regular sequence
SQ : SQR1_SQ_Field := (As_Array => False, Val => 16#0#);
-- Regular channel sequence length
L : SQR1_L_Field := 16#0#;
-- unspecified
Reserved_24_31 : HAL.Byte := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR1_Register use record
SQ at 0 range 0 .. 19;
L at 0 range 20 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-------------------
-- SQR2_Register --
-------------------
-------------
-- SQR2.SQ --
-------------
-- SQR2_SQ array element
subtype SQR2_SQ_Element is HAL.UInt5;
-- SQR2_SQ array
type SQR2_SQ_Field_Array is array (7 .. 12) of SQR2_SQ_Element
with Component_Size => 5, Size => 30;
-- Type definition for SQR2_SQ
type SQR2_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt30;
when True =>
-- SQ as an array
Arr : SQR2_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SQR2_SQ_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- regular sequence register 2
type SQR2_Register is record
-- 7th conversion in regular sequence
SQ : SQR2_SQ_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR2_Register use record
SQ at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-------------------
-- SQR3_Register --
-------------------
-------------
-- SQR3.SQ --
-------------
-- SQR3_SQ array element
subtype SQR3_SQ_Element is HAL.UInt5;
-- SQR3_SQ array
type SQR3_SQ_Field_Array is array (1 .. 6) of SQR3_SQ_Element
with Component_Size => 5, Size => 30;
-- Type definition for SQR3_SQ
type SQR3_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt30;
when True =>
-- SQ as an array
Arr : SQR3_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SQR3_SQ_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- regular sequence register 3
type SQR3_Register is record
-- 1st conversion in regular sequence
SQ : SQR3_SQ_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR3_Register use record
SQ at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-------------------
-- JSQR_Register --
-------------------
--------------
-- JSQR.JSQ --
--------------
-- JSQR_JSQ array element
subtype JSQR_JSQ_Element is HAL.UInt5;
-- JSQR_JSQ array
type JSQR_JSQ_Field_Array is array (1 .. 4) of JSQR_JSQ_Element
with Component_Size => 5, Size => 20;
-- Type definition for JSQR_JSQ
type JSQR_JSQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- JSQ as a value
Val : HAL.UInt20;
when True =>
-- JSQ as an array
Arr : JSQR_JSQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 20;
for JSQR_JSQ_Field use record
Val at 0 range 0 .. 19;
Arr at 0 range 0 .. 19;
end record;
subtype JSQR_JL_Field is HAL.UInt2;
-- injected sequence register
type JSQR_Register is record
-- 1st conversion in injected sequence
JSQ : JSQR_JSQ_Field := (As_Array => False, Val => 16#0#);
-- Injected sequence length
JL : JSQR_JL_Field := 16#0#;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JSQR_Register use record
JSQ at 0 range 0 .. 19;
JL at 0 range 20 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
------------------
-- JDR_Register --
------------------
subtype JDR1_JDATA_Field is HAL.Short;
-- injected data register x
type JDR_Register is record
-- Read-only. Injected data
JDATA : JDR1_JDATA_Field;
-- unspecified
Reserved_16_31 : HAL.Short;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JDR_Register use record
JDATA at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- DR_Register --
-----------------
subtype DR_DATA_Field is HAL.Short;
-- regular data register
type DR_Register is record
-- Read-only. Regular data
DATA : DR_DATA_Field;
-- unspecified
Reserved_16_31 : HAL.Short;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DR_Register use record
DATA at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
------------------
-- CSR_Register --
------------------
-- ADC Common status register
type CSR_Register is record
-- Read-only. Analog watchdog flag of ADC 1
AWD1 : Boolean;
-- Read-only. End of conversion of ADC 1
EOC1 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 1
JEOC1 : Boolean;
-- Read-only. Injected channel Start flag of ADC 1
JSTRT1 : Boolean;
-- Read-only. Regular channel Start flag of ADC 1
STRT1 : Boolean;
-- Read-only. Overrun flag of ADC 1
OVR1 : Boolean;
-- unspecified
Reserved_6_7 : HAL.UInt2;
-- Read-only. Analog watchdog flag of ADC 2
AWD2 : Boolean;
-- Read-only. End of conversion of ADC 2
EOC2 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 2
JEOC2 : Boolean;
-- Read-only. Injected channel Start flag of ADC 2
JSTRT2 : Boolean;
-- Read-only. Regular channel Start flag of ADC 2
STRT2 : Boolean;
-- Read-only. Overrun flag of ADC 2
OVR2 : Boolean;
-- unspecified
Reserved_14_15 : HAL.UInt2;
-- Read-only. Analog watchdog flag of ADC 3
AWD3 : Boolean;
-- Read-only. End of conversion of ADC 3
EOC3 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 3
JEOC3 : Boolean;
-- Read-only. Injected channel Start flag of ADC 3
JSTRT3 : Boolean;
-- Read-only. Regular channel Start flag of ADC 3
STRT3 : Boolean;
-- Read-only. Overrun flag of ADC3
OVR3 : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
AWD1 at 0 range 0 .. 0;
EOC1 at 0 range 1 .. 1;
JEOC1 at 0 range 2 .. 2;
JSTRT1 at 0 range 3 .. 3;
STRT1 at 0 range 4 .. 4;
OVR1 at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
AWD2 at 0 range 8 .. 8;
EOC2 at 0 range 9 .. 9;
JEOC2 at 0 range 10 .. 10;
JSTRT2 at 0 range 11 .. 11;
STRT2 at 0 range 12 .. 12;
OVR2 at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AWD3 at 0 range 16 .. 16;
EOC3 at 0 range 17 .. 17;
JEOC3 at 0 range 18 .. 18;
JSTRT3 at 0 range 19 .. 19;
STRT3 at 0 range 20 .. 20;
OVR3 at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
------------------
-- CCR_Register --
------------------
subtype CCR_MULT_Field is HAL.UInt5;
subtype CCR_DELAY_Field is HAL.UInt4;
subtype CCR_DMA_Field is HAL.UInt2;
subtype CCR_ADCPRE_Field is HAL.UInt2;
-- ADC common control register
type CCR_Register is record
-- Multi ADC mode selection
MULT : CCR_MULT_Field := 16#0#;
-- unspecified
Reserved_5_7 : HAL.UInt3 := 16#0#;
-- Delay between 2 sampling phases
DELAY_k : CCR_DELAY_Field := 16#0#;
-- unspecified
Reserved_12_12 : HAL.Bit := 16#0#;
-- DMA disable selection for multi-ADC mode
DDS : Boolean := False;
-- Direct memory access mode for multi ADC mode
DMA : CCR_DMA_Field := 16#0#;
-- ADC prescaler
ADCPRE : CCR_ADCPRE_Field := 16#0#;
-- unspecified
Reserved_18_21 : HAL.UInt4 := 16#0#;
-- VBAT enable
VBATE : Boolean := False;
-- Temperature sensor and VREFINT enable
TSVREFE : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.Byte := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CCR_Register use record
MULT at 0 range 0 .. 4;
Reserved_5_7 at 0 range 5 .. 7;
DELAY_k at 0 range 8 .. 11;
Reserved_12_12 at 0 range 12 .. 12;
DDS at 0 range 13 .. 13;
DMA at 0 range 14 .. 15;
ADCPRE at 0 range 16 .. 17;
Reserved_18_21 at 0 range 18 .. 21;
VBATE at 0 range 22 .. 22;
TSVREFE at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
------------------
-- CDR_Register --
------------------
-- CDR_DATA array element
subtype CDR_DATA_Element is HAL.Short;
-- CDR_DATA array
type CDR_DATA_Field_Array is array (1 .. 2) of CDR_DATA_Element
with Component_Size => 16, Size => 32;
-- ADC common regular data register for dual and triple modes
type CDR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DATA as a value
Val : HAL.Word;
when True =>
-- DATA as an array
Arr : CDR_DATA_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for CDR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Analog-to-digital converter
type ADC1_Peripheral is record
-- status register
SR : SR_Register;
-- control register 1
CR1 : CR1_Register;
-- control register 2
CR2 : CR2_Register;
-- sample time register 1
SMPR1 : SMPR1_Register;
-- sample time register 2
SMPR2 : SMPR2_Register;
-- injected channel data offset register x
JOFR1 : JOFR1_Register;
-- injected channel data offset register x
JOFR2 : JOFR2_Register;
-- injected channel data offset register x
JOFR3 : JOFR3_Register;
-- injected channel data offset register x
JOFR4 : JOFR4_Register;
-- watchdog higher threshold register
HTR : HTR_Register;
-- watchdog lower threshold register
LTR : LTR_Register;
-- regular sequence register 1
SQR1 : SQR1_Register;
-- regular sequence register 2
SQR2 : SQR2_Register;
-- regular sequence register 3
SQR3 : SQR3_Register;
-- injected sequence register
JSQR : JSQR_Register;
-- injected data register x
JDR1 : JDR_Register;
-- injected data register x
JDR2 : JDR_Register;
-- injected data register x
JDR3 : JDR_Register;
-- injected data register x
JDR4 : JDR_Register;
-- regular data register
DR : DR_Register;
end record
with Volatile;
for ADC1_Peripheral use record
SR at 0 range 0 .. 31;
CR1 at 4 range 0 .. 31;
CR2 at 8 range 0 .. 31;
SMPR1 at 12 range 0 .. 31;
SMPR2 at 16 range 0 .. 31;
JOFR1 at 20 range 0 .. 31;
JOFR2 at 24 range 0 .. 31;
JOFR3 at 28 range 0 .. 31;
JOFR4 at 32 range 0 .. 31;
HTR at 36 range 0 .. 31;
LTR at 40 range 0 .. 31;
SQR1 at 44 range 0 .. 31;
SQR2 at 48 range 0 .. 31;
SQR3 at 52 range 0 .. 31;
JSQR at 56 range 0 .. 31;
JDR1 at 60 range 0 .. 31;
JDR2 at 64 range 0 .. 31;
JDR3 at 68 range 0 .. 31;
JDR4 at 72 range 0 .. 31;
DR at 76 range 0 .. 31;
end record;
-- Analog-to-digital converter
ADC1_Periph : aliased ADC1_Peripheral
with Import, Address => ADC1_Base;
-- Analog-to-digital converter
ADC2_Periph : aliased ADC1_Peripheral
with Import, Address => ADC2_Base;
-- Analog-to-digital converter
ADC3_Periph : aliased ADC1_Peripheral
with Import, Address => ADC3_Base;
-- Common ADC registers
type C_ADC_Peripheral is record
-- ADC Common status register
CSR : CSR_Register;
-- ADC common control register
CCR : CCR_Register;
-- ADC common regular data register for dual and triple modes
CDR : CDR_Register;
end record
with Volatile;
for C_ADC_Peripheral use record
CSR at 0 range 0 .. 31;
CCR at 4 range 0 .. 31;
CDR at 8 range 0 .. 31;
end record;
-- Common ADC registers
C_ADC_Periph : aliased C_ADC_Peripheral
with Import, Address => C_ADC_Base;
end STM32_SVD.ADC;
|
package body Nilakantha is
procedure Iterate(Self : in out NilakanthaSeries) is
A : Long_Float;
S : Long_Float;
begin
A := Long_Float(Self.A);
S := Long_Float(Self.S);
Self.A := Self.A + 2;
Self.S := -Self.S;
Self.Pi := Self.Pi + S * (4.0 / (A * (A * (A + 3.0) + 2.0)));
end Iterate;
function GetPi(Self : NilakanthaSeries) return Long_Float is
begin
return Self.Pi;
end GetPi;
end Nilakantha;
|
-------------------------------------------------------------------------------
-- LSE -- L-System Editor
-- Author: Heziode
--
-- License:
-- MIT License
--
-- Copyright (c) 2018 Quentin Dauprat (Heziode) <Heziode@protonmail.com>
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
-------------------------------------------------------------------------------
-- @description
-- This package encompass utility packages
--
package LSE.Utils is
pragma Pure;
end LSE.Utils;
|
with Ada.Text_IO;
procedure Print_Variable (Name, Value : String) is
begin
Ada.Text_IO.Put_Line (Name & ": " & Value);
end Print_Variable;
|
with Aggr20_Pkg; use Aggr20_Pkg;
with System;
package Aggr20 is
type Rec1 is record
Address : System.Address;
end record;
Nil_Rec1 : constant Rec1 := (Address => Default_Nil_Address);
type Rec2 is record
Callback : Rec1;
end record;
Nil_Rec2 : constant Rec2 := (Callback => Nil_Rec1);
type Rec3 is record
Callback : Rec2;
end record;
procedure Proc (R : out Rec3);
end Aggr20;
|
with xcb; use xcb;
with xproto;
with GLX;
with Render;
-------------------------------------------------------------------------------
-- Compositor
-- Troodon is a compositing window manager, this package sets up the X
-- Composite extension and requests an overlay window with a GLX context that
-- we can render each window's off-screen pixbuf to.
--
-- Note that if software rendering is used, this defaults to the X Server's
-- default compositing functionality.
-------------------------------------------------------------------------------
package Compositor is
-- In automatic mode, the X server performs compositing like normal. In
-- manual mode, we do the compositing ourselves using OpenGL
type CompositeMode is (AUTOMATIC, MANUAL);
CompositorException : exception;
-- In manual composite mode, we draw all windows to this window here.
sceneWindow : xproto.xcb_window_t;
sceneDrawable : GLX.GLXDrawable;
---------------------------------------------------------------------------
-- addWindow
-- Add a window to our scene at the top of the rendering stack.
---------------------------------------------------------------------------
procedure addWindow (win : xproto.xcb_window_t);
---------------------------------------------------------------------------
-- deleteWindow
-- Remove the given window from our rendering stack.
---------------------------------------------------------------------------
procedure deleteWindow (win : xproto.xcb_window_t);
---------------------------------------------------------------------------
-- bringToTop
-- Raise the given window to the top of the rendering stack.
---------------------------------------------------------------------------
procedure bringToTop (win : xproto.xcb_window_t);
---------------------------------------------------------------------------
-- start
-- Initialize the compositor
---------------------------------------------------------------------------
procedure start (c : access xcb.xcb_connection_t;
rend : Render.Renderer;
mode : CompositeMode);
---------------------------------------------------------------------------
-- stop
-- Destroy the scene window (X11 and GLX), release the overlay, and stop
-- redirection.
---------------------------------------------------------------------------
procedure stop (c : access xcb_connection_t;
rend : Render.Renderer;
mode : Compositor.CompositeMode);
---------------------------------------------------------------------------
-- blitWindow
-- Take the off-screen pixbuf of a window and draw it to the overlay
---------------------------------------------------------------------------
procedure blitWindow (c : access xcb.xcb_connection_t;
rend : Render.Renderer;
win : xproto.xcb_window_t;
transparency : Float := 1.0);
-------------------------------------------------------------------------------
-- renderScene
-- Copy the off-screen buffers of all windows into the scene window, applying
-- transparency as necessary.
-------------------------------------------------------------------------------
procedure renderScene (c : access xcb.xcb_connection_t;
rend : Render.Renderer);
end Compositor;
|
-- Copyright 2019-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/>.
package Pkg is
type Value is private;
function Create (I : Integer) return Value;
private
type Value_Record;
type Value is access all Value_Record;
end Pkg;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018, 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 body MicroBit.Music is
----------
-- Play --
----------
procedure Play
(Pin : Pin_Id;
P : Pitch)
is
begin
if P = Rest then
-- Disable PWM on the pin by giving it a digital value
Set (Pin, False);
else
-- Enable PWM with a 50% duty cycle
Write (Pin, 512);
-- Set the period corresponding to the required pitch
Set_Analog_Period_Us (1_000_000 / Natural (P));
end if;
end Play;
----------
-- Play --
----------
procedure Play (Pin : Pin_Id; N : Note) is
begin
Play (Pin, N.P);
MicroBit.Time.Delay_Ms (N.Ms);
end Play;
----------
-- Play --
----------
procedure Play (Pin : Pin_Id; M : Melody) is
begin
for N of M loop
Play (Pin, N);
end loop;
end Play;
end MicroBit.Music;
|
-- { dg-do run }
procedure Pack12 is
type U16 is mod 2 ** 16;
type Key is record
Value : U16;
Valid : Boolean;
end record;
type Key_Buffer is record
Current, Latch : Key;
end record;
type Block is record
Keys : Key_Buffer;
Stamp : U16;
end record;
pragma Pack (Block);
My_Block : Block;
My_Stamp : constant := 16#1234#;
begin
My_Block.Stamp := My_Stamp;
My_Block.Keys.Latch := My_Block.Keys.Current;
if My_Block.Stamp /= My_Stamp then
raise Program_Error;
end if;
end;
|
-- Copyright 2017 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local url = require("url")
name = "Yahoo"
type = "scrape"
function start()
setratelimit(1)
end
function vertical(ctx, domain)
for i=0,10 do
local ok = scrape(ctx, {['url']=buildurl(domain, i)})
if not ok then
break
end
checkratelimit()
active(ctx)
end
end
function buildurl(domain, pagenum)
local next = tostring((pagenum * 10) + 1)
local query = "site:" .. domain .. " -domain:www." .. domain
local params = {
p=query,
b=next,
pz="10",
bct="0",
xargs="0",
}
return "https://search.yahoo.com/search?" .. url.build_query_string(params)
end
|
------------------------------------------------------------------------------
-- --
-- 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.Continuations.Collections is
pragma Preelaborate;
package UML_Continuation_Collections is
new AMF.Generic_Collections
(UML_Continuation,
UML_Continuation_Access);
type Set_Of_UML_Continuation is
new UML_Continuation_Collections.Set with null record;
Empty_Set_Of_UML_Continuation : constant Set_Of_UML_Continuation;
type Ordered_Set_Of_UML_Continuation is
new UML_Continuation_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Continuation : constant Ordered_Set_Of_UML_Continuation;
type Bag_Of_UML_Continuation is
new UML_Continuation_Collections.Bag with null record;
Empty_Bag_Of_UML_Continuation : constant Bag_Of_UML_Continuation;
type Sequence_Of_UML_Continuation is
new UML_Continuation_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Continuation : constant Sequence_Of_UML_Continuation;
private
Empty_Set_Of_UML_Continuation : constant Set_Of_UML_Continuation
:= (UML_Continuation_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Continuation : constant Ordered_Set_Of_UML_Continuation
:= (UML_Continuation_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Continuation : constant Bag_Of_UML_Continuation
:= (UML_Continuation_Collections.Bag with null record);
Empty_Sequence_Of_UML_Continuation : constant Sequence_Of_UML_Continuation
:= (UML_Continuation_Collections.Sequence with null record);
end AMF.UML.Continuations.Collections;
|
-- C35502H.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 'PRED' AND 'SUCC' YIELD THE CORRECT RESULTS WHEN
-- THE PREFIX IS A FORMAL DISCRETE TYPE WHOSE ACTUAL ARGUMENT IS
-- AN ENUMERATION TYPE OTHER THAN A BOOLEAN OR A CHARACTER TYPE.
-- RJW 5/27/86
WITH REPORT; USE REPORT;
PROCEDURE C35502H IS
TYPE ENUM IS (A, BC, ABC, A_B_C, ABCD);
TYPE NEWENUM IS NEW ENUM;
BEGIN
TEST ("C35502H", "CHECK THAT 'PRED' AND 'SUCC' YIELD THE " &
"CORRECT RESULTS WHEN THE PREFIX IS A " &
"FORMAL DISCRETE TYPE WHOSE ACTUAL " &
"ARGUMENT IS AN ENUMERATION TYPE OTHER THAN " &
"A CHARACTER OR A BOOLEAN TYPE" );
DECLARE
GENERIC
TYPE E IS (<>);
STR : STRING;
PROCEDURE P;
PROCEDURE P IS
SUBTYPE SE IS E RANGE E'VAL(0) .. E'VAL(1);
BEGIN
FOR I IN E'VAL (1) .. E'VAL (4) LOOP
IF SE'PRED (I) /=
E'VAL (E'POS (I) - 1) THEN
FAILED ("INCORRECT " & STR & "'PRED(" &
E'IMAGE (I) & ")" );
END IF;
END LOOP;
FOR I IN E'VAL (0) .. E'VAL (3) LOOP
IF SE'SUCC (I) /=
E'VAL (E'POS (I) + 1) THEN
FAILED ("INCORRECT " & STR & "'SUCC(" &
E'IMAGE (I) & ")" );
END IF;
END LOOP;
END P;
PROCEDURE PE IS NEW P ( ENUM, "ENUM" );
PROCEDURE PN IS NEW P ( NEWENUM, "NEWENUM" );
BEGIN
PE;
PN;
END;
RESULT;
END C35502H;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="11">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>dct_read_data</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>input_r</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>input</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>64</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>buf_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[0]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>buf_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[1]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>buf_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[2]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>buf_3</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[3]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>buf_4</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[4]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>buf_5</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[5]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>buf_6</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[6]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>buf_7</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buf[7]</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>8</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>48</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>indvar_flatten</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>r</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>c</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>c</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>exitcond_flatten</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond_flatten_fu_219_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>92</item>
<item>94</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>indvar_flatten_next</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>indvar_flatten_next_fu_225_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>95</item>
<item>97</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>17</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>3</count>
<item_version>0</item_version>
<item>98</item>
<item>99</item>
<item>100</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>exitcond</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond_fu_231_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>105</item>
<item>107</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>c_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>c_mid2_fu_237_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>108</item>
<item>109</item>
<item>110</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>r_s</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>r_s_fu_245_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>111</item>
<item>112</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>r_mid2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>r_mid2_fu_251_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>113</item>
<item>114</item>
<item>115</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>tmp_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_4_fu_259_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_263_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>118</item>
<item>119</item>
<item>121</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>tmp_s</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_s_fu_296_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>c_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>c_cast_fu_271_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>123</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_5_fu_275_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>124</item>
<item>125</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_6_fu_281_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>input_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>127</item>
<item>129</item>
<item>130</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>input_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_7_fu_286_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>16</count>
<item_version>0</item_version>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>138</item>
<item>139</item>
<item>141</item>
<item>142</item>
<item>144</item>
<item>145</item>
<item>147</item>
<item>148</item>
<item>150</item>
<item>151</item>
<item>153</item>
<item>154</item>
</oprand_edges>
<opcode>switch</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>buf_6_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>191</item>
<item>192</item>
<item>193</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>194</item>
<item>195</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>buf_5_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>185</item>
<item>186</item>
<item>187</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>188</item>
<item>189</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>buf_4_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>179</item>
<item>180</item>
<item>181</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>182</item>
<item>183</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>buf_3_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>173</item>
<item>174</item>
<item>175</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>176</item>
<item>177</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>buf_2_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>167</item>
<item>168</item>
<item>169</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>170</item>
<item>171</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>buf_1_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>161</item>
<item>162</item>
<item>163</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>164</item>
<item>165</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>buf_0_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>155</item>
<item>156</item>
<item>157</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>158</item>
<item>159</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>buf_7_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>197</item>
<item>198</item>
<item>199</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>200</item>
<item>201</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>106</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>106</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>c_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>105</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>105</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c</originalName>
<rtlName>c_1_fu_290_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>101</item>
<item>103</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name/>
<fileName>dct.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>108</lineNumber>
<contextFuncName>read_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>read_data</second>
</first>
<second>108</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_58">
<Value>
<Obj>
<type>2</type>
<id>78</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_59">
<Value>
<Obj>
<type>2</type>
<id>83</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_60">
<Value>
<Obj>
<type>2</type>
<id>93</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_61">
<Value>
<Obj>
<type>2</type>
<id>96</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_62">
<Value>
<Obj>
<type>2</type>
<id>102</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_63">
<Value>
<Obj>
<type>2</type>
<id>106</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_64">
<Value>
<Obj>
<type>2</type>
<id>120</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_65">
<Value>
<Obj>
<type>2</type>
<id>128</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_66">
<Value>
<Obj>
<type>2</type>
<id>137</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_67">
<Value>
<Obj>
<type>2</type>
<id>140</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_68">
<Value>
<Obj>
<type>2</type>
<id>143</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_69">
<Value>
<Obj>
<type>2</type>
<id>146</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_70">
<Value>
<Obj>
<type>2</type>
<id>149</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_71">
<Value>
<Obj>
<type>2</type>
<id>152</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_72">
<Obj>
<type>3</type>
<id>11</id>
<name/>
<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>10</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_73">
<Obj>
<type>3</type>
<id>18</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>6</count>
<item_version>0</item_version>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_74">
<Obj>
<type>3</type>
<id>38</id>
<name>.reset</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_75">
<Obj>
<type>3</type>
<id>42</id>
<name>branch6</name>
<fileName/>
<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>39</item>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_76">
<Obj>
<type>3</type>
<id>46</id>
<name>branch5</name>
<fileName/>
<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>43</item>
<item>44</item>
<item>45</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_77">
<Obj>
<type>3</type>
<id>50</id>
<name>branch4</name>
<fileName/>
<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>47</item>
<item>48</item>
<item>49</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_78">
<Obj>
<type>3</type>
<id>54</id>
<name>branch3</name>
<fileName/>
<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>51</item>
<item>52</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_79">
<Obj>
<type>3</type>
<id>58</id>
<name>branch2</name>
<fileName/>
<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>55</item>
<item>56</item>
<item>57</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_80">
<Obj>
<type>3</type>
<id>62</id>
<name>branch1</name>
<fileName/>
<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>59</item>
<item>60</item>
<item>61</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_81">
<Obj>
<type>3</type>
<id>66</id>
<name>branch0</name>
<fileName/>
<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>63</item>
<item>64</item>
<item>65</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_82">
<Obj>
<type>3</type>
<id>70</id>
<name>branch7</name>
<fileName/>
<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>67</item>
<item>68</item>
<item>69</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_83">
<Obj>
<type>3</type>
<id>74</id>
<name>ifBlock</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>72</item>
<item>73</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_84">
<Obj>
<type>3</type>
<id>76</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>130</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_85">
<id>77</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>79</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>80</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>81</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>82</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>85</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>87</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>89</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>91</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>99</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>100</id>
<edge_type>2</edge_type>
<source_obj>76</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>104</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_115">
<id>113</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_116">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_117">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_118">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_119">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_120">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_121">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>134</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>136</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>139</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>142</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>145</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>148</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>151</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>154</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>160</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>166</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_161">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_162">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_163">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_164">
<id>172</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_165">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_166">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_167">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_168">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_169">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_170">
<id>178</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_171">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_172">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_173">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_174">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_175">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_176">
<id>184</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_177">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_178">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_179">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_180">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_181">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_182">
<id>190</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_183">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_184">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_185">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_186">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_187">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_188">
<id>196</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_189">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_190">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_191">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_192">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_193">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_194">
<id>202</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_195">
<id>233</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_196">
<id>234</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_197">
<id>235</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_198">
<id>236</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_199">
<id>237</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_200">
<id>238</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_201">
<id>239</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_202">
<id>240</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_203">
<id>241</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_204">
<id>242</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_205">
<id>243</id>
<edge_type>2</edge_type>
<source_obj>38</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_206">
<id>244</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_207">
<id>245</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_208">
<id>246</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_209">
<id>247</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_210">
<id>248</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_211">
<id>249</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_212">
<id>250</id>
<edge_type>2</edge_type>
<source_obj>66</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_213">
<id>251</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_214">
<id>252</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>18</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_215">
<mId>1</mId>
<mTag>dct_read_data</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>66</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_216">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_217">
<mId>3</mId>
<mTag>RD_Loop_Row_RD_Loop_Col</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>11</count>
<item_version>0</item_version>
<item>18</item>
<item>38</item>
<item>42</item>
<item>46</item>
<item>50</item>
<item>54</item>
<item>58</item>
<item>62</item>
<item>66</item>
<item>70</item>
<item>74</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>64</mMinTripCount>
<mMaxTripCount>64</mMaxTripCount>
<mMinLatency>64</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_218">
<mId>4</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_219">
<states class_id="25" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_220">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_221">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_222">
<id>2</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_223">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_224">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_225">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_226">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_227">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_228">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_229">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_230">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_231">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_232">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_233">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_234">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_235">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_236">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_237">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_238">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_239">
<id>35</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_240">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_241">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_242">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_243">
<id>3</id>
<operations>
<count>33</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_244">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_245">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_246">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_247">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_248">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_249">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_250">
<id>35</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_251">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_252">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_253">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_254">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_255">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_256">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_257">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_258">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_259">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_260">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_261">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_262">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_263">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_264">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_265">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_266">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_267">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_268">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_269">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_270">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_271">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_272">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_273">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_274">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_275">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_276">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_277">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_278">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_279">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>76</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="_280">
<inState>3</inState>
<outState>2</outState>
<condition>
<id>85</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_281">
<inState>2</inState>
<outState>4</outState>
<condition>
<id>84</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>15</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_282">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>86</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>15</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_283">
<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>9</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>ap_sig_bdd_128 ( or ) </first>
<second class_id="39" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>c_1_fu_290_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>c_mid2_fu_237_p3 ( Select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>exitcond_flatten_fu_219_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>7</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>exitcond_fu_231_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>indvar_flatten_next_fu_225_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>7</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>r_mid2_fu_251_p3 ( Select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>4</second>
</item>
<item>
<first>(2P2)</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>r_s_fu_245_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>tmp_5_fu_275_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>6</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>6</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>5</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>4</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>c_reg_208</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>4</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_186</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>7</second>
</item>
<item>
<first>(2Count)</first>
<second>14</second>
</item>
<item>
<first>LUT</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>r_phi_fu_201_p4</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>4</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>r_reg_197</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>4</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>10</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>3</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>3</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_reg_ppiten_pp0_it0</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_ppiten_pp0_it1</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>c_reg_208</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>exitcond_flatten_reg_307</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>indvar_flatten_reg_186</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>7</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>r_mid2_reg_316</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>r_reg_197</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>tmp_7_reg_327</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>3</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>3</second>
</item>
</second>
</item>
</dp_register_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>8</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>c_1_fu_290_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>c_mid2_fu_237_p3 ( Select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>exitcond_flatten_fu_219_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>exitcond_fu_231_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>indvar_flatten_next_fu_225_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>r_mid2_fu_251_p3 ( Select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>r_s_fu_245_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>tmp_5_fu_275_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</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>48</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>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>11</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>1</first>
<second>2</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>1</first>
<second>2</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>2</first>
<second>2</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="_284">
<region_name>RD_Loop_Row_RD_Loop_Col</region_name>
<basic_blocks>
<count>11</count>
<item_version>0</item_version>
<item>18</item>
<item>38</item>
<item>42</item>
<item>46</item>
<item>50</item>
<item>54</item>
<item>58</item>
<item>62</item>
<item>66</item>
<item>70</item>
<item>74</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>35</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>77</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>35</item>
</second>
</item>
<item>
<first>82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>89</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>95</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>128</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>141</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>173</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>225</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>251</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>26</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>buf_0_addr_gep_fu_160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>buf_1_addr_gep_fu_147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>buf_2_addr_gep_fu_134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>buf_3_addr_gep_fu_121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>buf_4_addr_gep_fu_108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>buf_5_addr_gep_fu_95</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>buf_6_addr_gep_fu_82</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>buf_7_addr_gep_fu_173</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>c_1_fu_290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>c_cast_fu_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>c_mid2_fu_237</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>c_phi_fu_212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>exitcond_flatten_fu_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>exitcond_fu_231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>indvar_flatten_next_fu_225</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>indvar_flatten_phi_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>input_addr_gep_fu_70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>r_mid2_fu_251</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>r_phi_fu_201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>r_s_fu_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>tmp_4_fu_259</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>tmp_5_fu_275</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>tmp_6_fu_281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_7_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_fu_263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_s_fu_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</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>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="56" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="57" tracking_level="0" version="0">
<first class_id="58" tracking_level="0" version="0">
<first>buf_0</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>
<first>buf_1</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>
<first>buf_2</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>
<first>buf_3</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>
<first>buf_4</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>
<first>buf_5</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>
<first>buf_6</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>
<first>buf_7</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>
<first>input_r</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>35</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>9</count>
<item_version>0</item_version>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>327</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>331</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>9</count>
<item_version>0</item_version>
<item>
<first>c_1_reg_331</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>c_reg_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>exitcond_flatten_reg_307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>indvar_flatten_next_reg_311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>input_addr_reg_322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>r_mid2_reg_316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>r_reg_197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>tmp_7_reg_327</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>3</count>
<item_version>0</item_version>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>3</count>
<item_version>0</item_version>
<item>
<first>c_reg_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>r_reg_197</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="59" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>buf_0(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_1(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_2(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_3(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_4(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_5(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_6(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
</second>
</item>
<item>
<first>buf_7(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
</second>
</item>
<item>
<first>input_r(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>load</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>35</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="61" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="62" tracking_level="0" version="0">
<first>1</first>
<second>RAM</second>
</item>
<item>
<first>2</first>
<second>RAM</second>
</item>
<item>
<first>3</first>
<second>RAM</second>
</item>
<item>
<first>4</first>
<second>RAM</second>
</item>
<item>
<first>5</first>
<second>RAM</second>
</item>
<item>
<first>6</first>
<second>RAM</second>
</item>
<item>
<first>7</first>
<second>RAM</second>
</item>
<item>
<first>8</first>
<second>RAM</second>
</item>
<item>
<first>9</first>
<second>RAM</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
with Ada.Wide_Characters.Unicode; -- GNAT Specific.
-- with Ada.Text_IO;
package body Symbex.Lex is
package Unicode renames Ada.Wide_Characters.Unicode;
--
-- Private subprograms.
--
procedure Set_State
(Lexer : in out Lexer_t;
State : in State_Stage_t) is
begin
Lexer.State (State) := True;
end Set_State;
procedure Unset_State
(Lexer : in out Lexer_t;
State : in State_Stage_t) is
begin
Lexer.State (State) := False;
end Unset_State;
function State_Is_Set
(Lexer : in Lexer_t;
State : in State_Stage_t) return Boolean is
begin
return Lexer.State (State);
end State_Is_Set;
--
-- Return true if internal token buffer contains data.
--
function Token_Is_Nonzero_Length
(Lexer : in Lexer_t) return Boolean is
begin
-- Ada.Text_IO.Put_Line ("length: " & Natural'Image (UBW_Strings.Length (Lexer.Token_Buffer)));
return UBW_Strings.Length (Lexer.Token_Buffer) /= 0;
end Token_Is_Nonzero_Length;
--
-- Append item to internal token buffer.
--
procedure Append_To_Token
(Lexer : in out Lexer_t;
Item : in Wide_Character) is
begin
UBW_Strings.Append (Lexer.Token_Buffer, Item);
end Append_To_Token;
--
-- Finish token in buffer and assign kind Kind.
--
procedure Complete_Token
(Lexer : in out Lexer_t;
Kind : in Token_Kind_t;
Token : out Token_t) is
begin
Token := Token_t'
(Is_Valid => True,
Line_Number => Lexer.Current_Line,
Text => Lexer.Token_Buffer,
Kind => Kind);
Lexer.Token_Buffer := UBW_Strings.Null_Unbounded_Wide_String;
end Complete_Token;
--
-- Categorize Item into character class.
--
function Categorize_Character
(Item : in Wide_Character) return Character_Class_t
is
Class : Character_Class_t := Ordinary_Text;
begin
case Item is
when '(' => Class := List_Open_Delimiter;
when ')' => Class := List_Close_Delimiter;
when '"' => Class := String_Delimiter;
when ';' => Class := Comment_Delimiter;
when '\' => Class := Escape_Character;
when others =>
if Unicode.Is_Line_Terminator (Item) then
Class := Line_Break;
else
if Unicode.Is_Space (Item) then
Class := Whitespace;
end if;
end if;
end case;
return Class;
end Categorize_Character;
--
-- Public API.
--
function Initialized (Lexer : in Lexer_t) return Boolean is
begin
return Lexer.Inited;
end Initialized;
--
-- Initialize the lexer.
--
procedure Initialize_Lexer
(Lexer : out Lexer_t;
Status : out Lexer_Status_t) is
begin
Lexer := Lexer_t'
(Inited => True,
Current_Line => Line_Number_t'First,
Token_Buffer => UBW_Strings.Null_Unbounded_Wide_String,
Input_Buffer => Input_Buffer_t'(others => Wide_Character'Val (0)),
State => State_t'(others => False));
Status := Lexer_OK;
end Initialize_Lexer;
--
-- Retrieve token from input stream.
--
procedure Get_Token
(Lexer : in out Lexer_t;
Token : out Token_t;
Status : out Lexer_Status_t)
is
--
-- Stream characters via Read_Item.
--
procedure Fetch_Characters
(Lexer : in out Lexer_t;
Item : out Wide_Character;
Item_Next : out Wide_Character;
Status : out Stream_Status_t)
is
Null_Item : constant Wide_Character := Wide_Character'Val (0);
begin
if Lexer.Input_Buffer (Next) /= Null_Item then
Lexer.Input_Buffer (Current) := Lexer.Input_Buffer (Next);
Read_Item
(Item => Lexer.Input_Buffer (Next),
Status => Status);
case Status is
when Stream_EOF =>
Lexer.Input_Buffer (Next) := Null_Item;
Status := Stream_OK;
when Stream_Error => null;
when Stream_OK => null;
end case;
else
Read_Item
(Item => Lexer.Input_Buffer (Current),
Status => Status);
case Status is
when Stream_EOF => null;
when Stream_Error => null;
when Stream_OK =>
Read_Item
(Item => Lexer.Input_Buffer (Next),
Status => Status);
case Status is
when Stream_EOF =>
Lexer.Input_Buffer (Next) := Null_Item;
Status := Stream_OK;
when Stream_Error => null;
when Stream_OK => null;
end case;
end case;
end if;
Item := Lexer.Input_Buffer (Current);
Item_Next := Lexer.Input_Buffer (Next);
end Fetch_Characters;
Item : Wide_Character;
Item_Next : Wide_Character;
Stream_Status : Stream_Status_t;
begin
-- Default status.
Status := Lexer_Needs_More_Data;
Token := Invalid_Token;
-- Fetch characters from input stream.
Fetch_Characters
(Lexer => Lexer,
Item => Item,
Item_Next => Item_Next,
Status => Stream_Status);
case Stream_Status is
when Stream_OK => null;
when Stream_Error =>
Status := Lexer_Error_Stream_Error;
return;
when Stream_EOF =>
if State_Is_Set (Lexer, Inside_String) or
State_Is_Set (Lexer, Inside_Escape) then
Status := Lexer_Error_Early_EOF;
else
-- Reached upon EOF with no preceding newline/whitespace.
Status := Lexer_OK;
-- Have unfinished token?
if Token_Is_Nonzero_Length (Lexer) then
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_Symbol);
else
Append_To_Token (Lexer, 'E');
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_EOF);
end if;
end if;
return;
end case;
pragma Assert (Stream_Status = Stream_OK);
-- Process character.
case Categorize_Character (Item) is
when Comment_Delimiter =>
if State_Is_Set (Lexer, Inside_String) or
State_Is_Set (Lexer, Inside_Escape) then
Append_To_Token (Lexer, Item);
else
if not State_Is_Set (Lexer, Inside_Comment) then
Set_State (Lexer, Inside_Comment);
end if;
end if;
when Escape_Character =>
if not State_Is_Set (Lexer, Inside_Comment) then
if State_Is_Set (Lexer, Inside_String) then
if State_Is_Set (Lexer, Inside_Escape) then
Append_To_Token (Lexer, Item);
Unset_State (Lexer, Inside_Escape);
else
Set_State (Lexer, Inside_Escape);
end if;
end if;
end if;
when Line_Break =>
if State_Is_Set (Lexer, Inside_Comment) then
Unset_State (Lexer, Inside_Comment);
else
begin
-- Potential overflow.
Lexer.Current_Line := Lexer.Current_Line + 1;
if State_Is_Set (Lexer, Inside_Escape) then
Unset_State (Lexer, Inside_Escape);
end if;
if State_Is_Set (Lexer, Inside_String) then
Append_To_Token (Lexer, Item);
else
if Token_Is_Nonzero_Length (Lexer) then
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_Symbol);
end if;
end if;
exception
when Constraint_Error =>
Status := Lexer_Error_Line_Overflow;
Token := Invalid_Token;
end;
end if;
when List_Open_Delimiter =>
if not State_Is_Set (Lexer, Inside_Comment) then
Append_To_Token (Lexer, Item);
if not State_Is_Set (Lexer, Inside_String) then
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_List_Open);
end if;
end if;
when List_Close_Delimiter =>
if not State_Is_Set (Lexer, Inside_Comment) then
Append_To_Token (Lexer, Item);
if not State_Is_Set (Lexer, Inside_String) then
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_List_Close);
end if;
end if;
when String_Delimiter =>
if not State_Is_Set (Lexer, Inside_Comment) then
if State_Is_Set (Lexer, Inside_String) then
if State_Is_Set (Lexer, Inside_Escape) then
Append_To_Token (Lexer, Item);
Unset_State (Lexer, Inside_Escape);
else
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_Quoted_String);
Unset_State (Lexer, Inside_String);
end if;
else
Set_State (Lexer, Inside_String);
end if;
end if;
when Whitespace =>
if not State_Is_Set (Lexer, Inside_Comment) then
if State_Is_Set (Lexer, Inside_Escape) then
Unset_State (Lexer, Inside_Escape);
end if;
if State_Is_Set (Lexer, Inside_String) then
Append_To_Token (Lexer, Item);
else
if Token_Is_Nonzero_Length (Lexer) then
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_Symbol);
end if;
end if;
end if;
when Ordinary_Text =>
if not State_Is_Set (Lexer, Inside_Comment) then
if State_Is_Set (Lexer, Inside_Escape) then
Unset_State (Lexer, Inside_Escape);
end if;
Append_To_Token (Lexer, Item);
-- End of token if not inside a string.
case Categorize_Character (Item_Next) is
when List_Open_Delimiter | List_Close_Delimiter | String_Delimiter =>
if not State_Is_Set (Lexer, Inside_String) then
Status := Lexer_OK;
Complete_Token
(Lexer => Lexer,
Token => Token,
Kind => Token_Symbol);
end if;
when others => null;
end case;
end if;
end case;
exception
when Storage_Error =>
Status := Lexer_Error_Out_Of_Memory;
Token := Invalid_Token;
end Get_Token;
end Symbex.Lex;
|
pragma Ada_2012;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
with xcb;
with bits_stdint_uintn_h;
with xproto;
with bits_stdint_intn_h;
with xcb_render;
with System;
with Interfaces.C.Strings;
package xcb_randr is
XCB_RANDR_MAJOR_VERSION : constant := 1; -- /usr/include/xcb/randr.h:23
XCB_RANDR_MINOR_VERSION : constant := 6; -- /usr/include/xcb/randr.h:24
CONST_XCB_RANDR_BAD_OUTPUT : constant := 0; -- /usr/include/xcb/randr.h:84
CONST_XCB_RANDR_BAD_CRTC : constant := 1; -- /usr/include/xcb/randr.h:96
CONST_XCB_RANDR_BAD_MODE : constant := 2; -- /usr/include/xcb/randr.h:108
CONST_XCB_RANDR_BAD_PROVIDER : constant := 3; -- /usr/include/xcb/randr.h:120
CONST_XCB_RANDR_QUERY_VERSION : constant := 0; -- /usr/include/xcb/randr.h:183
CONST_XCB_RANDR_SET_SCREEN_CONFIG : constant := 2; -- /usr/include/xcb/randr.h:224
CONST_XCB_RANDR_SELECT_INPUT : constant := 4; -- /usr/include/xcb/randr.h:269
CONST_XCB_RANDR_GET_SCREEN_INFO : constant := 5; -- /usr/include/xcb/randr.h:291
CONST_XCB_RANDR_GET_SCREEN_SIZE_RANGE : constant := 6; -- /usr/include/xcb/randr.h:330
CONST_XCB_RANDR_SET_SCREEN_SIZE : constant := 7; -- /usr/include/xcb/randr.h:358
CONST_XCB_RANDR_GET_SCREEN_RESOURCES : constant := 8; -- /usr/include/xcb/randr.h:427
CONST_XCB_RANDR_GET_OUTPUT_INFO : constant := 9; -- /usr/include/xcb/randr.h:470
CONST_XCB_RANDR_LIST_OUTPUT_PROPERTIES : constant := 10; -- /usr/include/xcb/randr.h:512
CONST_XCB_RANDR_QUERY_OUTPUT_PROPERTY : constant := 11; -- /usr/include/xcb/randr.h:544
CONST_XCB_RANDR_CONFIGURE_OUTPUT_PROPERTY : constant := 12; -- /usr/include/xcb/randr.h:572
CONST_XCB_RANDR_CHANGE_OUTPUT_PROPERTY : constant := 13; -- /usr/include/xcb/randr.h:589
CONST_XCB_RANDR_DELETE_OUTPUT_PROPERTY : constant := 14; -- /usr/include/xcb/randr.h:608
CONST_XCB_RANDR_GET_OUTPUT_PROPERTY : constant := 15; -- /usr/include/xcb/randr.h:629
CONST_XCB_RANDR_CREATE_MODE : constant := 16; -- /usr/include/xcb/randr.h:670
CONST_XCB_RANDR_DESTROY_MODE : constant := 17; -- /usr/include/xcb/randr.h:696
CONST_XCB_RANDR_ADD_OUTPUT_MODE : constant := 18; -- /usr/include/xcb/randr.h:709
CONST_XCB_RANDR_DELETE_OUTPUT_MODE : constant := 19; -- /usr/include/xcb/randr.h:723
CONST_XCB_RANDR_GET_CRTC_INFO : constant := 20; -- /usr/include/xcb/randr.h:744
CONST_XCB_RANDR_SET_CRTC_CONFIG : constant := 21; -- /usr/include/xcb/randr.h:785
CONST_XCB_RANDR_GET_CRTC_GAMMA_SIZE : constant := 22; -- /usr/include/xcb/randr.h:824
CONST_XCB_RANDR_GET_CRTC_GAMMA : constant := 23; -- /usr/include/xcb/randr.h:856
CONST_XCB_RANDR_SET_CRTC_GAMMA : constant := 24; -- /usr/include/xcb/randr.h:881
CONST_XCB_RANDR_GET_SCREEN_RESOURCES_CURRENT : constant := 25; -- /usr/include/xcb/randr.h:903
CONST_XCB_RANDR_SET_CRTC_TRANSFORM : constant := 26; -- /usr/include/xcb/randr.h:940
CONST_XCB_RANDR_GET_CRTC_TRANSFORM : constant := 27; -- /usr/include/xcb/randr.h:963
CONST_XCB_RANDR_GET_PANNING : constant := 28; -- /usr/include/xcb/randr.h:1002
CONST_XCB_RANDR_SET_PANNING : constant := 29; -- /usr/include/xcb/randr.h:1045
CONST_XCB_RANDR_SET_OUTPUT_PRIMARY : constant := 30; -- /usr/include/xcb/randr.h:1082
CONST_XCB_RANDR_GET_OUTPUT_PRIMARY : constant := 31; -- /usr/include/xcb/randr.h:1103
CONST_XCB_RANDR_GET_PROVIDERS : constant := 32; -- /usr/include/xcb/randr.h:1134
CONST_XCB_RANDR_GET_PROVIDER_INFO : constant := 33; -- /usr/include/xcb/randr.h:1174
CONST_XCB_RANDR_SET_PROVIDER_OFFLOAD_SINK : constant := 34; -- /usr/include/xcb/randr.h:1205
CONST_XCB_RANDR_SET_PROVIDER_OUTPUT_SOURCE : constant := 35; -- /usr/include/xcb/randr.h:1220
CONST_XCB_RANDR_LIST_PROVIDER_PROPERTIES : constant := 36; -- /usr/include/xcb/randr.h:1242
CONST_XCB_RANDR_QUERY_PROVIDER_PROPERTY : constant := 37; -- /usr/include/xcb/randr.h:1274
CONST_XCB_RANDR_CONFIGURE_PROVIDER_PROPERTY : constant := 38; -- /usr/include/xcb/randr.h:1302
CONST_XCB_RANDR_CHANGE_PROVIDER_PROPERTY : constant := 39; -- /usr/include/xcb/randr.h:1319
CONST_XCB_RANDR_DELETE_PROVIDER_PROPERTY : constant := 40; -- /usr/include/xcb/randr.h:1338
CONST_XCB_RANDR_GET_PROVIDER_PROPERTY : constant := 41; -- /usr/include/xcb/randr.h:1359
CONST_XCB_RANDR_SCREEN_CHANGE_NOTIFY : constant := 0; -- /usr/include/xcb/randr.h:1393
CONST_XCB_RANDR_GET_MONITORS : constant := 42; -- /usr/include/xcb/randr.h:1585
CONST_XCB_RANDR_SET_MONITOR : constant := 43; -- /usr/include/xcb/randr.h:1613
CONST_XCB_RANDR_DELETE_MONITOR : constant := 44; -- /usr/include/xcb/randr.h:1626
CONST_XCB_RANDR_CREATE_LEASE : constant := 45; -- /usr/include/xcb/randr.h:1647
CONST_XCB_RANDR_FREE_LEASE : constant := 46; -- /usr/include/xcb/randr.h:1674
CONST_XCB_RANDR_NOTIFY : constant := 1; -- /usr/include/xcb/randr.h:1730
xcb_randr_id : aliased xcb.xcb_extension_t -- /usr/include/xcb/randr.h:26
with Import => True,
Convention => C,
External_Name => "xcb_randr_id";
subtype xcb_randr_mode_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:28
type xcb_randr_mode_iterator_t is record
data : access xcb_randr_mode_t; -- /usr/include/xcb/randr.h:34
c_rem : aliased int; -- /usr/include/xcb/randr.h:35
index : aliased int; -- /usr/include/xcb/randr.h:36
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:33
subtype xcb_randr_crtc_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:39
type xcb_randr_crtc_iterator_t is record
data : access xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:45
c_rem : aliased int; -- /usr/include/xcb/randr.h:46
index : aliased int; -- /usr/include/xcb/randr.h:47
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:44
subtype xcb_randr_output_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:50
type xcb_randr_output_iterator_t is record
data : access xcb_randr_output_t; -- /usr/include/xcb/randr.h:56
c_rem : aliased int; -- /usr/include/xcb/randr.h:57
index : aliased int; -- /usr/include/xcb/randr.h:58
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:55
subtype xcb_randr_provider_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:61
type xcb_randr_provider_iterator_t is record
data : access xcb_randr_provider_t; -- /usr/include/xcb/randr.h:67
c_rem : aliased int; -- /usr/include/xcb/randr.h:68
index : aliased int; -- /usr/include/xcb/randr.h:69
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:66
subtype xcb_randr_lease_t is bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:72
type xcb_randr_lease_iterator_t is record
data : access xcb_randr_lease_t; -- /usr/include/xcb/randr.h:78
c_rem : aliased int; -- /usr/include/xcb/randr.h:79
index : aliased int; -- /usr/include/xcb/randr.h:80
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:77
type xcb_randr_bad_output_error_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:90
error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:91
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:92
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:89
type xcb_randr_bad_crtc_error_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:102
error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:103
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:104
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:101
type xcb_randr_bad_mode_error_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:114
error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:115
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:116
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:113
type xcb_randr_bad_provider_error_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:126
error_code : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:127
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:128
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:125
subtype xcb_randr_rotation_t is unsigned;
XCB_RANDR_ROTATION_ROTATE_0 : constant unsigned := 1;
XCB_RANDR_ROTATION_ROTATE_90 : constant unsigned := 2;
XCB_RANDR_ROTATION_ROTATE_180 : constant unsigned := 4;
XCB_RANDR_ROTATION_ROTATE_270 : constant unsigned := 8;
XCB_RANDR_ROTATION_REFLECT_X : constant unsigned := 16;
XCB_RANDR_ROTATION_REFLECT_Y : constant unsigned := 32; -- /usr/include/xcb/randr.h:131
type xcb_randr_screen_size_t is record
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:144
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:145
mwidth : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:146
mheight : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:147
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:143
type xcb_randr_screen_size_iterator_t is record
data : access xcb_randr_screen_size_t; -- /usr/include/xcb/randr.h:154
c_rem : aliased int; -- /usr/include/xcb/randr.h:155
index : aliased int; -- /usr/include/xcb/randr.h:156
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:153
type xcb_randr_refresh_rates_t is record
nRates : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:163
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:162
type xcb_randr_refresh_rates_iterator_t is record
data : access xcb_randr_refresh_rates_t; -- /usr/include/xcb/randr.h:170
c_rem : aliased int; -- /usr/include/xcb/randr.h:171
index : aliased int; -- /usr/include/xcb/randr.h:172
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:169
type xcb_randr_query_version_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:179
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:178
type xcb_randr_query_version_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:189
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:190
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:191
major_version : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:192
minor_version : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:193
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:188
type xcb_randr_query_version_reply_t_array4353 is array (0 .. 15) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_query_version_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:200
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:201
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:202
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:203
major_version : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:204
minor_version : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:205
pad1 : aliased xcb_randr_query_version_reply_t_array4353; -- /usr/include/xcb/randr.h:206
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:199
type xcb_randr_set_config_t is
(XCB_RANDR_SET_CONFIG_SUCCESS,
XCB_RANDR_SET_CONFIG_INVALID_CONFIG_TIME,
XCB_RANDR_SET_CONFIG_INVALID_TIME,
XCB_RANDR_SET_CONFIG_FAILED)
with Convention => C; -- /usr/include/xcb/randr.h:209
type xcb_randr_set_screen_config_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:220
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:219
type xcb_randr_set_screen_config_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_screen_config_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:230
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:231
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:232
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:233
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:234
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:235
sizeID : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:236
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:237
rate : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:238
pad0 : aliased xcb_randr_set_screen_config_request_t_array1823; -- /usr/include/xcb/randr.h:239
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:229
type xcb_randr_set_screen_config_reply_t_array5087 is array (0 .. 9) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_screen_config_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:246
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:247
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:248
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:249
new_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:250
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:251
root : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:252
subpixel_order : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:253
pad0 : aliased xcb_randr_set_screen_config_reply_t_array5087; -- /usr/include/xcb/randr.h:254
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:245
subtype xcb_randr_notify_mask_t is unsigned;
XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE : constant unsigned := 1;
XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE : constant unsigned := 2;
XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE : constant unsigned := 4;
XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY : constant unsigned := 8;
XCB_RANDR_NOTIFY_MASK_PROVIDER_CHANGE : constant unsigned := 16;
XCB_RANDR_NOTIFY_MASK_PROVIDER_PROPERTY : constant unsigned := 32;
XCB_RANDR_NOTIFY_MASK_RESOURCE_CHANGE : constant unsigned := 64;
XCB_RANDR_NOTIFY_MASK_LEASE : constant unsigned := 128; -- /usr/include/xcb/randr.h:257
type xcb_randr_select_input_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_select_input_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:275
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:276
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:277
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:278
enable : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:279
pad0 : aliased xcb_randr_select_input_request_t_array1823; -- /usr/include/xcb/randr.h:280
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:274
type xcb_randr_get_screen_info_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:287
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:286
type xcb_randr_get_screen_info_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:297
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:298
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:299
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:300
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:296
type xcb_randr_get_screen_info_reply_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_screen_info_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:307
rotations : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:308
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:309
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:310
root : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:311
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:312
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:313
nSizes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:314
sizeID : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:315
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:316
rate : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:317
nInfo : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:318
pad0 : aliased xcb_randr_get_screen_info_reply_t_array1823; -- /usr/include/xcb/randr.h:319
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:306
type xcb_randr_get_screen_size_range_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:326
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:325
type xcb_randr_get_screen_size_range_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:336
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:337
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:338
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:339
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:335
type xcb_randr_get_screen_size_range_reply_t_array4353 is array (0 .. 15) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_screen_size_range_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:346
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:347
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:348
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:349
min_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:350
min_height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:351
max_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:352
max_height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:353
pad1 : aliased xcb_randr_get_screen_size_range_reply_t_array4353; -- /usr/include/xcb/randr.h:354
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:345
type xcb_randr_set_screen_size_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:364
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:365
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:366
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:367
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:368
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:369
mm_width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:370
mm_height : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:371
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:363
subtype xcb_randr_mode_flag_t is unsigned;
XCB_RANDR_MODE_FLAG_HSYNC_POSITIVE : constant unsigned := 1;
XCB_RANDR_MODE_FLAG_HSYNC_NEGATIVE : constant unsigned := 2;
XCB_RANDR_MODE_FLAG_VSYNC_POSITIVE : constant unsigned := 4;
XCB_RANDR_MODE_FLAG_VSYNC_NEGATIVE : constant unsigned := 8;
XCB_RANDR_MODE_FLAG_INTERLACE : constant unsigned := 16;
XCB_RANDR_MODE_FLAG_DOUBLE_SCAN : constant unsigned := 32;
XCB_RANDR_MODE_FLAG_CSYNC : constant unsigned := 64;
XCB_RANDR_MODE_FLAG_CSYNC_POSITIVE : constant unsigned := 128;
XCB_RANDR_MODE_FLAG_CSYNC_NEGATIVE : constant unsigned := 256;
XCB_RANDR_MODE_FLAG_HSKEW_PRESENT : constant unsigned := 512;
XCB_RANDR_MODE_FLAG_BCAST : constant unsigned := 1024;
XCB_RANDR_MODE_FLAG_PIXEL_MULTIPLEX : constant unsigned := 2048;
XCB_RANDR_MODE_FLAG_DOUBLE_CLOCK : constant unsigned := 4096;
XCB_RANDR_MODE_FLAG_HALVE_CLOCK : constant unsigned := 8192; -- /usr/include/xcb/randr.h:374
type xcb_randr_mode_info_t is record
id : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:395
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:396
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:397
dot_clock : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:398
hsync_start : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:399
hsync_end : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:400
htotal : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:401
hskew : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:402
vsync_start : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:403
vsync_end : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:404
vtotal : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:405
name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:406
mode_flags : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:407
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:394
type xcb_randr_mode_info_iterator_t is record
data : access xcb_randr_mode_info_t; -- /usr/include/xcb/randr.h:414
c_rem : aliased int; -- /usr/include/xcb/randr.h:415
index : aliased int; -- /usr/include/xcb/randr.h:416
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:413
type xcb_randr_get_screen_resources_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:423
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:422
type xcb_randr_get_screen_resources_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:433
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:434
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:435
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:436
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:432
type xcb_randr_get_screen_resources_reply_t_array2620 is array (0 .. 7) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_screen_resources_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:443
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:444
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:445
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:446
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:447
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:448
num_crtcs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:449
num_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:450
num_modes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:451
names_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:452
pad1 : aliased xcb_randr_get_screen_resources_reply_t_array2620; -- /usr/include/xcb/randr.h:453
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:442
type xcb_randr_connection_t is
(XCB_RANDR_CONNECTION_CONNECTED,
XCB_RANDR_CONNECTION_DISCONNECTED,
XCB_RANDR_CONNECTION_UNKNOWN)
with Convention => C; -- /usr/include/xcb/randr.h:456
type xcb_randr_get_output_info_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:466
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:465
type xcb_randr_get_output_info_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:476
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:477
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:478
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:479
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:480
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:475
type xcb_randr_get_output_info_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:487
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:488
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:489
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:490
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:491
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:492
mm_width : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:493
mm_height : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:494
connection : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:495
subpixel_order : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:496
num_crtcs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:497
num_modes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:498
num_preferred : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:499
num_clones : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:500
name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:501
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:486
type xcb_randr_list_output_properties_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:508
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:507
type xcb_randr_list_output_properties_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:518
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:519
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:520
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:521
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:517
type xcb_randr_list_output_properties_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_list_output_properties_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:528
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:529
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:530
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:531
num_atoms : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:532
pad1 : aliased xcb_randr_list_output_properties_reply_t_array2015; -- /usr/include/xcb/randr.h:533
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:527
type xcb_randr_query_output_property_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:540
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:539
type xcb_randr_query_output_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:550
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:551
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:552
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:553
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:554
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:549
type xcb_randr_query_output_property_reply_t_array5167 is array (0 .. 20) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_query_output_property_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:561
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:562
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:563
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:564
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:565
c_range : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:566
immutable : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:567
pad1 : aliased xcb_randr_query_output_property_reply_t_array5167; -- /usr/include/xcb/randr.h:568
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:560
type xcb_randr_configure_output_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_configure_output_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:578
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:579
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:580
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:581
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:582
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:583
c_range : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:584
pad0 : aliased xcb_randr_configure_output_property_request_t_array1823; -- /usr/include/xcb/randr.h:585
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:577
type xcb_randr_change_output_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_change_output_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:595
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:596
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:597
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:598
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:599
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:600
format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:601
mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:602
pad0 : aliased xcb_randr_change_output_property_request_t_array1823; -- /usr/include/xcb/randr.h:603
num_units : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:604
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:594
type xcb_randr_delete_output_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:614
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:615
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:616
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:617
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:618
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:613
type xcb_randr_get_output_property_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:625
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:624
type xcb_randr_get_output_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_output_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:635
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:636
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:637
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:638
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:639
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:640
long_offset : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:641
long_length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:642
u_delete : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:643
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:644
pad0 : aliased xcb_randr_get_output_property_request_t_array1823; -- /usr/include/xcb/randr.h:645
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:634
type xcb_randr_get_output_property_reply_t_array2180 is array (0 .. 11) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_output_property_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:652
format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:653
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:654
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:655
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:656
bytes_after : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:657
num_items : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:658
pad0 : aliased xcb_randr_get_output_property_reply_t_array2180; -- /usr/include/xcb/randr.h:659
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:651
type xcb_randr_create_mode_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:666
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:665
type xcb_randr_create_mode_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:676
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:677
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:678
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:679
mode_info : aliased xcb_randr_mode_info_t; -- /usr/include/xcb/randr.h:680
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:675
type xcb_randr_create_mode_reply_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_create_mode_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:687
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:688
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:689
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:690
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:691
pad1 : aliased xcb_randr_create_mode_reply_t_array1992; -- /usr/include/xcb/randr.h:692
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:686
type xcb_randr_destroy_mode_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:702
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:703
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:704
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:705
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:701
type xcb_randr_add_output_mode_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:715
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:716
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:717
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:718
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:719
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:714
type xcb_randr_delete_output_mode_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:729
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:730
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:731
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:732
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:733
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:728
type xcb_randr_get_crtc_info_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:740
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:739
type xcb_randr_get_crtc_info_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:750
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:751
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:752
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:753
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:754
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:749
type xcb_randr_get_crtc_info_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:761
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:762
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:763
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:764
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:765
x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:766
y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:767
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:768
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:769
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:770
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:771
rotations : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:772
num_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:773
num_possible_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:774
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:760
type xcb_randr_set_crtc_config_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:781
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:780
type xcb_randr_set_crtc_config_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_crtc_config_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:791
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:792
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:793
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:794
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:795
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:796
x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:797
y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:798
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:799
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:800
pad0 : aliased xcb_randr_set_crtc_config_request_t_array1823; -- /usr/include/xcb/randr.h:801
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:790
type xcb_randr_set_crtc_config_reply_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_crtc_config_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:808
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:809
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:810
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:811
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:812
pad0 : aliased xcb_randr_set_crtc_config_reply_t_array1992; -- /usr/include/xcb/randr.h:813
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:807
type xcb_randr_get_crtc_gamma_size_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:820
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:819
type xcb_randr_get_crtc_gamma_size_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:830
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:831
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:832
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:833
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:829
type xcb_randr_get_crtc_gamma_size_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_crtc_gamma_size_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:840
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:841
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:842
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:843
size : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:844
pad1 : aliased xcb_randr_get_crtc_gamma_size_reply_t_array2015; -- /usr/include/xcb/randr.h:845
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:839
type xcb_randr_get_crtc_gamma_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:852
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:851
type xcb_randr_get_crtc_gamma_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:862
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:863
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:864
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:865
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:861
type xcb_randr_get_crtc_gamma_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_crtc_gamma_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:872
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:873
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:874
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:875
size : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:876
pad1 : aliased xcb_randr_get_crtc_gamma_reply_t_array2015; -- /usr/include/xcb/randr.h:877
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:871
type xcb_randr_set_crtc_gamma_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_crtc_gamma_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:887
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:888
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:889
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:890
size : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:891
pad0 : aliased xcb_randr_set_crtc_gamma_request_t_array1823; -- /usr/include/xcb/randr.h:892
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:886
type xcb_randr_get_screen_resources_current_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:899
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:898
type xcb_randr_get_screen_resources_current_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:909
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:910
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:911
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:912
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:908
type xcb_randr_get_screen_resources_current_reply_t_array2620 is array (0 .. 7) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_screen_resources_current_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:919
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:920
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:921
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:922
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:923
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:924
num_crtcs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:925
num_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:926
num_modes : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:927
names_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:928
pad1 : aliased xcb_randr_get_screen_resources_current_reply_t_array2620; -- /usr/include/xcb/randr.h:929
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:918
subtype xcb_randr_transform_t is unsigned;
XCB_RANDR_TRANSFORM_UNIT : constant unsigned := 1;
XCB_RANDR_TRANSFORM_SCALE_UP : constant unsigned := 2;
XCB_RANDR_TRANSFORM_SCALE_DOWN : constant unsigned := 4;
XCB_RANDR_TRANSFORM_PROJECTIVE : constant unsigned := 8; -- /usr/include/xcb/randr.h:932
type xcb_randr_set_crtc_transform_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_set_crtc_transform_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:946
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:947
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:948
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:949
transform : aliased xcb_render.xcb_render_transform_t; -- /usr/include/xcb/randr.h:950
filter_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:951
pad0 : aliased xcb_randr_set_crtc_transform_request_t_array1823; -- /usr/include/xcb/randr.h:952
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:945
type xcb_randr_get_crtc_transform_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:959
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:958
type xcb_randr_get_crtc_transform_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:969
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:970
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:971
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:972
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:968
type xcb_randr_get_crtc_transform_reply_t_array1897 is array (0 .. 2) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_crtc_transform_reply_t_array1791 is array (0 .. 3) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_crtc_transform_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:979
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:980
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:981
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:982
pending_transform : aliased xcb_render.xcb_render_transform_t; -- /usr/include/xcb/randr.h:983
has_transforms : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:984
pad1 : aliased xcb_randr_get_crtc_transform_reply_t_array1897; -- /usr/include/xcb/randr.h:985
current_transform : aliased xcb_render.xcb_render_transform_t; -- /usr/include/xcb/randr.h:986
pad2 : aliased xcb_randr_get_crtc_transform_reply_t_array1791; -- /usr/include/xcb/randr.h:987
pending_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:988
pending_nparams : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:989
current_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:990
current_nparams : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:991
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:978
type xcb_randr_get_panning_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:998
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:997
type xcb_randr_get_panning_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1008
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1009
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1010
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:1011
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1007
type xcb_randr_get_panning_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1018
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1019
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1020
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1021
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1022
left : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1023
top : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1024
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1025
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1026
track_left : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1027
track_top : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1028
track_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1029
track_height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1030
border_left : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1031
border_top : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1032
border_right : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1033
border_bottom : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1034
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1017
type xcb_randr_set_panning_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1041
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1040
type xcb_randr_set_panning_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1051
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1052
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1053
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:1054
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1055
left : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1056
top : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1057
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1058
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1059
track_left : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1060
track_top : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1061
track_width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1062
track_height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1063
border_left : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1064
border_top : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1065
border_right : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1066
border_bottom : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1067
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1050
type xcb_randr_set_panning_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1074
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1075
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1076
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1077
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1078
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1073
type xcb_randr_set_output_primary_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1088
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1089
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1090
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1091
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:1092
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1087
type xcb_randr_get_output_primary_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1099
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1098
type xcb_randr_get_output_primary_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1109
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1110
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1111
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1112
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1108
type xcb_randr_get_output_primary_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1119
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1120
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1121
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1122
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:1123
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1118
type xcb_randr_get_providers_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1130
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1129
type xcb_randr_get_providers_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1140
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1141
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1142
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1143
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1139
type xcb_randr_get_providers_reply_t_array2771 is array (0 .. 17) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_providers_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1150
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1151
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1152
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1153
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1154
num_providers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1155
pad1 : aliased xcb_randr_get_providers_reply_t_array2771; -- /usr/include/xcb/randr.h:1156
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1149
subtype xcb_randr_provider_capability_t is unsigned;
XCB_RANDR_PROVIDER_CAPABILITY_SOURCE_OUTPUT : constant unsigned := 1;
XCB_RANDR_PROVIDER_CAPABILITY_SINK_OUTPUT : constant unsigned := 2;
XCB_RANDR_PROVIDER_CAPABILITY_SOURCE_OFFLOAD : constant unsigned := 4;
XCB_RANDR_PROVIDER_CAPABILITY_SINK_OFFLOAD : constant unsigned := 8; -- /usr/include/xcb/randr.h:1159
type xcb_randr_get_provider_info_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1170
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1169
type xcb_randr_get_provider_info_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1180
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1181
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1182
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1183
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1184
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1179
type xcb_randr_get_provider_info_reply_t_array2620 is array (0 .. 7) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_provider_info_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1191
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1192
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1193
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1194
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1195
capabilities : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1196
num_crtcs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1197
num_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1198
num_associated_providers : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1199
name_len : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1200
pad0 : aliased xcb_randr_get_provider_info_reply_t_array2620; -- /usr/include/xcb/randr.h:1201
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1190
type xcb_randr_set_provider_offload_sink_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1211
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1212
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1213
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1214
sink_provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1215
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1216
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1210
type xcb_randr_set_provider_output_source_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1226
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1227
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1228
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1229
source_provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1230
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1231
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1225
type xcb_randr_list_provider_properties_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1238
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1237
type xcb_randr_list_provider_properties_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1248
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1249
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1250
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1251
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1247
type xcb_randr_list_provider_properties_reply_t_array2015 is array (0 .. 21) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_list_provider_properties_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1258
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1259
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1260
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1261
num_atoms : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1262
pad1 : aliased xcb_randr_list_provider_properties_reply_t_array2015; -- /usr/include/xcb/randr.h:1263
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1257
type xcb_randr_query_provider_property_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1270
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1269
type xcb_randr_query_provider_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1280
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1281
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1282
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1283
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1284
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1279
type xcb_randr_query_provider_property_reply_t_array5167 is array (0 .. 20) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_query_provider_property_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1291
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1292
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1293
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1294
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1295
c_range : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1296
immutable : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1297
pad1 : aliased xcb_randr_query_provider_property_reply_t_array5167; -- /usr/include/xcb/randr.h:1298
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1290
type xcb_randr_configure_provider_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_configure_provider_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1308
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1309
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1310
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1311
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1312
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1313
c_range : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1314
pad0 : aliased xcb_randr_configure_provider_property_request_t_array1823; -- /usr/include/xcb/randr.h:1315
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1307
type xcb_randr_change_provider_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_change_provider_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1325
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1326
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1327
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1328
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1329
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1330
format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1331
mode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1332
pad0 : aliased xcb_randr_change_provider_property_request_t_array1823; -- /usr/include/xcb/randr.h:1333
num_items : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1334
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1324
type xcb_randr_delete_provider_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1344
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1345
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1346
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1347
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1348
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1343
type xcb_randr_get_provider_property_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1355
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1354
type xcb_randr_get_provider_property_request_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_provider_property_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1365
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1366
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1367
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1368
property : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1369
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1370
long_offset : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1371
long_length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1372
u_delete : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1373
pending : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1374
pad0 : aliased xcb_randr_get_provider_property_request_t_array1823; -- /usr/include/xcb/randr.h:1375
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1364
type xcb_randr_get_provider_property_reply_t_array2180 is array (0 .. 11) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_provider_property_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1382
format : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1383
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1384
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1385
c_type : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1386
bytes_after : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1387
num_items : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1388
pad0 : aliased xcb_randr_get_provider_property_reply_t_array2180; -- /usr/include/xcb/randr.h:1389
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1381
type xcb_randr_screen_change_notify_event_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1399
rotation : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1400
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1401
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1402
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1403
root : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1404
request_window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1405
sizeID : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1406
subpixel_order : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1407
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1408
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1409
mwidth : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1410
mheight : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1411
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1398
type xcb_randr_notify_t is
(XCB_RANDR_NOTIFY_CRTC_CHANGE,
XCB_RANDR_NOTIFY_OUTPUT_CHANGE,
XCB_RANDR_NOTIFY_OUTPUT_PROPERTY,
XCB_RANDR_NOTIFY_PROVIDER_CHANGE,
XCB_RANDR_NOTIFY_PROVIDER_PROPERTY,
XCB_RANDR_NOTIFY_RESOURCE_CHANGE,
XCB_RANDR_NOTIFY_LEASE)
with Convention => C; -- /usr/include/xcb/randr.h:1414
type xcb_randr_crtc_change_t_array1823 is array (0 .. 1) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_crtc_change_t is record
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1428
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1429
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:1430
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:1431
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1432
pad0 : aliased xcb_randr_crtc_change_t_array1823; -- /usr/include/xcb/randr.h:1433
x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1434
y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1435
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1436
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1437
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1427
type xcb_randr_crtc_change_iterator_t is record
data : access xcb_randr_crtc_change_t; -- /usr/include/xcb/randr.h:1444
c_rem : aliased int; -- /usr/include/xcb/randr.h:1445
index : aliased int; -- /usr/include/xcb/randr.h:1446
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1443
type xcb_randr_output_change_t is record
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1453
config_timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1454
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1455
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:1456
crtc : aliased xcb_randr_crtc_t; -- /usr/include/xcb/randr.h:1457
mode : aliased xcb_randr_mode_t; -- /usr/include/xcb/randr.h:1458
rotation : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1459
connection : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1460
subpixel_order : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1461
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1452
type xcb_randr_output_change_iterator_t is record
data : access xcb_randr_output_change_t; -- /usr/include/xcb/randr.h:1468
c_rem : aliased int; -- /usr/include/xcb/randr.h:1469
index : aliased int; -- /usr/include/xcb/randr.h:1470
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1467
type xcb_randr_output_property_t_array5387 is array (0 .. 10) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_output_property_t is record
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1477
output : aliased xcb_randr_output_t; -- /usr/include/xcb/randr.h:1478
atom : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1479
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1480
status : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1481
pad0 : aliased xcb_randr_output_property_t_array5387; -- /usr/include/xcb/randr.h:1482
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1476
type xcb_randr_output_property_iterator_t is record
data : access xcb_randr_output_property_t; -- /usr/include/xcb/randr.h:1489
c_rem : aliased int; -- /usr/include/xcb/randr.h:1490
index : aliased int; -- /usr/include/xcb/randr.h:1491
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1488
type xcb_randr_provider_change_t_array4353 is array (0 .. 15) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_provider_change_t is record
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1498
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1499
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1500
pad0 : aliased xcb_randr_provider_change_t_array4353; -- /usr/include/xcb/randr.h:1501
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1497
type xcb_randr_provider_change_iterator_t is record
data : access xcb_randr_provider_change_t; -- /usr/include/xcb/randr.h:1508
c_rem : aliased int; -- /usr/include/xcb/randr.h:1509
index : aliased int; -- /usr/include/xcb/randr.h:1510
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1507
type xcb_randr_provider_property_t_array5387 is array (0 .. 10) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_provider_property_t is record
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1517
provider : aliased xcb_randr_provider_t; -- /usr/include/xcb/randr.h:1518
atom : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1519
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1520
state : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1521
pad0 : aliased xcb_randr_provider_property_t_array5387; -- /usr/include/xcb/randr.h:1522
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1516
type xcb_randr_provider_property_iterator_t is record
data : access xcb_randr_provider_property_t; -- /usr/include/xcb/randr.h:1529
c_rem : aliased int; -- /usr/include/xcb/randr.h:1530
index : aliased int; -- /usr/include/xcb/randr.h:1531
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1528
type xcb_randr_resource_change_t_array1992 is array (0 .. 19) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_resource_change_t is record
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1538
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1539
pad0 : aliased xcb_randr_resource_change_t_array1992; -- /usr/include/xcb/randr.h:1540
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1537
type xcb_randr_resource_change_iterator_t is record
data : access xcb_randr_resource_change_t; -- /usr/include/xcb/randr.h:1547
c_rem : aliased int; -- /usr/include/xcb/randr.h:1548
index : aliased int; -- /usr/include/xcb/randr.h:1549
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1546
type xcb_randr_monitor_info_t is record
name : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1556
primary : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1557
automatic : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1558
nOutput : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1559
x : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1560
y : aliased bits_stdint_intn_h.int16_t; -- /usr/include/xcb/randr.h:1561
width : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1562
height : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1563
width_in_millimeters : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1564
height_in_millimeters : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1565
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1555
type xcb_randr_monitor_info_iterator_t is record
data : access xcb_randr_monitor_info_t; -- /usr/include/xcb/randr.h:1572
c_rem : aliased int; -- /usr/include/xcb/randr.h:1573
index : aliased int; -- /usr/include/xcb/randr.h:1574
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1571
type xcb_randr_get_monitors_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1581
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1580
type xcb_randr_get_monitors_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1591
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1592
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1593
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1594
get_active : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1595
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1590
type xcb_randr_get_monitors_reply_t_array2180 is array (0 .. 11) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_get_monitors_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1602
pad0 : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1603
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1604
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1605
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1606
nMonitors : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1607
nOutputs : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1608
pad1 : aliased xcb_randr_get_monitors_reply_t_array2180; -- /usr/include/xcb/randr.h:1609
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1601
type xcb_randr_set_monitor_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1619
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1620
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1621
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1622
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1618
type xcb_randr_delete_monitor_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1632
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1633
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1634
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1635
name : aliased xproto.xcb_atom_t; -- /usr/include/xcb/randr.h:1636
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1631
type xcb_randr_create_lease_cookie_t is record
sequence : aliased unsigned; -- /usr/include/xcb/randr.h:1643
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1642
type xcb_randr_create_lease_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1653
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1654
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1655
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1656
lid : aliased xcb_randr_lease_t; -- /usr/include/xcb/randr.h:1657
num_crtcs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1658
num_outputs : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1659
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1652
type xcb_randr_create_lease_reply_t_array2717 is array (0 .. 23) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_create_lease_reply_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1666
nfd : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1667
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1668
length : aliased bits_stdint_uintn_h.uint32_t; -- /usr/include/xcb/randr.h:1669
pad0 : aliased xcb_randr_create_lease_reply_t_array2717; -- /usr/include/xcb/randr.h:1670
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1665
type xcb_randr_free_lease_request_t is record
major_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1680
minor_opcode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1681
length : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1682
lid : aliased xcb_randr_lease_t; -- /usr/include/xcb/randr.h:1683
c_terminate : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1684
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1679
type xcb_randr_lease_notify_t_array5457 is array (0 .. 14) of aliased bits_stdint_uintn_h.uint8_t;
type xcb_randr_lease_notify_t is record
timestamp : aliased xproto.xcb_timestamp_t; -- /usr/include/xcb/randr.h:1691
window : aliased xproto.xcb_window_t; -- /usr/include/xcb/randr.h:1692
lease : aliased xcb_randr_lease_t; -- /usr/include/xcb/randr.h:1693
created : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1694
pad0 : aliased xcb_randr_lease_notify_t_array5457; -- /usr/include/xcb/randr.h:1695
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1690
type xcb_randr_lease_notify_iterator_t is record
data : access xcb_randr_lease_notify_t; -- /usr/include/xcb/randr.h:1702
c_rem : aliased int; -- /usr/include/xcb/randr.h:1703
index : aliased int; -- /usr/include/xcb/randr.h:1704
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1701
type xcb_randr_notify_data_t (discr : unsigned := 0) is record
case discr is
when 0 =>
cc : aliased xcb_randr_crtc_change_t; -- /usr/include/xcb/randr.h:1711
when 1 =>
oc : aliased xcb_randr_output_change_t; -- /usr/include/xcb/randr.h:1712
when 2 =>
op : aliased xcb_randr_output_property_t; -- /usr/include/xcb/randr.h:1713
when 3 =>
pc : aliased xcb_randr_provider_change_t; -- /usr/include/xcb/randr.h:1714
when 4 =>
pp : aliased xcb_randr_provider_property_t; -- /usr/include/xcb/randr.h:1715
when 5 =>
rc : aliased xcb_randr_resource_change_t; -- /usr/include/xcb/randr.h:1716
when others =>
lc : aliased xcb_randr_lease_notify_t; -- /usr/include/xcb/randr.h:1717
end case;
end record
with Convention => C_Pass_By_Copy,
Unchecked_Union => True; -- /usr/include/xcb/randr.h:1710
type xcb_randr_notify_data_iterator_t is record
data : access xcb_randr_notify_data_t; -- /usr/include/xcb/randr.h:1724
c_rem : aliased int; -- /usr/include/xcb/randr.h:1725
index : aliased int; -- /usr/include/xcb/randr.h:1726
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1723
type xcb_randr_notify_event_t is record
response_type : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1736
subCode : aliased bits_stdint_uintn_h.uint8_t; -- /usr/include/xcb/randr.h:1737
sequence : aliased bits_stdint_uintn_h.uint16_t; -- /usr/include/xcb/randr.h:1738
u : aliased xcb_randr_notify_data_t; -- /usr/include/xcb/randr.h:1739
end record
with Convention => C_Pass_By_Copy; -- /usr/include/xcb/randr.h:1735
procedure xcb_randr_mode_next (i : access xcb_randr_mode_iterator_t) -- /usr/include/xcb/randr.h:1751
with Import => True,
Convention => C,
External_Name => "xcb_randr_mode_next";
function xcb_randr_mode_end (i : xcb_randr_mode_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1763
with Import => True,
Convention => C,
External_Name => "xcb_randr_mode_end";
procedure xcb_randr_crtc_next (i : access xcb_randr_crtc_iterator_t) -- /usr/include/xcb/randr.h:1774
with Import => True,
Convention => C,
External_Name => "xcb_randr_crtc_next";
function xcb_randr_crtc_end (i : xcb_randr_crtc_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1786
with Import => True,
Convention => C,
External_Name => "xcb_randr_crtc_end";
procedure xcb_randr_output_next (i : access xcb_randr_output_iterator_t) -- /usr/include/xcb/randr.h:1797
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_next";
function xcb_randr_output_end (i : xcb_randr_output_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1809
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_end";
procedure xcb_randr_provider_next (i : access xcb_randr_provider_iterator_t) -- /usr/include/xcb/randr.h:1820
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_next";
function xcb_randr_provider_end (i : xcb_randr_provider_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1832
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_end";
procedure xcb_randr_lease_next (i : access xcb_randr_lease_iterator_t) -- /usr/include/xcb/randr.h:1843
with Import => True,
Convention => C,
External_Name => "xcb_randr_lease_next";
function xcb_randr_lease_end (i : xcb_randr_lease_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1855
with Import => True,
Convention => C,
External_Name => "xcb_randr_lease_end";
procedure xcb_randr_screen_size_next (i : access xcb_randr_screen_size_iterator_t) -- /usr/include/xcb/randr.h:1866
with Import => True,
Convention => C,
External_Name => "xcb_randr_screen_size_next";
function xcb_randr_screen_size_end (i : xcb_randr_screen_size_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1878
with Import => True,
Convention => C,
External_Name => "xcb_randr_screen_size_end";
function xcb_randr_refresh_rates_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:1881
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_sizeof";
function xcb_randr_refresh_rates_rates (R : access constant xcb_randr_refresh_rates_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:1884
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_rates";
function xcb_randr_refresh_rates_rates_length (R : access constant xcb_randr_refresh_rates_t) return int -- /usr/include/xcb/randr.h:1887
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_rates_length";
function xcb_randr_refresh_rates_rates_end (R : access constant xcb_randr_refresh_rates_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1890
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_rates_end";
procedure xcb_randr_refresh_rates_next (i : access xcb_randr_refresh_rates_iterator_t) -- /usr/include/xcb/randr.h:1901
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_next";
function xcb_randr_refresh_rates_end (i : xcb_randr_refresh_rates_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:1913
with Import => True,
Convention => C,
External_Name => "xcb_randr_refresh_rates_end";
function xcb_randr_query_version
(c : access xcb.xcb_connection_t;
major_version : bits_stdint_uintn_h.uint32_t;
minor_version : bits_stdint_uintn_h.uint32_t) return xcb_randr_query_version_cookie_t -- /usr/include/xcb/randr.h:1924
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_version";
function xcb_randr_query_version_unchecked
(c : access xcb.xcb_connection_t;
major_version : bits_stdint_uintn_h.uint32_t;
minor_version : bits_stdint_uintn_h.uint32_t) return xcb_randr_query_version_cookie_t -- /usr/include/xcb/randr.h:1940
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_version_unchecked";
function xcb_randr_query_version_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_query_version_cookie_t;
e : System.Address) return access xcb_randr_query_version_reply_t -- /usr/include/xcb/randr.h:1959
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_version_reply";
function xcb_randr_set_screen_config
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
timestamp : xproto.xcb_timestamp_t;
config_timestamp : xproto.xcb_timestamp_t;
sizeID : bits_stdint_uintn_h.uint16_t;
rotation : bits_stdint_uintn_h.uint16_t;
rate : bits_stdint_uintn_h.uint16_t) return xcb_randr_set_screen_config_cookie_t -- /usr/include/xcb/randr.h:1972
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_screen_config";
function xcb_randr_set_screen_config_unchecked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
timestamp : xproto.xcb_timestamp_t;
config_timestamp : xproto.xcb_timestamp_t;
sizeID : bits_stdint_uintn_h.uint16_t;
rotation : bits_stdint_uintn_h.uint16_t;
rate : bits_stdint_uintn_h.uint16_t) return xcb_randr_set_screen_config_cookie_t -- /usr/include/xcb/randr.h:1992
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_screen_config_unchecked";
function xcb_randr_set_screen_config_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_set_screen_config_cookie_t;
e : System.Address) return access xcb_randr_set_screen_config_reply_t -- /usr/include/xcb/randr.h:2015
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_screen_config_reply";
function xcb_randr_select_input_checked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
enable : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2031
with Import => True,
Convention => C,
External_Name => "xcb_randr_select_input_checked";
function xcb_randr_select_input
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
enable : bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2044
with Import => True,
Convention => C,
External_Name => "xcb_randr_select_input";
function xcb_randr_get_screen_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2049
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_sizeof";
function xcb_randr_get_screen_info (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_info_cookie_t -- /usr/include/xcb/randr.h:2060
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info";
function xcb_randr_get_screen_info_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_info_cookie_t -- /usr/include/xcb/randr.h:2075
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_unchecked";
function xcb_randr_get_screen_info_sizes (R : access constant xcb_randr_get_screen_info_reply_t) return access xcb_randr_screen_size_t -- /usr/include/xcb/randr.h:2079
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_sizes";
function xcb_randr_get_screen_info_sizes_length (R : access constant xcb_randr_get_screen_info_reply_t) return int -- /usr/include/xcb/randr.h:2082
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_sizes_length";
function xcb_randr_get_screen_info_sizes_iterator (R : access constant xcb_randr_get_screen_info_reply_t) return xcb_randr_screen_size_iterator_t -- /usr/include/xcb/randr.h:2085
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_sizes_iterator";
function xcb_randr_get_screen_info_rates_length (R : access constant xcb_randr_get_screen_info_reply_t) return int -- /usr/include/xcb/randr.h:2088
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_rates_length";
function xcb_randr_get_screen_info_rates_iterator (R : access constant xcb_randr_get_screen_info_reply_t) return xcb_randr_refresh_rates_iterator_t -- /usr/include/xcb/randr.h:2091
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_rates_iterator";
function xcb_randr_get_screen_info_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_screen_info_cookie_t;
e : System.Address) return access xcb_randr_get_screen_info_reply_t -- /usr/include/xcb/randr.h:2108
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_info_reply";
function xcb_randr_get_screen_size_range (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_size_range_cookie_t -- /usr/include/xcb/randr.h:2121
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_size_range";
function xcb_randr_get_screen_size_range_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_size_range_cookie_t -- /usr/include/xcb/randr.h:2136
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_size_range_unchecked";
function xcb_randr_get_screen_size_range_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_screen_size_range_cookie_t;
e : System.Address) return access xcb_randr_get_screen_size_range_reply_t -- /usr/include/xcb/randr.h:2154
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_size_range_reply";
function xcb_randr_set_screen_size_checked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
width : bits_stdint_uintn_h.uint16_t;
height : bits_stdint_uintn_h.uint16_t;
mm_width : bits_stdint_uintn_h.uint32_t;
mm_height : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2170
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_screen_size_checked";
function xcb_randr_set_screen_size
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
width : bits_stdint_uintn_h.uint16_t;
height : bits_stdint_uintn_h.uint16_t;
mm_width : bits_stdint_uintn_h.uint32_t;
mm_height : bits_stdint_uintn_h.uint32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2186
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_screen_size";
procedure xcb_randr_mode_info_next (i : access xcb_randr_mode_info_iterator_t) -- /usr/include/xcb/randr.h:2202
with Import => True,
Convention => C,
External_Name => "xcb_randr_mode_info_next";
function xcb_randr_mode_info_end (i : xcb_randr_mode_info_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2214
with Import => True,
Convention => C,
External_Name => "xcb_randr_mode_info_end";
function xcb_randr_get_screen_resources_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2217
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_sizeof";
function xcb_randr_get_screen_resources (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_resources_cookie_t -- /usr/include/xcb/randr.h:2228
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources";
function xcb_randr_get_screen_resources_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_resources_cookie_t -- /usr/include/xcb/randr.h:2243
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_unchecked";
function xcb_randr_get_screen_resources_crtcs (R : access constant xcb_randr_get_screen_resources_reply_t) return access xcb_randr_crtc_t -- /usr/include/xcb/randr.h:2247
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_crtcs";
function xcb_randr_get_screen_resources_crtcs_length (R : access constant xcb_randr_get_screen_resources_reply_t) return int -- /usr/include/xcb/randr.h:2250
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_crtcs_length";
function xcb_randr_get_screen_resources_crtcs_end (R : access constant xcb_randr_get_screen_resources_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2253
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_crtcs_end";
function xcb_randr_get_screen_resources_outputs (R : access constant xcb_randr_get_screen_resources_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:2256
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_outputs";
function xcb_randr_get_screen_resources_outputs_length (R : access constant xcb_randr_get_screen_resources_reply_t) return int -- /usr/include/xcb/randr.h:2259
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_outputs_length";
function xcb_randr_get_screen_resources_outputs_end (R : access constant xcb_randr_get_screen_resources_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2262
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_outputs_end";
function xcb_randr_get_screen_resources_modes (R : access constant xcb_randr_get_screen_resources_reply_t) return access xcb_randr_mode_info_t -- /usr/include/xcb/randr.h:2265
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_modes";
function xcb_randr_get_screen_resources_modes_length (R : access constant xcb_randr_get_screen_resources_reply_t) return int -- /usr/include/xcb/randr.h:2268
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_modes_length";
function xcb_randr_get_screen_resources_modes_iterator (R : access constant xcb_randr_get_screen_resources_reply_t) return xcb_randr_mode_info_iterator_t -- /usr/include/xcb/randr.h:2271
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_modes_iterator";
function xcb_randr_get_screen_resources_names (R : access constant xcb_randr_get_screen_resources_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/randr.h:2274
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_names";
function xcb_randr_get_screen_resources_names_length (R : access constant xcb_randr_get_screen_resources_reply_t) return int -- /usr/include/xcb/randr.h:2277
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_names_length";
function xcb_randr_get_screen_resources_names_end (R : access constant xcb_randr_get_screen_resources_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2280
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_names_end";
function xcb_randr_get_screen_resources_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_screen_resources_cookie_t;
e : System.Address) return access xcb_randr_get_screen_resources_reply_t -- /usr/include/xcb/randr.h:2297
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_reply";
function xcb_randr_get_output_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2302
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_sizeof";
function xcb_randr_get_output_info
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_output_info_cookie_t -- /usr/include/xcb/randr.h:2313
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info";
function xcb_randr_get_output_info_unchecked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_output_info_cookie_t -- /usr/include/xcb/randr.h:2329
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_unchecked";
function xcb_randr_get_output_info_crtcs (R : access constant xcb_randr_get_output_info_reply_t) return access xcb_randr_crtc_t -- /usr/include/xcb/randr.h:2334
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_crtcs";
function xcb_randr_get_output_info_crtcs_length (R : access constant xcb_randr_get_output_info_reply_t) return int -- /usr/include/xcb/randr.h:2337
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_crtcs_length";
function xcb_randr_get_output_info_crtcs_end (R : access constant xcb_randr_get_output_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2340
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_crtcs_end";
function xcb_randr_get_output_info_modes (R : access constant xcb_randr_get_output_info_reply_t) return access xcb_randr_mode_t -- /usr/include/xcb/randr.h:2343
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_modes";
function xcb_randr_get_output_info_modes_length (R : access constant xcb_randr_get_output_info_reply_t) return int -- /usr/include/xcb/randr.h:2346
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_modes_length";
function xcb_randr_get_output_info_modes_end (R : access constant xcb_randr_get_output_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2349
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_modes_end";
function xcb_randr_get_output_info_clones (R : access constant xcb_randr_get_output_info_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:2352
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_clones";
function xcb_randr_get_output_info_clones_length (R : access constant xcb_randr_get_output_info_reply_t) return int -- /usr/include/xcb/randr.h:2355
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_clones_length";
function xcb_randr_get_output_info_clones_end (R : access constant xcb_randr_get_output_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2358
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_clones_end";
function xcb_randr_get_output_info_name (R : access constant xcb_randr_get_output_info_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/randr.h:2361
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_name";
function xcb_randr_get_output_info_name_length (R : access constant xcb_randr_get_output_info_reply_t) return int -- /usr/include/xcb/randr.h:2364
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_name_length";
function xcb_randr_get_output_info_name_end (R : access constant xcb_randr_get_output_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2367
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_name_end";
function xcb_randr_get_output_info_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_output_info_cookie_t;
e : System.Address) return access xcb_randr_get_output_info_reply_t -- /usr/include/xcb/randr.h:2384
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_info_reply";
function xcb_randr_list_output_properties_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2389
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_sizeof";
function xcb_randr_list_output_properties (c : access xcb.xcb_connection_t; output : xcb_randr_output_t) return xcb_randr_list_output_properties_cookie_t -- /usr/include/xcb/randr.h:2400
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties";
function xcb_randr_list_output_properties_unchecked (c : access xcb.xcb_connection_t; output : xcb_randr_output_t) return xcb_randr_list_output_properties_cookie_t -- /usr/include/xcb/randr.h:2415
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_unchecked";
function xcb_randr_list_output_properties_atoms (R : access constant xcb_randr_list_output_properties_reply_t) return access xproto.xcb_atom_t -- /usr/include/xcb/randr.h:2419
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_atoms";
function xcb_randr_list_output_properties_atoms_length (R : access constant xcb_randr_list_output_properties_reply_t) return int -- /usr/include/xcb/randr.h:2422
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_atoms_length";
function xcb_randr_list_output_properties_atoms_end (R : access constant xcb_randr_list_output_properties_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2425
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_atoms_end";
function xcb_randr_list_output_properties_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_list_output_properties_cookie_t;
e : System.Address) return access xcb_randr_list_output_properties_reply_t -- /usr/include/xcb/randr.h:2442
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_output_properties_reply";
function xcb_randr_query_output_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2447
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_sizeof";
function xcb_randr_query_output_property
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t) return xcb_randr_query_output_property_cookie_t -- /usr/include/xcb/randr.h:2458
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property";
function xcb_randr_query_output_property_unchecked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t) return xcb_randr_query_output_property_cookie_t -- /usr/include/xcb/randr.h:2474
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_unchecked";
function xcb_randr_query_output_property_valid_values (R : access constant xcb_randr_query_output_property_reply_t) return access bits_stdint_intn_h.int32_t -- /usr/include/xcb/randr.h:2479
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_valid_values";
function xcb_randr_query_output_property_valid_values_length (R : access constant xcb_randr_query_output_property_reply_t) return int -- /usr/include/xcb/randr.h:2482
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_valid_values_length";
function xcb_randr_query_output_property_valid_values_end (R : access constant xcb_randr_query_output_property_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2485
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_valid_values_end";
function xcb_randr_query_output_property_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_query_output_property_cookie_t;
e : System.Address) return access xcb_randr_query_output_property_reply_t -- /usr/include/xcb/randr.h:2502
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_output_property_reply";
function xcb_randr_configure_output_property_sizeof (u_buffer : System.Address; values_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/randr.h:2507
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property_sizeof";
function xcb_randr_configure_output_property_checked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
pending : bits_stdint_uintn_h.uint8_t;
c_range : bits_stdint_uintn_h.uint8_t;
values_len : bits_stdint_uintn_h.uint32_t;
values : access bits_stdint_intn_h.int32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2522
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property_checked";
function xcb_randr_configure_output_property
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
pending : bits_stdint_uintn_h.uint8_t;
c_range : bits_stdint_uintn_h.uint8_t;
values_len : bits_stdint_uintn_h.uint32_t;
values : access bits_stdint_intn_h.int32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2539
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property";
function xcb_randr_configure_output_property_values (R : access constant xcb_randr_configure_output_property_request_t) return access bits_stdint_intn_h.int32_t -- /usr/include/xcb/randr.h:2548
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property_values";
function xcb_randr_configure_output_property_values_length (R : access constant xcb_randr_configure_output_property_request_t) return int -- /usr/include/xcb/randr.h:2551
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property_values_length";
function xcb_randr_configure_output_property_values_end (R : access constant xcb_randr_configure_output_property_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2554
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_output_property_values_end";
function xcb_randr_change_output_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2557
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property_sizeof";
function xcb_randr_change_output_property_checked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
format : bits_stdint_uintn_h.uint8_t;
mode : bits_stdint_uintn_h.uint8_t;
num_units : bits_stdint_uintn_h.uint32_t;
data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2571
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property_checked";
function xcb_randr_change_output_property
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
format : bits_stdint_uintn_h.uint8_t;
mode : bits_stdint_uintn_h.uint8_t;
num_units : bits_stdint_uintn_h.uint32_t;
data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2589
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property";
function xcb_randr_change_output_property_data (R : access constant xcb_randr_change_output_property_request_t) return System.Address -- /usr/include/xcb/randr.h:2599
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property_data";
function xcb_randr_change_output_property_data_length (R : access constant xcb_randr_change_output_property_request_t) return int -- /usr/include/xcb/randr.h:2602
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property_data_length";
function xcb_randr_change_output_property_data_end (R : access constant xcb_randr_change_output_property_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2605
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_output_property_data_end";
function xcb_randr_delete_output_property_checked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2619
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_output_property_checked";
function xcb_randr_delete_output_property
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2632
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_output_property";
function xcb_randr_get_output_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2637
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_sizeof";
function xcb_randr_get_output_property
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
long_offset : bits_stdint_uintn_h.uint32_t;
long_length : bits_stdint_uintn_h.uint32_t;
u_delete : bits_stdint_uintn_h.uint8_t;
pending : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_output_property_cookie_t -- /usr/include/xcb/randr.h:2648
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property";
function xcb_randr_get_output_property_unchecked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
long_offset : bits_stdint_uintn_h.uint32_t;
long_length : bits_stdint_uintn_h.uint32_t;
u_delete : bits_stdint_uintn_h.uint8_t;
pending : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_output_property_cookie_t -- /usr/include/xcb/randr.h:2669
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_unchecked";
function xcb_randr_get_output_property_data (R : access constant xcb_randr_get_output_property_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/randr.h:2679
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_data";
function xcb_randr_get_output_property_data_length (R : access constant xcb_randr_get_output_property_reply_t) return int -- /usr/include/xcb/randr.h:2682
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_data_length";
function xcb_randr_get_output_property_data_end (R : access constant xcb_randr_get_output_property_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2685
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_data_end";
function xcb_randr_get_output_property_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_output_property_cookie_t;
e : System.Address) return access xcb_randr_get_output_property_reply_t -- /usr/include/xcb/randr.h:2702
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_property_reply";
function xcb_randr_create_mode_sizeof (u_buffer : System.Address; name_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/randr.h:2707
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_mode_sizeof";
function xcb_randr_create_mode
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
mode_info : xcb_randr_mode_info_t;
name_len : bits_stdint_uintn_h.uint32_t;
name : Interfaces.C.Strings.chars_ptr) return xcb_randr_create_mode_cookie_t -- /usr/include/xcb/randr.h:2719
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_mode";
function xcb_randr_create_mode_unchecked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
mode_info : xcb_randr_mode_info_t;
name_len : bits_stdint_uintn_h.uint32_t;
name : Interfaces.C.Strings.chars_ptr) return xcb_randr_create_mode_cookie_t -- /usr/include/xcb/randr.h:2737
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_mode_unchecked";
function xcb_randr_create_mode_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_create_mode_cookie_t;
e : System.Address) return access xcb_randr_create_mode_reply_t -- /usr/include/xcb/randr.h:2758
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_mode_reply";
function xcb_randr_destroy_mode_checked (c : access xcb.xcb_connection_t; mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2774
with Import => True,
Convention => C,
External_Name => "xcb_randr_destroy_mode_checked";
function xcb_randr_destroy_mode (c : access xcb.xcb_connection_t; mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2786
with Import => True,
Convention => C,
External_Name => "xcb_randr_destroy_mode";
function xcb_randr_add_output_mode_checked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2801
with Import => True,
Convention => C,
External_Name => "xcb_randr_add_output_mode_checked";
function xcb_randr_add_output_mode
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2814
with Import => True,
Convention => C,
External_Name => "xcb_randr_add_output_mode";
function xcb_randr_delete_output_mode_checked
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2830
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_output_mode_checked";
function xcb_randr_delete_output_mode
(c : access xcb.xcb_connection_t;
output : xcb_randr_output_t;
mode : xcb_randr_mode_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:2843
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_output_mode";
function xcb_randr_get_crtc_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:2848
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_sizeof";
function xcb_randr_get_crtc_info
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_crtc_info_cookie_t -- /usr/include/xcb/randr.h:2859
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info";
function xcb_randr_get_crtc_info_unchecked
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_crtc_info_cookie_t -- /usr/include/xcb/randr.h:2875
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_unchecked";
function xcb_randr_get_crtc_info_outputs (R : access constant xcb_randr_get_crtc_info_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:2880
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_outputs";
function xcb_randr_get_crtc_info_outputs_length (R : access constant xcb_randr_get_crtc_info_reply_t) return int -- /usr/include/xcb/randr.h:2883
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_outputs_length";
function xcb_randr_get_crtc_info_outputs_end (R : access constant xcb_randr_get_crtc_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2886
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_outputs_end";
function xcb_randr_get_crtc_info_possible (R : access constant xcb_randr_get_crtc_info_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:2889
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_possible";
function xcb_randr_get_crtc_info_possible_length (R : access constant xcb_randr_get_crtc_info_reply_t) return int -- /usr/include/xcb/randr.h:2892
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_possible_length";
function xcb_randr_get_crtc_info_possible_end (R : access constant xcb_randr_get_crtc_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:2895
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_possible_end";
function xcb_randr_get_crtc_info_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_crtc_info_cookie_t;
e : System.Address) return access xcb_randr_get_crtc_info_reply_t -- /usr/include/xcb/randr.h:2912
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_info_reply";
function xcb_randr_set_crtc_config_sizeof (u_buffer : System.Address; outputs_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/randr.h:2917
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_config_sizeof";
function xcb_randr_set_crtc_config
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
timestamp : xproto.xcb_timestamp_t;
config_timestamp : xproto.xcb_timestamp_t;
x : bits_stdint_intn_h.int16_t;
y : bits_stdint_intn_h.int16_t;
mode : xcb_randr_mode_t;
rotation : bits_stdint_uintn_h.uint16_t;
outputs_len : bits_stdint_uintn_h.uint32_t;
outputs : access xcb_randr_output_t) return xcb_randr_set_crtc_config_cookie_t -- /usr/include/xcb/randr.h:2929
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_config";
function xcb_randr_set_crtc_config_unchecked
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
timestamp : xproto.xcb_timestamp_t;
config_timestamp : xproto.xcb_timestamp_t;
x : bits_stdint_intn_h.int16_t;
y : bits_stdint_intn_h.int16_t;
mode : xcb_randr_mode_t;
rotation : bits_stdint_uintn_h.uint16_t;
outputs_len : bits_stdint_uintn_h.uint32_t;
outputs : access xcb_randr_output_t) return xcb_randr_set_crtc_config_cookie_t -- /usr/include/xcb/randr.h:2952
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_config_unchecked";
function xcb_randr_set_crtc_config_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_set_crtc_config_cookie_t;
e : System.Address) return access xcb_randr_set_crtc_config_reply_t -- /usr/include/xcb/randr.h:2978
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_config_reply";
function xcb_randr_get_crtc_gamma_size (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_gamma_size_cookie_t -- /usr/include/xcb/randr.h:2991
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_size";
function xcb_randr_get_crtc_gamma_size_unchecked (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_gamma_size_cookie_t -- /usr/include/xcb/randr.h:3006
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_size_unchecked";
function xcb_randr_get_crtc_gamma_size_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_crtc_gamma_size_cookie_t;
e : System.Address) return access xcb_randr_get_crtc_gamma_size_reply_t -- /usr/include/xcb/randr.h:3024
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_size_reply";
function xcb_randr_get_crtc_gamma_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3029
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_sizeof";
function xcb_randr_get_crtc_gamma (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_gamma_cookie_t -- /usr/include/xcb/randr.h:3040
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma";
function xcb_randr_get_crtc_gamma_unchecked (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_gamma_cookie_t -- /usr/include/xcb/randr.h:3055
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_unchecked";
function xcb_randr_get_crtc_gamma_red (R : access constant xcb_randr_get_crtc_gamma_reply_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3059
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_red";
function xcb_randr_get_crtc_gamma_red_length (R : access constant xcb_randr_get_crtc_gamma_reply_t) return int -- /usr/include/xcb/randr.h:3062
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_red_length";
function xcb_randr_get_crtc_gamma_red_end (R : access constant xcb_randr_get_crtc_gamma_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3065
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_red_end";
function xcb_randr_get_crtc_gamma_green (R : access constant xcb_randr_get_crtc_gamma_reply_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3068
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_green";
function xcb_randr_get_crtc_gamma_green_length (R : access constant xcb_randr_get_crtc_gamma_reply_t) return int -- /usr/include/xcb/randr.h:3071
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_green_length";
function xcb_randr_get_crtc_gamma_green_end (R : access constant xcb_randr_get_crtc_gamma_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3074
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_green_end";
function xcb_randr_get_crtc_gamma_blue (R : access constant xcb_randr_get_crtc_gamma_reply_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3077
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_blue";
function xcb_randr_get_crtc_gamma_blue_length (R : access constant xcb_randr_get_crtc_gamma_reply_t) return int -- /usr/include/xcb/randr.h:3080
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_blue_length";
function xcb_randr_get_crtc_gamma_blue_end (R : access constant xcb_randr_get_crtc_gamma_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3083
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_blue_end";
function xcb_randr_get_crtc_gamma_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_crtc_gamma_cookie_t;
e : System.Address) return access xcb_randr_get_crtc_gamma_reply_t -- /usr/include/xcb/randr.h:3100
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_gamma_reply";
function xcb_randr_set_crtc_gamma_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3105
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_sizeof";
function xcb_randr_set_crtc_gamma_checked
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
size : bits_stdint_uintn_h.uint16_t;
red : access bits_stdint_uintn_h.uint16_t;
green : access bits_stdint_uintn_h.uint16_t;
blue : access bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3119
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_checked";
function xcb_randr_set_crtc_gamma
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
size : bits_stdint_uintn_h.uint16_t;
red : access bits_stdint_uintn_h.uint16_t;
green : access bits_stdint_uintn_h.uint16_t;
blue : access bits_stdint_uintn_h.uint16_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3135
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma";
function xcb_randr_set_crtc_gamma_red (R : access constant xcb_randr_set_crtc_gamma_request_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3143
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_red";
function xcb_randr_set_crtc_gamma_red_length (R : access constant xcb_randr_set_crtc_gamma_request_t) return int -- /usr/include/xcb/randr.h:3146
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_red_length";
function xcb_randr_set_crtc_gamma_red_end (R : access constant xcb_randr_set_crtc_gamma_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3149
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_red_end";
function xcb_randr_set_crtc_gamma_green (R : access constant xcb_randr_set_crtc_gamma_request_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3152
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_green";
function xcb_randr_set_crtc_gamma_green_length (R : access constant xcb_randr_set_crtc_gamma_request_t) return int -- /usr/include/xcb/randr.h:3155
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_green_length";
function xcb_randr_set_crtc_gamma_green_end (R : access constant xcb_randr_set_crtc_gamma_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3158
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_green_end";
function xcb_randr_set_crtc_gamma_blue (R : access constant xcb_randr_set_crtc_gamma_request_t) return access bits_stdint_uintn_h.uint16_t -- /usr/include/xcb/randr.h:3161
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_blue";
function xcb_randr_set_crtc_gamma_blue_length (R : access constant xcb_randr_set_crtc_gamma_request_t) return int -- /usr/include/xcb/randr.h:3164
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_blue_length";
function xcb_randr_set_crtc_gamma_blue_end (R : access constant xcb_randr_set_crtc_gamma_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3167
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_gamma_blue_end";
function xcb_randr_get_screen_resources_current_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3170
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_sizeof";
function xcb_randr_get_screen_resources_current (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_resources_current_cookie_t -- /usr/include/xcb/randr.h:3181
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current";
function xcb_randr_get_screen_resources_current_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_screen_resources_current_cookie_t -- /usr/include/xcb/randr.h:3196
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_unchecked";
function xcb_randr_get_screen_resources_current_crtcs (R : access constant xcb_randr_get_screen_resources_current_reply_t) return access xcb_randr_crtc_t -- /usr/include/xcb/randr.h:3200
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_crtcs";
function xcb_randr_get_screen_resources_current_crtcs_length (R : access constant xcb_randr_get_screen_resources_current_reply_t) return int -- /usr/include/xcb/randr.h:3203
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_crtcs_length";
function xcb_randr_get_screen_resources_current_crtcs_end (R : access constant xcb_randr_get_screen_resources_current_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3206
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_crtcs_end";
function xcb_randr_get_screen_resources_current_outputs (R : access constant xcb_randr_get_screen_resources_current_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:3209
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_outputs";
function xcb_randr_get_screen_resources_current_outputs_length (R : access constant xcb_randr_get_screen_resources_current_reply_t) return int -- /usr/include/xcb/randr.h:3212
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_outputs_length";
function xcb_randr_get_screen_resources_current_outputs_end (R : access constant xcb_randr_get_screen_resources_current_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3215
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_outputs_end";
function xcb_randr_get_screen_resources_current_modes (R : access constant xcb_randr_get_screen_resources_current_reply_t) return access xcb_randr_mode_info_t -- /usr/include/xcb/randr.h:3218
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_modes";
function xcb_randr_get_screen_resources_current_modes_length (R : access constant xcb_randr_get_screen_resources_current_reply_t) return int -- /usr/include/xcb/randr.h:3221
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_modes_length";
function xcb_randr_get_screen_resources_current_modes_iterator (R : access constant xcb_randr_get_screen_resources_current_reply_t) return xcb_randr_mode_info_iterator_t -- /usr/include/xcb/randr.h:3224
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_modes_iterator";
function xcb_randr_get_screen_resources_current_names (R : access constant xcb_randr_get_screen_resources_current_reply_t) return access bits_stdint_uintn_h.uint8_t -- /usr/include/xcb/randr.h:3227
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_names";
function xcb_randr_get_screen_resources_current_names_length (R : access constant xcb_randr_get_screen_resources_current_reply_t) return int -- /usr/include/xcb/randr.h:3230
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_names_length";
function xcb_randr_get_screen_resources_current_names_end (R : access constant xcb_randr_get_screen_resources_current_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3233
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_names_end";
function xcb_randr_get_screen_resources_current_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_screen_resources_current_cookie_t;
e : System.Address) return access xcb_randr_get_screen_resources_current_reply_t -- /usr/include/xcb/randr.h:3250
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_screen_resources_current_reply";
function xcb_randr_set_crtc_transform_sizeof (u_buffer : System.Address; filter_params_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/randr.h:3255
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_sizeof";
function xcb_randr_set_crtc_transform_checked
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
transform : xcb_render.xcb_render_transform_t;
filter_len : bits_stdint_uintn_h.uint16_t;
filter_name : Interfaces.C.Strings.chars_ptr;
filter_params_len : bits_stdint_uintn_h.uint32_t;
filter_params : access xcb_render.xcb_render_fixed_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3270
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_checked";
function xcb_randr_set_crtc_transform
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
transform : xcb_render.xcb_render_transform_t;
filter_len : bits_stdint_uintn_h.uint16_t;
filter_name : Interfaces.C.Strings.chars_ptr;
filter_params_len : bits_stdint_uintn_h.uint32_t;
filter_params : access xcb_render.xcb_render_fixed_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3287
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform";
function xcb_randr_set_crtc_transform_filter_name (R : access constant xcb_randr_set_crtc_transform_request_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/randr.h:3296
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_name";
function xcb_randr_set_crtc_transform_filter_name_length (R : access constant xcb_randr_set_crtc_transform_request_t) return int -- /usr/include/xcb/randr.h:3299
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_name_length";
function xcb_randr_set_crtc_transform_filter_name_end (R : access constant xcb_randr_set_crtc_transform_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3302
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_name_end";
function xcb_randr_set_crtc_transform_filter_params (R : access constant xcb_randr_set_crtc_transform_request_t) return access xcb_render.xcb_render_fixed_t -- /usr/include/xcb/randr.h:3305
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_params";
function xcb_randr_set_crtc_transform_filter_params_length (R : access constant xcb_randr_set_crtc_transform_request_t) return int -- /usr/include/xcb/randr.h:3308
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_params_length";
function xcb_randr_set_crtc_transform_filter_params_end (R : access constant xcb_randr_set_crtc_transform_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3311
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_crtc_transform_filter_params_end";
function xcb_randr_get_crtc_transform_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3314
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_sizeof";
function xcb_randr_get_crtc_transform (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_transform_cookie_t -- /usr/include/xcb/randr.h:3325
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform";
function xcb_randr_get_crtc_transform_unchecked (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_crtc_transform_cookie_t -- /usr/include/xcb/randr.h:3340
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_unchecked";
function xcb_randr_get_crtc_transform_pending_filter_name (R : access constant xcb_randr_get_crtc_transform_reply_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/randr.h:3344
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_filter_name";
function xcb_randr_get_crtc_transform_pending_filter_name_length (R : access constant xcb_randr_get_crtc_transform_reply_t) return int -- /usr/include/xcb/randr.h:3347
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_filter_name_length";
function xcb_randr_get_crtc_transform_pending_filter_name_end (R : access constant xcb_randr_get_crtc_transform_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3350
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_filter_name_end";
function xcb_randr_get_crtc_transform_pending_params (R : access constant xcb_randr_get_crtc_transform_reply_t) return access xcb_render.xcb_render_fixed_t -- /usr/include/xcb/randr.h:3353
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_params";
function xcb_randr_get_crtc_transform_pending_params_length (R : access constant xcb_randr_get_crtc_transform_reply_t) return int -- /usr/include/xcb/randr.h:3356
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_params_length";
function xcb_randr_get_crtc_transform_pending_params_end (R : access constant xcb_randr_get_crtc_transform_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3359
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_pending_params_end";
function xcb_randr_get_crtc_transform_current_filter_name (R : access constant xcb_randr_get_crtc_transform_reply_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/randr.h:3362
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_filter_name";
function xcb_randr_get_crtc_transform_current_filter_name_length (R : access constant xcb_randr_get_crtc_transform_reply_t) return int -- /usr/include/xcb/randr.h:3365
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_filter_name_length";
function xcb_randr_get_crtc_transform_current_filter_name_end (R : access constant xcb_randr_get_crtc_transform_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3368
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_filter_name_end";
function xcb_randr_get_crtc_transform_current_params (R : access constant xcb_randr_get_crtc_transform_reply_t) return access xcb_render.xcb_render_fixed_t -- /usr/include/xcb/randr.h:3371
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_params";
function xcb_randr_get_crtc_transform_current_params_length (R : access constant xcb_randr_get_crtc_transform_reply_t) return int -- /usr/include/xcb/randr.h:3374
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_params_length";
function xcb_randr_get_crtc_transform_current_params_end (R : access constant xcb_randr_get_crtc_transform_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3377
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_current_params_end";
function xcb_randr_get_crtc_transform_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_crtc_transform_cookie_t;
e : System.Address) return access xcb_randr_get_crtc_transform_reply_t -- /usr/include/xcb/randr.h:3394
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_crtc_transform_reply";
function xcb_randr_get_panning (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_panning_cookie_t -- /usr/include/xcb/randr.h:3407
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_panning";
function xcb_randr_get_panning_unchecked (c : access xcb.xcb_connection_t; crtc : xcb_randr_crtc_t) return xcb_randr_get_panning_cookie_t -- /usr/include/xcb/randr.h:3422
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_panning_unchecked";
function xcb_randr_get_panning_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_panning_cookie_t;
e : System.Address) return access xcb_randr_get_panning_reply_t -- /usr/include/xcb/randr.h:3440
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_panning_reply";
function xcb_randr_set_panning
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
timestamp : xproto.xcb_timestamp_t;
left : bits_stdint_uintn_h.uint16_t;
top : bits_stdint_uintn_h.uint16_t;
width : bits_stdint_uintn_h.uint16_t;
height : bits_stdint_uintn_h.uint16_t;
track_left : bits_stdint_uintn_h.uint16_t;
track_top : bits_stdint_uintn_h.uint16_t;
track_width : bits_stdint_uintn_h.uint16_t;
track_height : bits_stdint_uintn_h.uint16_t;
border_left : bits_stdint_intn_h.int16_t;
border_top : bits_stdint_intn_h.int16_t;
border_right : bits_stdint_intn_h.int16_t;
border_bottom : bits_stdint_intn_h.int16_t) return xcb_randr_set_panning_cookie_t -- /usr/include/xcb/randr.h:3453
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_panning";
function xcb_randr_set_panning_unchecked
(c : access xcb.xcb_connection_t;
crtc : xcb_randr_crtc_t;
timestamp : xproto.xcb_timestamp_t;
left : bits_stdint_uintn_h.uint16_t;
top : bits_stdint_uintn_h.uint16_t;
width : bits_stdint_uintn_h.uint16_t;
height : bits_stdint_uintn_h.uint16_t;
track_left : bits_stdint_uintn_h.uint16_t;
track_top : bits_stdint_uintn_h.uint16_t;
track_width : bits_stdint_uintn_h.uint16_t;
track_height : bits_stdint_uintn_h.uint16_t;
border_left : bits_stdint_intn_h.int16_t;
border_top : bits_stdint_intn_h.int16_t;
border_right : bits_stdint_intn_h.int16_t;
border_bottom : bits_stdint_intn_h.int16_t) return xcb_randr_set_panning_cookie_t -- /usr/include/xcb/randr.h:3481
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_panning_unchecked";
function xcb_randr_set_panning_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_set_panning_cookie_t;
e : System.Address) return access xcb_randr_set_panning_reply_t -- /usr/include/xcb/randr.h:3512
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_panning_reply";
function xcb_randr_set_output_primary_checked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
output : xcb_randr_output_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3528
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_output_primary_checked";
function xcb_randr_set_output_primary
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
output : xcb_randr_output_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3541
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_output_primary";
function xcb_randr_get_output_primary (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_output_primary_cookie_t -- /usr/include/xcb/randr.h:3554
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_primary";
function xcb_randr_get_output_primary_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_output_primary_cookie_t -- /usr/include/xcb/randr.h:3569
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_primary_unchecked";
function xcb_randr_get_output_primary_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_output_primary_cookie_t;
e : System.Address) return access xcb_randr_get_output_primary_reply_t -- /usr/include/xcb/randr.h:3587
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_output_primary_reply";
function xcb_randr_get_providers_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3592
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_sizeof";
function xcb_randr_get_providers (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_providers_cookie_t -- /usr/include/xcb/randr.h:3603
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers";
function xcb_randr_get_providers_unchecked (c : access xcb.xcb_connection_t; window : xproto.xcb_window_t) return xcb_randr_get_providers_cookie_t -- /usr/include/xcb/randr.h:3618
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_unchecked";
function xcb_randr_get_providers_providers (R : access constant xcb_randr_get_providers_reply_t) return access xcb_randr_provider_t -- /usr/include/xcb/randr.h:3622
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_providers";
function xcb_randr_get_providers_providers_length (R : access constant xcb_randr_get_providers_reply_t) return int -- /usr/include/xcb/randr.h:3625
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_providers_length";
function xcb_randr_get_providers_providers_end (R : access constant xcb_randr_get_providers_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3628
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_providers_end";
function xcb_randr_get_providers_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_providers_cookie_t;
e : System.Address) return access xcb_randr_get_providers_reply_t -- /usr/include/xcb/randr.h:3645
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_providers_reply";
function xcb_randr_get_provider_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3650
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_sizeof";
function xcb_randr_get_provider_info
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_provider_info_cookie_t -- /usr/include/xcb/randr.h:3661
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info";
function xcb_randr_get_provider_info_unchecked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb_randr_get_provider_info_cookie_t -- /usr/include/xcb/randr.h:3677
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_unchecked";
function xcb_randr_get_provider_info_crtcs (R : access constant xcb_randr_get_provider_info_reply_t) return access xcb_randr_crtc_t -- /usr/include/xcb/randr.h:3682
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_crtcs";
function xcb_randr_get_provider_info_crtcs_length (R : access constant xcb_randr_get_provider_info_reply_t) return int -- /usr/include/xcb/randr.h:3685
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_crtcs_length";
function xcb_randr_get_provider_info_crtcs_end (R : access constant xcb_randr_get_provider_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3688
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_crtcs_end";
function xcb_randr_get_provider_info_outputs (R : access constant xcb_randr_get_provider_info_reply_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:3691
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_outputs";
function xcb_randr_get_provider_info_outputs_length (R : access constant xcb_randr_get_provider_info_reply_t) return int -- /usr/include/xcb/randr.h:3694
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_outputs_length";
function xcb_randr_get_provider_info_outputs_end (R : access constant xcb_randr_get_provider_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3697
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_outputs_end";
function xcb_randr_get_provider_info_associated_providers (R : access constant xcb_randr_get_provider_info_reply_t) return access xcb_randr_provider_t -- /usr/include/xcb/randr.h:3700
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_providers";
function xcb_randr_get_provider_info_associated_providers_length (R : access constant xcb_randr_get_provider_info_reply_t) return int -- /usr/include/xcb/randr.h:3703
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_providers_length";
function xcb_randr_get_provider_info_associated_providers_end (R : access constant xcb_randr_get_provider_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3706
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_providers_end";
function xcb_randr_get_provider_info_associated_capability (R : access constant xcb_randr_get_provider_info_reply_t) return access bits_stdint_uintn_h.uint32_t -- /usr/include/xcb/randr.h:3709
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_capability";
function xcb_randr_get_provider_info_associated_capability_length (R : access constant xcb_randr_get_provider_info_reply_t) return int -- /usr/include/xcb/randr.h:3712
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_capability_length";
function xcb_randr_get_provider_info_associated_capability_end (R : access constant xcb_randr_get_provider_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3715
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_associated_capability_end";
function xcb_randr_get_provider_info_name (R : access constant xcb_randr_get_provider_info_reply_t) return Interfaces.C.Strings.chars_ptr -- /usr/include/xcb/randr.h:3718
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_name";
function xcb_randr_get_provider_info_name_length (R : access constant xcb_randr_get_provider_info_reply_t) return int -- /usr/include/xcb/randr.h:3721
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_name_length";
function xcb_randr_get_provider_info_name_end (R : access constant xcb_randr_get_provider_info_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3724
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_name_end";
function xcb_randr_get_provider_info_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_provider_info_cookie_t;
e : System.Address) return access xcb_randr_get_provider_info_reply_t -- /usr/include/xcb/randr.h:3741
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_info_reply";
function xcb_randr_set_provider_offload_sink_checked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
sink_provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3757
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_provider_offload_sink_checked";
function xcb_randr_set_provider_offload_sink
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
sink_provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3771
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_provider_offload_sink";
function xcb_randr_set_provider_output_source_checked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
source_provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3788
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_provider_output_source_checked";
function xcb_randr_set_provider_output_source
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
source_provider : xcb_randr_provider_t;
config_timestamp : xproto.xcb_timestamp_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3802
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_provider_output_source";
function xcb_randr_list_provider_properties_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3808
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_sizeof";
function xcb_randr_list_provider_properties (c : access xcb.xcb_connection_t; provider : xcb_randr_provider_t) return xcb_randr_list_provider_properties_cookie_t -- /usr/include/xcb/randr.h:3819
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties";
function xcb_randr_list_provider_properties_unchecked (c : access xcb.xcb_connection_t; provider : xcb_randr_provider_t) return xcb_randr_list_provider_properties_cookie_t -- /usr/include/xcb/randr.h:3834
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_unchecked";
function xcb_randr_list_provider_properties_atoms (R : access constant xcb_randr_list_provider_properties_reply_t) return access xproto.xcb_atom_t -- /usr/include/xcb/randr.h:3838
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_atoms";
function xcb_randr_list_provider_properties_atoms_length (R : access constant xcb_randr_list_provider_properties_reply_t) return int -- /usr/include/xcb/randr.h:3841
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_atoms_length";
function xcb_randr_list_provider_properties_atoms_end (R : access constant xcb_randr_list_provider_properties_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3844
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_atoms_end";
function xcb_randr_list_provider_properties_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_list_provider_properties_cookie_t;
e : System.Address) return access xcb_randr_list_provider_properties_reply_t -- /usr/include/xcb/randr.h:3861
with Import => True,
Convention => C,
External_Name => "xcb_randr_list_provider_properties_reply";
function xcb_randr_query_provider_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3866
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_sizeof";
function xcb_randr_query_provider_property
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t) return xcb_randr_query_provider_property_cookie_t -- /usr/include/xcb/randr.h:3877
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property";
function xcb_randr_query_provider_property_unchecked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t) return xcb_randr_query_provider_property_cookie_t -- /usr/include/xcb/randr.h:3893
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_unchecked";
function xcb_randr_query_provider_property_valid_values (R : access constant xcb_randr_query_provider_property_reply_t) return access bits_stdint_intn_h.int32_t -- /usr/include/xcb/randr.h:3898
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_valid_values";
function xcb_randr_query_provider_property_valid_values_length (R : access constant xcb_randr_query_provider_property_reply_t) return int -- /usr/include/xcb/randr.h:3901
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_valid_values_length";
function xcb_randr_query_provider_property_valid_values_end (R : access constant xcb_randr_query_provider_property_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3904
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_valid_values_end";
function xcb_randr_query_provider_property_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_query_provider_property_cookie_t;
e : System.Address) return access xcb_randr_query_provider_property_reply_t -- /usr/include/xcb/randr.h:3921
with Import => True,
Convention => C,
External_Name => "xcb_randr_query_provider_property_reply";
function xcb_randr_configure_provider_property_sizeof (u_buffer : System.Address; values_len : bits_stdint_uintn_h.uint32_t) return int -- /usr/include/xcb/randr.h:3926
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property_sizeof";
function xcb_randr_configure_provider_property_checked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
pending : bits_stdint_uintn_h.uint8_t;
c_range : bits_stdint_uintn_h.uint8_t;
values_len : bits_stdint_uintn_h.uint32_t;
values : access bits_stdint_intn_h.int32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3941
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property_checked";
function xcb_randr_configure_provider_property
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
pending : bits_stdint_uintn_h.uint8_t;
c_range : bits_stdint_uintn_h.uint8_t;
values_len : bits_stdint_uintn_h.uint32_t;
values : access bits_stdint_intn_h.int32_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3958
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property";
function xcb_randr_configure_provider_property_values (R : access constant xcb_randr_configure_provider_property_request_t) return access bits_stdint_intn_h.int32_t -- /usr/include/xcb/randr.h:3967
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property_values";
function xcb_randr_configure_provider_property_values_length (R : access constant xcb_randr_configure_provider_property_request_t) return int -- /usr/include/xcb/randr.h:3970
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property_values_length";
function xcb_randr_configure_provider_property_values_end (R : access constant xcb_randr_configure_provider_property_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:3973
with Import => True,
Convention => C,
External_Name => "xcb_randr_configure_provider_property_values_end";
function xcb_randr_change_provider_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:3976
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property_sizeof";
function xcb_randr_change_provider_property_checked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
format : bits_stdint_uintn_h.uint8_t;
mode : bits_stdint_uintn_h.uint8_t;
num_items : bits_stdint_uintn_h.uint32_t;
data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:3990
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property_checked";
function xcb_randr_change_provider_property
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
format : bits_stdint_uintn_h.uint8_t;
mode : bits_stdint_uintn_h.uint8_t;
num_items : bits_stdint_uintn_h.uint32_t;
data : System.Address) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4008
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property";
function xcb_randr_change_provider_property_data (R : access constant xcb_randr_change_provider_property_request_t) return System.Address -- /usr/include/xcb/randr.h:4018
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property_data";
function xcb_randr_change_provider_property_data_length (R : access constant xcb_randr_change_provider_property_request_t) return int -- /usr/include/xcb/randr.h:4021
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property_data_length";
function xcb_randr_change_provider_property_data_end (R : access constant xcb_randr_change_provider_property_request_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4024
with Import => True,
Convention => C,
External_Name => "xcb_randr_change_provider_property_data_end";
function xcb_randr_delete_provider_property_checked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4038
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_provider_property_checked";
function xcb_randr_delete_provider_property
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4051
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_provider_property";
function xcb_randr_get_provider_property_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:4056
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_sizeof";
function xcb_randr_get_provider_property
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
long_offset : bits_stdint_uintn_h.uint32_t;
long_length : bits_stdint_uintn_h.uint32_t;
u_delete : bits_stdint_uintn_h.uint8_t;
pending : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_provider_property_cookie_t -- /usr/include/xcb/randr.h:4067
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property";
function xcb_randr_get_provider_property_unchecked
(c : access xcb.xcb_connection_t;
provider : xcb_randr_provider_t;
property : xproto.xcb_atom_t;
c_type : xproto.xcb_atom_t;
long_offset : bits_stdint_uintn_h.uint32_t;
long_length : bits_stdint_uintn_h.uint32_t;
u_delete : bits_stdint_uintn_h.uint8_t;
pending : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_provider_property_cookie_t -- /usr/include/xcb/randr.h:4088
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_unchecked";
function xcb_randr_get_provider_property_data (R : access constant xcb_randr_get_provider_property_reply_t) return System.Address -- /usr/include/xcb/randr.h:4098
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_data";
function xcb_randr_get_provider_property_data_length (R : access constant xcb_randr_get_provider_property_reply_t) return int -- /usr/include/xcb/randr.h:4101
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_data_length";
function xcb_randr_get_provider_property_data_end (R : access constant xcb_randr_get_provider_property_reply_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4104
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_data_end";
function xcb_randr_get_provider_property_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_provider_property_cookie_t;
e : System.Address) return access xcb_randr_get_provider_property_reply_t -- /usr/include/xcb/randr.h:4121
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_provider_property_reply";
procedure xcb_randr_crtc_change_next (i : access xcb_randr_crtc_change_iterator_t) -- /usr/include/xcb/randr.h:4134
with Import => True,
Convention => C,
External_Name => "xcb_randr_crtc_change_next";
function xcb_randr_crtc_change_end (i : xcb_randr_crtc_change_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4146
with Import => True,
Convention => C,
External_Name => "xcb_randr_crtc_change_end";
procedure xcb_randr_output_change_next (i : access xcb_randr_output_change_iterator_t) -- /usr/include/xcb/randr.h:4157
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_change_next";
function xcb_randr_output_change_end (i : xcb_randr_output_change_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4169
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_change_end";
procedure xcb_randr_output_property_next (i : access xcb_randr_output_property_iterator_t) -- /usr/include/xcb/randr.h:4180
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_property_next";
function xcb_randr_output_property_end (i : xcb_randr_output_property_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4192
with Import => True,
Convention => C,
External_Name => "xcb_randr_output_property_end";
procedure xcb_randr_provider_change_next (i : access xcb_randr_provider_change_iterator_t) -- /usr/include/xcb/randr.h:4203
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_change_next";
function xcb_randr_provider_change_end (i : xcb_randr_provider_change_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4215
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_change_end";
procedure xcb_randr_provider_property_next (i : access xcb_randr_provider_property_iterator_t) -- /usr/include/xcb/randr.h:4226
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_property_next";
function xcb_randr_provider_property_end (i : xcb_randr_provider_property_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4238
with Import => True,
Convention => C,
External_Name => "xcb_randr_provider_property_end";
procedure xcb_randr_resource_change_next (i : access xcb_randr_resource_change_iterator_t) -- /usr/include/xcb/randr.h:4249
with Import => True,
Convention => C,
External_Name => "xcb_randr_resource_change_next";
function xcb_randr_resource_change_end (i : xcb_randr_resource_change_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4261
with Import => True,
Convention => C,
External_Name => "xcb_randr_resource_change_end";
function xcb_randr_monitor_info_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:4264
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_sizeof";
function xcb_randr_monitor_info_outputs (R : access constant xcb_randr_monitor_info_t) return access xcb_randr_output_t -- /usr/include/xcb/randr.h:4267
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_outputs";
function xcb_randr_monitor_info_outputs_length (R : access constant xcb_randr_monitor_info_t) return int -- /usr/include/xcb/randr.h:4270
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_outputs_length";
function xcb_randr_monitor_info_outputs_end (R : access constant xcb_randr_monitor_info_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4273
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_outputs_end";
procedure xcb_randr_monitor_info_next (i : access xcb_randr_monitor_info_iterator_t) -- /usr/include/xcb/randr.h:4284
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_next";
function xcb_randr_monitor_info_end (i : xcb_randr_monitor_info_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4296
with Import => True,
Convention => C,
External_Name => "xcb_randr_monitor_info_end";
function xcb_randr_get_monitors_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:4299
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors_sizeof";
function xcb_randr_get_monitors
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
get_active : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_monitors_cookie_t -- /usr/include/xcb/randr.h:4310
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors";
function xcb_randr_get_monitors_unchecked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
get_active : bits_stdint_uintn_h.uint8_t) return xcb_randr_get_monitors_cookie_t -- /usr/include/xcb/randr.h:4326
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors_unchecked";
function xcb_randr_get_monitors_monitors_length (R : access constant xcb_randr_get_monitors_reply_t) return int -- /usr/include/xcb/randr.h:4331
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors_monitors_length";
function xcb_randr_get_monitors_monitors_iterator (R : access constant xcb_randr_get_monitors_reply_t) return xcb_randr_monitor_info_iterator_t -- /usr/include/xcb/randr.h:4334
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors_monitors_iterator";
function xcb_randr_get_monitors_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_get_monitors_cookie_t;
e : System.Address) return access xcb_randr_get_monitors_reply_t -- /usr/include/xcb/randr.h:4351
with Import => True,
Convention => C,
External_Name => "xcb_randr_get_monitors_reply";
function xcb_randr_set_monitor_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:4356
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_monitor_sizeof";
function xcb_randr_set_monitor_checked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
monitorinfo : access xcb_randr_monitor_info_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4370
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_monitor_checked";
function xcb_randr_set_monitor
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
monitorinfo : access xcb_randr_monitor_info_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4383
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_monitor";
function xcb_randr_set_monitor_monitorinfo (R : access constant xcb_randr_set_monitor_request_t) return access xcb_randr_monitor_info_t -- /usr/include/xcb/randr.h:4388
with Import => True,
Convention => C,
External_Name => "xcb_randr_set_monitor_monitorinfo";
function xcb_randr_delete_monitor_checked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
name : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4402
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_monitor_checked";
function xcb_randr_delete_monitor
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
name : xproto.xcb_atom_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4415
with Import => True,
Convention => C,
External_Name => "xcb_randr_delete_monitor";
function xcb_randr_create_lease_sizeof (u_buffer : System.Address) return int -- /usr/include/xcb/randr.h:4420
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_lease_sizeof";
function xcb_randr_create_lease
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
lid : xcb_randr_lease_t;
num_crtcs : bits_stdint_uintn_h.uint16_t;
num_outputs : bits_stdint_uintn_h.uint16_t;
crtcs : access xcb_randr_crtc_t;
outputs : access xcb_randr_output_t) return xcb_randr_create_lease_cookie_t -- /usr/include/xcb/randr.h:4431
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_lease";
function xcb_randr_create_lease_unchecked
(c : access xcb.xcb_connection_t;
window : xproto.xcb_window_t;
lid : xcb_randr_lease_t;
num_crtcs : bits_stdint_uintn_h.uint16_t;
num_outputs : bits_stdint_uintn_h.uint16_t;
crtcs : access xcb_randr_crtc_t;
outputs : access xcb_randr_output_t) return xcb_randr_create_lease_cookie_t -- /usr/include/xcb/randr.h:4451
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_lease_unchecked";
function xcb_randr_create_lease_reply
(c : access xcb.xcb_connection_t;
cookie : xcb_randr_create_lease_cookie_t;
e : System.Address) return access xcb_randr_create_lease_reply_t -- /usr/include/xcb/randr.h:4474
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_lease_reply";
function xcb_randr_create_lease_reply_fds (c : access xcb.xcb_connection_t; reply : access xcb_randr_create_lease_reply_t) return access int -- /usr/include/xcb/randr.h:4488
with Import => True,
Convention => C,
External_Name => "xcb_randr_create_lease_reply_fds";
function xcb_randr_free_lease_checked
(c : access xcb.xcb_connection_t;
lid : xcb_randr_lease_t;
c_terminate : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4503
with Import => True,
Convention => C,
External_Name => "xcb_randr_free_lease_checked";
function xcb_randr_free_lease
(c : access xcb.xcb_connection_t;
lid : xcb_randr_lease_t;
c_terminate : bits_stdint_uintn_h.uint8_t) return xcb.xcb_void_cookie_t -- /usr/include/xcb/randr.h:4516
with Import => True,
Convention => C,
External_Name => "xcb_randr_free_lease";
procedure xcb_randr_lease_notify_next (i : access xcb_randr_lease_notify_iterator_t) -- /usr/include/xcb/randr.h:4529
with Import => True,
Convention => C,
External_Name => "xcb_randr_lease_notify_next";
function xcb_randr_lease_notify_end (i : xcb_randr_lease_notify_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4541
with Import => True,
Convention => C,
External_Name => "xcb_randr_lease_notify_end";
procedure xcb_randr_notify_data_next (i : access xcb_randr_notify_data_iterator_t) -- /usr/include/xcb/randr.h:4552
with Import => True,
Convention => C,
External_Name => "xcb_randr_notify_data_next";
function xcb_randr_notify_data_end (i : xcb_randr_notify_data_iterator_t) return xcb.xcb_generic_iterator_t -- /usr/include/xcb/randr.h:4564
with Import => True,
Convention => C,
External_Name => "xcb_randr_notify_data_end";
end xcb_randr;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ W I D E _ T E X T _ IO . C O M P L E X _ I O --
-- --
-- S p e c --
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with Ada.Numerics.Generic_Complex_Types;
generic
with package Complex_Types is new Ada.Numerics.Generic_Complex_Types (<>);
package Ada.Wide_Wide_Text_IO.Complex_IO is
use Complex_Types;
Default_Fore : Field := 2;
Default_Aft : Field := Real'Digits - 1;
Default_Exp : Field := 3;
procedure Get
(File : File_Type;
Item : out Complex;
Width : Field := 0);
procedure Get
(Item : out Complex;
Width : Field := 0);
procedure Put
(File : File_Type;
Item : Complex;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp);
procedure Put
(Item : Complex;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp);
procedure Get
(From : Wide_Wide_String;
Item : out Complex;
Last : out Positive);
procedure Put
(To : out Wide_Wide_String;
Item : Complex;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp);
end Ada.Wide_Wide_Text_IO.Complex_IO;
|
-- CD7204B.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 PREFIX OF THE 'POSITION, 'LAST_BIT, AND 'FIRST_BIT
-- ATTRIBUTES CAN DENOTE A RECORD COMPONENT, AND THE ATTRIBUTES
-- RETURN APPROPRIATE VALUES WHEN A RECORD REPRESENTATION CLAUSE IS
-- NOT PRESENT.
-- HISTORY:
-- BCB 09/14/87 CREATED ORIGINAL TEST.
-- RJW 02/08/88 REVISED SO THAT TEST PASSES IF BOOLEAN'SIZE = 1.
-- RJW 05/31/90 CORRECTED COMPARISONS INVOLVING SIZES.
-- LDC 10/04/90 ADDED CHECK FOR 'POSITION.
WITH REPORT; USE REPORT;
PROCEDURE CD7204B IS
TYPE BASIC_REC IS RECORD
CHECK_INT : INTEGER := 5;
CHECK_BOOL : BOOLEAN := TRUE;
END RECORD;
CHECK_REC : BASIC_REC;
BEGIN
TEST ("CD7204B", "CHECK THAT THE PREFIX OF THE 'POSITION, " &
"'LAST_BIT, AND 'FIRST_BIT ATTRIBUTES CAN " &
"DENOTE A RECORD COMPONENT, AND THE ATTRIBUTES " &
"RETURN APPROPRIATE VALUES WHEN A RECORD " &
"REPRESENTATION CLAUSE IS NOT PRESENT");
IF CHECK_REC.CHECK_INT'FIRST_BIT >= CHECK_REC.CHECK_INT'LAST_BIT
THEN FAILED ("INCORRECT VALUES FOR FIRST_BIT OR LAST_BIT " &
"OF CHECK_INT");
END IF;
IF (CHECK_REC.CHECK_INT'LAST_BIT - CHECK_REC.CHECK_INT'FIRST_BIT
+ 1) < INTEGER'SIZE THEN
FAILED ("INCORRECT SIZE FOR CHECK_INT");
END IF;
IF CHECK_REC.CHECK_BOOL'POSITION <= CHECK_REC.CHECK_INT'POSITION
THEN FAILED ("INCORRECT VALUE FOR 'POSITION OF CHECK_INT " &
"OR CHECK_BOOL");
END IF;
IF CHECK_REC.CHECK_INT'POSITION >= CHECK_REC.CHECK_BOOL'POSITION
THEN FAILED ("INCORRECT VALUE FOR 'POSITION OF CHECK_INT " &
"OR CHECK_BOOL - 2");
END IF;
IF CHECK_REC.CHECK_BOOL'FIRST_BIT > CHECK_REC.CHECK_BOOL'LAST_BIT
THEN FAILED ("INCORRECT VALUE FOR FIRST_BIT OR LAST_BIT " &
"OF CHECK_BOOL");
END IF;
IF (CHECK_REC.CHECK_BOOL'LAST_BIT - CHECK_REC.CHECK_BOOL'FIRST_BIT
+ 1) < BOOLEAN'SIZE THEN
FAILED ("INCORRECT SIZE FOR CHECK_BOOL");
END IF;
RESULT;
END CD7204B;
|
with RASCAL.Memory; use RASCAL.Memory;
with RASCAL.OS; use RASCAL.OS;
with RASCAL.Utility; use RASCAL.Utility;
with RASCAL.FileExternal; use RASCAL.FileExternal;
with RASCAL.ToolboxMenu; use RASCAL.ToolboxMenu;
with RASCAL.Toolbox; use RASCAL.Toolbox;
with RASCAL.Bugz; use RASCAL.Bugz;
with RASCAL.WimpTask; use RASCAL.WimpTask;
with AcronymList; use AcronymList;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Interfaces.C; use Interfaces.C;
with Main; use Main;
with Ada.Exceptions;
with Ada.Characters.Handling;
with Reporter;
package body Controller_DataMenu is
--
package Memory renames RASCAL.Memory;
package OS renames RASCAL.OS;
package Utility renames RASCAL.Utility;
package FileExternal renames RASCAL.FileExternal;
package ToolboxMenu renames RASCAL.ToolboxMenu;
package Toolbox renames RASCAL.Toolbox;
package Bugz renames RASCAL.Bugz;
package WimpTask renames RASCAL.WimpTask;
--
procedure Handle (The : in TEL_DataMenuOpen_Type) is
Object : Object_ID := Get_Self_Id(Main_Task);
Dir_List : Directory_Type := Get_Directory_List(Choices_Write & ".Data");
begin
-- Delete old entries
if Data_Menu_Entries > 0 then
ToolboxMenu.Remove_Entries(Object,Data_Menu_Entries,1);
end if;
-- Insert new entries
for i in Dir_List'Range loop
ToolboxMenu.Add_Last_Entry(Object,S(Dir_List(i)),Component_ID(i),Click_Event => 16#35#);
end loop;
Data_Menu_Entries := Dir_List'Last;
exception
when e: others => Report_Error("OPENDATAMENU",Ada.Exceptions.Exception_Information (e));
end Handle;
--
procedure Handle (The : in TEL_DataEntrySelected_Type) is
Object : Object_ID := Get_Self_Id(Main_Task);
Component : Component_ID := Get_Self_Component(Main_Task);
FileName : String := ToolboxMenu.Get_Entry_Text(Object,Component);
begin
Call_OS_CLI("Filer_Run " & Choices_Write & ".Data." & FileName);
exception
when e: others => Report_Error("VIEWDATAENTRY",Ada.Exceptions.Exception_Information (e));
end Handle;
--
procedure Handle (The : in TEL_ViewDataDir_Type) is
begin
Call_OS_CLI ("Filer_OpenDir " & Choices_Write & ".Data");
exception
when e: others => Report_Error("VIEWDATA",Ada.Exceptions.Exception_Information (e));
end Handle;
--
end Controller_DataMenu;
|
------------------------------------------------------------------------------
-- Copyright (c) 2015, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
package body Natools.Web.Filters.Pass_Through is
overriding procedure Apply
(Object : in Filter;
Output : in out Ada.Streams.Root_Stream_Type'Class;
Data : in Ada.Streams.Stream_Element_Array)
is
pragma Unreferenced (Object);
begin
Output.Write (Data);
end Apply;
function Create
(Arguments : in out S_Expressions.Lockable.Descriptor'Class)
return Filters.Filter'Class
is
pragma Unreferenced (Arguments);
begin
return Filter'(null record);
end Create;
end Natools.Web.Filters.Pass_Through;
|
-- { dg-do compile }
with Ada.Streams; use Ada.Streams;
procedure Addr9_2 is
type Signal_Type is mod 2 ** 16;
type A_Item is record
I : Signal_Type;
Q : Signal_Type;
end record
with Size => 32;
for A_Item use record
I at 0 range 0 .. 15;
Q at 2 range 0 .. 15;
end record;
type A_Array_Type is
array (Positive range <>)
of A_Item
with Alignment => 16;
pragma Pack (A_Array_Type);
type B_Array_Type is new Ada.Streams.Stream_Element_Array
with Alignment => 16;
Ct_Count : constant := 7_000;
package Set is
A : A_Array_Type := (1 .. Ct_Count => <>);
B : aliased B_Array_Type := (1 .. Ct_Count * A_Item'Size / 8 => <>);
for B'Address use A'Address; -- { dg-warning "aliased object" }
end Set;
begin
null;
end;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . V A L _ I N T --
-- --
-- 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 contains routines for scanning signed Integer values for use
-- in Text_IO.Integer_IO, and the Value attribute.
package System.Val_Int is
pragma Pure;
function Scan_Integer
(Str : String;
Ptr : access Integer;
Max : Integer) return Integer;
-- This function scans the string starting at Str (Ptr.all) for a valid
-- integer according to the syntax described in (RM 3.5(43)). The substring
-- scanned extends no further than Str (Max). There are three cases for the
-- return:
--
-- If a valid integer is found after scanning past any initial spaces, then
-- Ptr.all is updated past the last character of the integer (but trailing
-- spaces are not scanned out).
--
-- If no valid integer is found, then Ptr.all points either to an initial
-- non-digit character, or to Max + 1 if the field is all spaces and the
-- exception Constraint_Error is raised.
--
-- If a syntactically valid integer is scanned, but the value is out of
-- range, or, in the based case, the base value is out of range or there
-- is an out of range digit, then Ptr.all points past the integer, and
-- Constraint_Error is raised.
--
-- Note: these rules correspond to the requirements for leaving the pointer
-- positioned in Text_Io.Get
--
-- Note: if Str is null, i.e. if Max is less than Ptr, then this is a
-- special case of an all-blank string, and Ptr is unchanged, and hence
-- is greater than Max as required in this case.
function Value_Integer (Str : String) return Integer;
-- Used in computing X'Value (Str) where X is a signed integer type whose
-- base range does not exceed the base range of Integer. Str is the string
-- argument of the attribute. Constraint_Error is raised if the string is
-- malformed, or if the value is out of range.
end System.Val_Int;
|
<?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>memWrite</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>17</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>gmem0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>4</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>out_dim1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>out_dim2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim2</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>out_dim3</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim3</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>out_dim1xbatch</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1xbatch</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>out_dim1x2xbatch</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1x2xbatch</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>batch_indx_dim1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>batch_indx_dim1</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>batch_indx_dim2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>batch_indx_dim2</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>padd_offset</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>padd_offset</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>97</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_10">
<Value>
<Obj>
<type>1</type>
<id>10</id>
<name>pool_on</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>pool_on</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>145</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_11">
<Value>
<Obj>
<type>1</type>
<id>11</id>
<name>pool_size</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>pool_size</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_12">
<Value>
<Obj>
<type>1</type>
<id>12</id>
<name>pool_stride</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>pool_stride</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_13">
<Value>
<Obj>
<type>1</type>
<id>13</id>
<name>top</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>top</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_14">
<Value>
<Obj>
<type>1</type>
<id>14</id>
<name>conv_in_V_data_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1396973669</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_15">
<Value>
<Obj>
<type>1</type>
<id>15</id>
<name>conv_in_V_keep_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>369</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_16">
<Value>
<Obj>
<type>1</type>
<id>16</id>
<name>conv_in_V_strb_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>481</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_17">
<Value>
<Obj>
<type>1</type>
<id>17</id>
<name>conv_in_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_in</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>561</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>147</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>buffer_0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[0]</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>buffer_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[1]</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>top_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>top</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>227</item>
<item>228</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>1.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>pool_on_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>pool_on</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>230</item>
<item>231</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>padd_offset_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>padd_offset</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>batch_indx_dim2_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>batch_indx_dim2</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>234</item>
<item>235</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>batch_indx_dim1_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>batch_indx_dim1</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>236</item>
<item>237</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>1.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>out_dim1x2xbatch_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1x2xbatch</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>239</item>
<item>240</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>1.00</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>out_dim1xbatch_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1xbatch</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>242</item>
<item>243</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>1.00</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>out_dim3_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim3</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>244</item>
<item>245</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>1.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>out_dim2_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim2</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>246</item>
<item>247</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>1.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>out_dim1_read</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_dim1</originalName>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>s_axilite</coreName>
<coreId>122</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>248</item>
<item>249</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>1.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>out_dim1_cast11</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim1_cast11_fu_390_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>110523208</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>out_dim1_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim1_cast_fu_338_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>251</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>out_dim2_cast10</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim2_cast10_fu_393_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1569</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>252</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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>out_dim2_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim2_cast_fu_341_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>out_dim3_cast14</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim3_cast14_fu_396_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>254</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>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>out_dim3_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>out_dim3_cast_fu_344_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>255</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>padd_offset_cast12</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>padd_offset_cast12_fu_399_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>padd_offset_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>padd_offset_cast_fu_402_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>257</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>mul4</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul4_fu_348_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>259</item>
<item>260</item>
<item>262</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>mul4_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul4_cast_fu_356_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1936683105</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>263</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>add</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>add_fu_360_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>264</item>
<item>265</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>add_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_919_p10</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>266</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>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>cmp26</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>cmp26_fu_405_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>267</item>
<item>269</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.58</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>batch_indx_dim2_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul33_fu_414_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4017</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>mul33</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8ns_8ns_16_1_1_U2</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>mul33_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul33_cast_fu_419_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>110981960</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>273</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>conv35</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>conv35_fu_423_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>274</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>batch_indx_dim1_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul42_fu_430_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>275</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>mul42</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8ns_8ns_16_1_1_U3</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>1886413614</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>276</item>
<item>277</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>mul42_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>mul42_cast_fu_435_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>278</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>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>div</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>div_reg_983</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>280</item>
<item>281</item>
<item>282</item>
<item>284</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>div_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>div_cast_fu_439_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>110995800</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>285</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>sub107</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub107_fu_442_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>286</item>
<item>288</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>sub111</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub111_fu_448_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>289</item>
<item>291</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>sub111_cast</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub111_cast_fu_454_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>2037672306</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>292</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>sub115</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>sub115_fu_458_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>293</item>
<item>294</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>sext_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</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>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln96_fu_464_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1852403055</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>295</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>mul_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8ns_8ns_16_1_1_U1</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>1145391171</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>zext_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_919_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1931502951</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>298</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>mul_ln96_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_mul_16ns_17ns_32_4_1_U6</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>299</item>
<item>300</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.53</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>trunc_ln149</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln149_fu_468_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1769239916</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>301</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>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>trunc_ln154</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln154_fu_472_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>758395186</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>302</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>br_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1112350771</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>303</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.38</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>i</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1819307375</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>305</item>
<item>306</item>
<item>307</item>
<item>308</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>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>lane_num_idx</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_num_idx</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>574453865</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>310</item>
<item>311</item>
<item>312</item>
<item>313</item>
</oprand_edges>
<opcode>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>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>lane_item_idx</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_item_idx</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1852142702</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>315</item>
<item>316</item>
<item>317</item>
<item>318</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>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>out_idx_y</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_idx_y</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>6108728</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>319</item>
<item>320</item>
<item>321</item>
<item>322</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>1</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>out_idx_x</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_idx_x</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1162630468</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>325</item>
<item>326</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>i_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName>i_1_fu_476_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>327</item>
<item>328</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.88</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>icmp_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln96_fu_482_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>111007512</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>329</item>
<item>330</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.85</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>br_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>331</item>
<item>332</item>
<item>333</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>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>zext_ln103</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln103_fu_815_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>334</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>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>zext_ln103_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln103_1_fu_487_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>335</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>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>icmp_ln103</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln103_fu_491_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>7</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>336</item>
<item>337</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.58</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>br_ln103</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>103</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>103</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>338</item>
<item>339</item>
<item>340</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>empty</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>adapter</opType>
<implIndex>axi4stream</implIndex>
<coreName>axis</coreName>
<coreId>123</coreId>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>344</item>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>conv_in_tmp_data_V</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_in_tmp.data.V</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1380927064</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>347</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>output_lane</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output.lane</originalName>
<rtlName>output_lane_fu_501_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1835365491</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>348</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>output_lane_2</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output.lane</originalName>
<rtlName>buffer_1_fu_180</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>350</item>
<item>351</item>
<item>353</item>
<item>355</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>buffer_1_write_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>356</item>
<item>357</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>buffer_0_write_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>18529</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>358</item>
<item>359</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>br_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>110955472</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>360</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>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>zext_ln149</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln149_fu_525_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>110959008</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>361</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>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>zext_ln149_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln149_1_fu_529_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>362</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>add_ln149</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>am_addmul_16ns_16ns_16ns_32_4_1_U7</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>363</item>
<item>364</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.33</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>zext_ln149_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>am_addmul_16ns_16ns_16ns_32_4_1_U7</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>365</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>mul_ln149</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>am_addmul_16ns_16ns_16ns_32_4_1_U7</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<coreId>127</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>366</item>
<item>367</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>1</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>trunc_ln149_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln149_1_fu_804_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>540553523</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>368</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>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>trunc_ln149_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln149_2_fu_807_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>9</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>369</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>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>zext_ln149_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln149_3_fu_533_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>7185</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>370</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>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>add_ln149_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln149_1_fu_537_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>371</item>
<item>372</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>zext_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln159_fu_819_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4753</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>373</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>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>shl_ln</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>shl_ln_fu_542_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>375</item>
<item>376</item>
<item>377</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>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>zext_ln159_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln159_1_fu_550_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>378</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>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>add_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln159_fu_554_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>379</item>
<item>380</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.79</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>zext_ln159_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln159_2_fu_560_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>381</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>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>sub_ln152_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln152_2_fu_564_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.79</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>trunc_ln148</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>148</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>148</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln148_fu_569_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>384</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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>br_ln148</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>148</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>148</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>14</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>385</item>
<item>386</item>
<item>387</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>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>trunc_ln152</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln152_fu_720_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>29473</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>403</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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>tmp_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_1_reg_1127</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>111026000</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>405</item>
<item>406</item>
<item>408</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>sub_ln152</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln152_fu_730_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>410</item>
<item>411</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.79</m_delay>
<m_topoIndex>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>trunc_ln152_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln152_2_fu_736_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>413</item>
<item>414</item>
<item>416</item>
<item>418</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="_103">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>sub_ln152_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln152_1_fu_746_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>419</item>
<item>420</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>trunc_ln152_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln152_3_fu_752_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>422</item>
<item>423</item>
<item>424</item>
<item>425</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>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>index_z_group</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>152</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>152</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>index_z_group</originalName>
<rtlName>index_z_group_fu_761_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>426</item>
<item>427</item>
<item>428</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.24</m_delay>
<m_topoIndex>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>sub_ln153</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln153_fu_810_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>430</item>
<item>431</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>p_and_t_cast</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_and_t_cast_fu_822_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>433</item>
<item>435</item>
<item>436</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>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>sub_ln153_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln153_1_fu_829_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>437</item>
<item>438</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>zext_ln154</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_790_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>132</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>439</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>mul_ln154</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_16ns_30s_30_2_1_U4</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>440</item>
<item>441</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.29</m_delay>
<m_topoIndex>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>tmp_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_4_fu_835_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>111038624</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>442</item>
<item>443</item>
<item>444</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>125</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>select_ln153</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln153_fu_842_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>445</item>
<item>446</item>
<item>447</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>126</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>zext_ln154_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln154_1_fu_849_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>448</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>127</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>tmp6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp6_fu_853_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>449</item>
<item>450</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>tmp43</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp43_fu_858_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>30</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>451</item>
<item>452</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.72</m_delay>
<m_topoIndex>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>tmp5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp5_fu_863_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>111045976</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>454</item>
<item>455</item>
<item>456</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>130</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>top_addr_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>154</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>154</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>top_addr</originalName>
<rtlName>top_addr_1_fu_871_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.88</m_delay>
<m_topoIndex>131</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>br_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>111047848</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>459</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.38</m_delay>
<m_topoIndex>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>zext_ln149_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_799_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>388</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>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>mul_ln149_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_16ns_31s_31_2_1_U5</rtlName>
<control/>
<opType>mul</opType>
<implIndex/>
<coreName/>
<coreId>1253</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>389</item>
<item>390</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.29</m_delay>
<m_topoIndex>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>tmp</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_877_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>391</item>
<item>392</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>133</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>add_ln149_1_cast18</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln149_1_cast18_fu_881_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>393</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>134</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>tmp11</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp11_fu_884_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<coreId>10</coreId>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>394</item>
<item>395</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.72</m_delay>
<m_topoIndex>135</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>tmp2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp2_fu_890_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>5164305</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>397</item>
<item>398</item>
<item>399</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>136</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>top_addr</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>149</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>149</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>top_addr</originalName>
<rtlName>top_addr_fu_898_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>400</item>
<item>401</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.88</m_delay>
<m_topoIndex>137</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>br_ln150</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>150</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>150</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>49</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>402</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.38</m_delay>
<m_topoIndex>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>top_addr_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>top_addr</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>460</item>
<item>461</item>
<item>462</item>
<item>463</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>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>icmp_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln159_fu_573_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>464</item>
<item>465</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.71</m_delay>
<m_topoIndex>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>icmp_ln159_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln159_1_fu_578_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>1</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>466</item>
<item>467</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.69</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>xor_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln159_fu_583_p2</rtlName>
<control/>
<opType>xor</opType>
<implIndex/>
<coreName/>
<coreId>111065744</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>468</item>
<item>470</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>80</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>and_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln159_fu_589_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>471</item>
<item>472</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.12</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>br_ln159</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>473</item>
<item>474</item>
<item>475</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>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>buffer_0_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>476</item>
<item>1145</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>buffer_1_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>477</item>
<item>1144</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>trunc_ln167</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln167_fu_775_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>478</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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>select_ln167</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln167_fu_779_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>479</item>
<item>480</item>
<item>481</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.30</m_delay>
<m_topoIndex>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>zext_ln167</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln167_fu_904_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>482</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>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>add_ln167</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln167_fu_908_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>483</item>
<item>484</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.14</m_delay>
<m_topoIndex>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>gmem0_addr</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>485</item>
<item>486</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>gmem0_addr_req</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>writereq</opType>
<implIndex>m_axi</implIndex>
<coreName>m_axi</coreName>
<coreId>121</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>488</item>
<item>489</item>
<item>490</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.43</m_delay>
<m_topoIndex>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>gmem0_addr_write_ln167</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType/>
<implIndex>UNSUPPORTED</implIndex>
<coreName>m_axi</coreName>
<coreId>121</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>492</item>
<item>493</item>
<item>494</item>
<item>495</item>
<item>1143</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>2.43</m_delay>
<m_topoIndex>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>gmem0_addr_resp</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>writereq</opType>
<implIndex>m_axi</implIndex>
<coreName>m_axi</coreName>
<coreId>121</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>497</item>
<item>498</item>
<item>1142</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.43</m_delay>
<m_topoIndex>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>br_ln176</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>176</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>176</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>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>0.00</m_delay>
<m_topoIndex>146</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>icmp_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_fu_595_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>500</item>
<item>501</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.68</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>icmp_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_1_fu_600_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>502</item>
<item>503</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.67</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>icmp_ln186_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_2_fu_605_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>504</item>
<item>505</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.67</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>icmp_ln186_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln186_3_fu_610_p2</rtlName>
<control/>
<opType>icmp</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>506</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>0.58</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name>and_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln186_fu_616_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>508</item>
<item>509</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>and_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln186_1_fu_622_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>510</item>
<item>511</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.12</m_delay>
<m_topoIndex>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>and_ln186_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln186_2_fu_628_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>512</item>
<item>513</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name>and_ln191</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>191</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>191</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln191_fu_634_p2</rtlName>
<control/>
<opType>and</opType>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>514</item>
<item>515</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.12</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name>lane_num_idx_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>189</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_num_idx</originalName>
<rtlName>lane_num_idx_1_fu_640_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>516</item>
<item>518</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>select_ln188</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln188_fu_646_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>519</item>
<item>520</item>
<item>521</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>92</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>lane_num_idx_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_num_idx</originalName>
<rtlName>lane_num_idx_2_fu_654_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>522</item>
<item>523</item>
<item>524</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.24</m_delay>
<m_topoIndex>93</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>out_idx_y_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>194</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out_idx_y</originalName>
<rtlName>out_idx_y_1_fu_662_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>525</item>
<item>526</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>select_ln193</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>193</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>193</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln193_fu_668_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>527</item>
<item>528</item>
<item>529</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>95</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>out_idx_y_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>191</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>191</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out_idx_y</originalName>
<rtlName>out_idx_y_2_fu_676_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>530</item>
<item>531</item>
<item>532</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.24</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>add_ln199</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>199</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>199</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln199_fu_684_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>533</item>
<item>534</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.78</m_delay>
<m_topoIndex>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>out_idx_x_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>198</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>198</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out_idx_x</originalName>
<rtlName>out_idx_x_1_fu_690_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>535</item>
<item>536</item>
<item>537</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>98</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>out_idx_x_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>196</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out_idx_x</originalName>
<rtlName>out_idx_x_2_fu_698_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>538</item>
<item>539</item>
<item>540</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.24</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>lane_item_idx_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>204</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>204</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_item_idx</originalName>
<rtlName>lane_item_idx_1_fu_706_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>541</item>
<item>542</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>lane_item_idx_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>201</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>201</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_item_idx</originalName>
<rtlName>lane_item_idx_2_fu_712_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<coreId>73</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>543</item>
<item>544</item>
<item>545</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.30</m_delay>
<m_topoIndex>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>br_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>546</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>_ln210</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>210</lineNumber>
<contextFuncName>memWrite</contextFuncName>
<contextNormFuncName>memWrite</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/memWrite/memWrite</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/memWrite.cpp</first>
<second>memWrite</second>
</first>
<second>210</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>147</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>19</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_165">
<Value>
<Obj>
<type>2</type>
<id>223</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_166">
<Value>
<Obj>
<type>2</type>
<id>261</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_167">
<Value>
<Obj>
<type>2</type>
<id>268</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_168">
<Value>
<Obj>
<type>2</type>
<id>283</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_169">
<Value>
<Obj>
<type>2</type>
<id>287</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<const_type>0</const_type>
<content>131071</content>
</item>
<item class_id_reference="16" object_id="_170">
<Value>
<Obj>
<type>2</type>
<id>290</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>511</content>
</item>
<item class_id_reference="16" object_id="_171">
<Value>
<Obj>
<type>2</type>
<id>304</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_172">
<Value>
<Obj>
<type>2</type>
<id>309</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_173">
<Value>
<Obj>
<type>2</type>
<id>314</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_174">
<Value>
<Obj>
<type>2</type>
<id>352</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_175">
<Value>
<Obj>
<type>2</type>
<id>354</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_176">
<Value>
<Obj>
<type>2</type>
<id>407</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>18</content>
</item>
<item class_id_reference="16" object_id="_177">
<Value>
<Obj>
<type>2</type>
<id>409</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_178">
<Value>
<Obj>
<type>2</type>
<id>415</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_179">
<Value>
<Obj>
<type>2</type>
<id>417</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>17</content>
</item>
<item class_id_reference="16" object_id="_180">
<Value>
<Obj>
<type>2</type>
<id>429</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_181">
<Value>
<Obj>
<type>2</type>
<id>434</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_182">
<Value>
<Obj>
<type>2</type>
<id>469</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_183">
<Value>
<Obj>
<type>2</type>
<id>517</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_184">
<Obj>
<type>3</type>
<id>108</id>
<name>.lr.ph</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>81</coreId>
</Obj>
<node_objs>
<count>45</count>
<item_version>0</item_version>
<item>18</item>
<item>19</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_185">
<Obj>
<type>3</type>
<id>118</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1634956133</coreId>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
<item>113</item>
<item>114</item>
<item>116</item>
<item>117</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_186">
<Obj>
<type>3</type>
<id>124</id>
<name>.split</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_187">
<Obj>
<type>3</type>
<id>132</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_188">
<Obj>
<type>3</type>
<id>150</id>
<name>.split._crit_edge</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1702065440</coreId>
</Obj>
<node_objs>
<count>17</count>
<item_version>0</item_version>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_189">
<Obj>
<type>3</type>
<id>171</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>111023584</coreId>
</Obj>
<node_objs>
<count>20</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_190">
<Obj>
<type>3</type>
<id>180</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1610612864</coreId>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_191">
<Obj>
<type>3</type>
<id>187</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>62</coreId>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_192">
<Obj>
<type>3</type>
<id>199</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>524777</coreId>
</Obj>
<node_objs>
<count>11</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_193">
<Obj>
<type>3</type>
<id>220</id>
<name>._crit_edge</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<node_objs>
<count>20</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_194">
<Obj>
<type>3</type>
<id>222</id>
<name>._crit_edge.loopexit</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>0</coreId>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>280</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_195">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>283</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>287</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>290</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>290</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>303</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>304</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>306</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>308</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>311</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>313</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>316</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>318</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>320</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>322</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>324</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>326</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>332</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>333</id>
<edge_type>2</edge_type>
<source_obj>222</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>339</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>340</id>
<edge_type>2</edge_type>
<source_obj>132</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>352</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>354</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>360</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>372</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="_312">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>386</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>387</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>400</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="_336">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>402</id>
<edge_type>2</edge_type>
<source_obj>187</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>407</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>415</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>417</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>415</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>417</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>429</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>429</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>459</id>
<edge_type>2</edge_type>
<source_obj>187</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>461</id>
<edge_type>2</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="_380">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>463</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>472</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="_390">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>474</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>475</id>
<edge_type>2</edge_type>
<source_obj>199</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>479</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="_397">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>489</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="_405">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>499</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>517</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>520</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="_431">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>524</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="_435">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>517</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>528</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="_439">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>517</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>536</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="_447">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>314</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>545</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="_456">
<id>546</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>219</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>1128</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>1129</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>1130</id>
<edge_type>2</edge_type>
<source_obj>118</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>1131</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>1132</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>1133</id>
<edge_type>2</edge_type>
<source_obj>132</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>1134</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>1135</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>1136</id>
<edge_type>2</edge_type>
<source_obj>171</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>1137</id>
<edge_type>2</edge_type>
<source_obj>180</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>1138</id>
<edge_type>2</edge_type>
<source_obj>187</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>1139</id>
<edge_type>2</edge_type>
<source_obj>187</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>1140</id>
<edge_type>2</edge_type>
<source_obj>199</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>1141</id>
<edge_type>2</edge_type>
<source_obj>220</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>1142</id>
<edge_type>4</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>1143</id>
<edge_type>4</edge_type>
<source_obj>195</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>1144</id>
<edge_type>4</edge_type>
<source_obj>129</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>1145</id>
<edge_type>4</edge_type>
<source_obj>130</source_obj>
<sink_obj>188</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="_475">
<mId>1</mId>
<mTag>memWrite</mTag>
<mNormTag>memWrite</mNormTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_476">
<mId>2</mId>
<mTag>Entry</mTag>
<mNormTag>Entry</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>4</mMinLatency>
<mMaxLatency>4</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_477">
<mId>3</mId>
<mTag>VITIS_LOOP_96_1</mTag>
<mNormTag>VITIS_LOOP_96_1</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>9</count>
<item_version>0</item_version>
<item>118</item>
<item>124</item>
<item>132</item>
<item>150</item>
<item>171</item>
<item>180</item>
<item>187</item>
<item>199</item>
<item>220</item>
</basic_blocks>
<mII>1</mII>
<mDepth>76</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="_478">
<mId>4</mId>
<mTag>Return</mTag>
<mNormTag>Return</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>222</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="_479">
<states class_id="25" tracking_level="0" version="0">
<count>82</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_480">
<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="_481">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_482">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_483">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_484">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_485">
<id>2</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_486">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_487">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_488">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_489">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_490">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_491">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_492">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_493">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_494">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_495">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_496">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_497">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_498">
<id>104</id>
<stage>4</stage>
<latency>4</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_499">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_500">
<id>104</id>
<stage>3</stage>
<latency>4</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_501">
<id>4</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_502">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_503">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_504">
<id>104</id>
<stage>2</stage>
<latency>4</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_505">
<id>5</id>
<operations>
<count>72</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_506">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_507">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_508">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_509">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_510">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_511">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_512">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_513">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_514">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_515">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_516">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_517">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_518">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_519">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_520">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_521">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_522">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_523">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_524">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_525">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_526">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_527">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_528">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_529">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_530">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_531">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_532">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_533">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_534">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_535">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_536">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_537">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_538">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_539">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_540">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_541">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_542">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_543">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_544">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_545">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_546">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_547">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_548">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_549">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_550">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_551">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_552">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_553">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_554">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_555">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_556">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_557">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_558">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_559">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_560">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_561">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_562">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_563">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_564">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_565">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_566">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_567">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_568">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_569">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_570">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_571">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_572">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_573">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_574">
<id>104</id>
<stage>1</stage>
<latency>4</latency>
</item>
<item class_id_reference="28" object_id="_575">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_576">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_577">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_578">
<id>6</id>
<operations>
<count>58</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_579">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_580">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_581">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_582">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_583">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_584">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_585">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_586">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_587">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_588">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_589">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_590">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_591">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_592">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_593">
<id>127</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_594">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_595">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_596">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_597">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_598">
<id>133</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_599">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_600">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_601">
<id>136</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_602">
<id>137</id>
<stage>4</stage>
<latency>4</latency>
</item>
<item class_id_reference="28" object_id="_603">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_604">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_605">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_606">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_607">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_608">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_609">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_610">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_611">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_612">
<id>182</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_613">
<id>183</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_614">
<id>184</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_615">
<id>185</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_616">
<id>186</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_617">
<id>200</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_618">
<id>201</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_619">
<id>202</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_620">
<id>203</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_621">
<id>204</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_622">
<id>205</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_623">
<id>206</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_624">
<id>207</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_625">
<id>208</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_626">
<id>209</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_627">
<id>210</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_628">
<id>211</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_629">
<id>212</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_630">
<id>213</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_631">
<id>214</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_632">
<id>215</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_633">
<id>216</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_634">
<id>217</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_635">
<id>218</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_636">
<id>219</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_637">
<id>7</id>
<operations>
<count>12</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_638">
<id>137</id>
<stage>3</stage>
<latency>4</latency>
</item>
<item class_id_reference="28" object_id="_639">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_640">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_641">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_642">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_643">
<id>155</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_644">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_645">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_646">
<id>188</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_647">
<id>189</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_648">
<id>190</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_649">
<id>191</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_650">
<id>8</id>
<operations>
<count>5</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_651">
<id>137</id>
<stage>2</stage>
<latency>4</latency>
</item>
<item class_id_reference="28" object_id="_652">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_653">
<id>162</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_654">
<id>172</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_655">
<id>173</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_656">
<id>9</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_657">
<id>137</id>
<stage>1</stage>
<latency>4</latency>
</item>
<item class_id_reference="28" object_id="_658">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_659">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_660">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_661">
<id>162</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_662">
<id>173</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_663">
<id>10</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_664">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_665">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_666">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_667">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_668">
<id>160</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_669">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_670">
<id>164</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_671">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_672">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_673">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_674">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_675">
<id>169</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_676">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_677">
<id>174</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_678">
<id>175</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_679">
<id>176</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_680">
<id>177</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_681">
<id>178</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_682">
<id>179</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_683">
<id>11</id>
<operations>
<count>4</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_684">
<id>181</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_685">
<id>192</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_686">
<id>193</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_687">
<id>194</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_688">
<id>12</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_689">
<id>195</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_690">
<id>13</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_691">
<id>196</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_692">
<id>14</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_693">
<id>197</id>
<stage>68</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_694">
<id>15</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_695">
<id>197</id>
<stage>67</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_696">
<id>16</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_697">
<id>197</id>
<stage>66</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_698">
<id>17</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_699">
<id>197</id>
<stage>65</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_700">
<id>18</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_701">
<id>197</id>
<stage>64</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_702">
<id>19</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_703">
<id>197</id>
<stage>63</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_704">
<id>20</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_705">
<id>197</id>
<stage>62</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_706">
<id>21</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_707">
<id>197</id>
<stage>61</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_708">
<id>22</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_709">
<id>197</id>
<stage>60</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_710">
<id>23</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_711">
<id>197</id>
<stage>59</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_712">
<id>24</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_713">
<id>197</id>
<stage>58</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_714">
<id>25</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_715">
<id>197</id>
<stage>57</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_716">
<id>26</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_717">
<id>197</id>
<stage>56</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_718">
<id>27</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_719">
<id>197</id>
<stage>55</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_720">
<id>28</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_721">
<id>197</id>
<stage>54</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_722">
<id>29</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_723">
<id>197</id>
<stage>53</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_724">
<id>30</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_725">
<id>197</id>
<stage>52</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_726">
<id>31</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_727">
<id>197</id>
<stage>51</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_728">
<id>32</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_729">
<id>197</id>
<stage>50</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_730">
<id>33</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_731">
<id>197</id>
<stage>49</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_732">
<id>34</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_733">
<id>197</id>
<stage>48</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_734">
<id>35</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_735">
<id>197</id>
<stage>47</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_736">
<id>36</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_737">
<id>197</id>
<stage>46</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_738">
<id>37</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_739">
<id>197</id>
<stage>45</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_740">
<id>38</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_741">
<id>197</id>
<stage>44</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_742">
<id>39</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_743">
<id>197</id>
<stage>43</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_744">
<id>40</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_745">
<id>197</id>
<stage>42</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_746">
<id>41</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_747">
<id>197</id>
<stage>41</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_748">
<id>42</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_749">
<id>197</id>
<stage>40</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_750">
<id>43</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_751">
<id>197</id>
<stage>39</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_752">
<id>44</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_753">
<id>197</id>
<stage>38</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_754">
<id>45</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_755">
<id>197</id>
<stage>37</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_756">
<id>46</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_757">
<id>197</id>
<stage>36</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_758">
<id>47</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_759">
<id>197</id>
<stage>35</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_760">
<id>48</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_761">
<id>197</id>
<stage>34</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_762">
<id>49</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_763">
<id>197</id>
<stage>33</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_764">
<id>50</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_765">
<id>197</id>
<stage>32</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_766">
<id>51</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_767">
<id>197</id>
<stage>31</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_768">
<id>52</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_769">
<id>197</id>
<stage>30</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_770">
<id>53</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_771">
<id>197</id>
<stage>29</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_772">
<id>54</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_773">
<id>197</id>
<stage>28</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_774">
<id>55</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_775">
<id>197</id>
<stage>27</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_776">
<id>56</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_777">
<id>197</id>
<stage>26</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_778">
<id>57</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_779">
<id>197</id>
<stage>25</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_780">
<id>58</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_781">
<id>197</id>
<stage>24</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_782">
<id>59</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_783">
<id>197</id>
<stage>23</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_784">
<id>60</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_785">
<id>197</id>
<stage>22</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_786">
<id>61</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_787">
<id>197</id>
<stage>21</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_788">
<id>62</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_789">
<id>197</id>
<stage>20</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_790">
<id>63</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_791">
<id>197</id>
<stage>19</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_792">
<id>64</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_793">
<id>197</id>
<stage>18</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_794">
<id>65</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_795">
<id>197</id>
<stage>17</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_796">
<id>66</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_797">
<id>197</id>
<stage>16</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_798">
<id>67</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_799">
<id>197</id>
<stage>15</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_800">
<id>68</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_801">
<id>197</id>
<stage>14</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_802">
<id>69</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_803">
<id>197</id>
<stage>13</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_804">
<id>70</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_805">
<id>197</id>
<stage>12</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_806">
<id>71</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_807">
<id>197</id>
<stage>11</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_808">
<id>72</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_809">
<id>197</id>
<stage>10</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_810">
<id>73</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_811">
<id>197</id>
<stage>9</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_812">
<id>74</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_813">
<id>197</id>
<stage>8</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_814">
<id>75</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_815">
<id>197</id>
<stage>7</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_816">
<id>76</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_817">
<id>197</id>
<stage>6</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_818">
<id>77</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_819">
<id>197</id>
<stage>5</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_820">
<id>78</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_821">
<id>197</id>
<stage>4</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_822">
<id>79</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_823">
<id>197</id>
<stage>3</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_824">
<id>80</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_825">
<id>197</id>
<stage>2</stage>
<latency>68</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_826">
<id>81</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_827">
<id>197</id>
<stage>1</stage>
<latency>68</latency>
</item>
<item class_id_reference="28" object_id="_828">
<id>198</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_829">
<id>82</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_830">
<id>221</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>82</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_831">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_832">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_833">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_834">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_835">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_836">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_837">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_838">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_839">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_840">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_841">
<inState>12</inState>
<outState>13</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_842">
<inState>13</inState>
<outState>14</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_843">
<inState>14</inState>
<outState>15</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_844">
<inState>15</inState>
<outState>16</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_845">
<inState>16</inState>
<outState>17</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_846">
<inState>17</inState>
<outState>18</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_847">
<inState>18</inState>
<outState>19</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_848">
<inState>19</inState>
<outState>20</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_849">
<inState>20</inState>
<outState>21</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_850">
<inState>21</inState>
<outState>22</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_851">
<inState>22</inState>
<outState>23</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_852">
<inState>23</inState>
<outState>24</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_853">
<inState>24</inState>
<outState>25</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_854">
<inState>25</inState>
<outState>26</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_855">
<inState>26</inState>
<outState>27</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_856">
<inState>27</inState>
<outState>28</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_857">
<inState>28</inState>
<outState>29</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_858">
<inState>29</inState>
<outState>30</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_859">
<inState>30</inState>
<outState>31</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_860">
<inState>31</inState>
<outState>32</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_861">
<inState>32</inState>
<outState>33</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_862">
<inState>33</inState>
<outState>34</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_863">
<inState>34</inState>
<outState>35</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_864">
<inState>35</inState>
<outState>36</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_865">
<inState>36</inState>
<outState>37</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_866">
<inState>37</inState>
<outState>38</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_867">
<inState>38</inState>
<outState>39</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_868">
<inState>39</inState>
<outState>40</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_869">
<inState>40</inState>
<outState>41</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_870">
<inState>41</inState>
<outState>42</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_871">
<inState>42</inState>
<outState>43</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_872">
<inState>43</inState>
<outState>44</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_873">
<inState>44</inState>
<outState>45</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_874">
<inState>45</inState>
<outState>46</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_875">
<inState>46</inState>
<outState>47</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_876">
<inState>47</inState>
<outState>48</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_877">
<inState>48</inState>
<outState>49</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_878">
<inState>49</inState>
<outState>50</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_879">
<inState>50</inState>
<outState>51</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_880">
<inState>51</inState>
<outState>52</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_881">
<inState>52</inState>
<outState>53</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_882">
<inState>53</inState>
<outState>54</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_883">
<inState>54</inState>
<outState>55</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_884">
<inState>55</inState>
<outState>56</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_885">
<inState>56</inState>
<outState>57</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_886">
<inState>57</inState>
<outState>58</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_887">
<inState>58</inState>
<outState>59</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_888">
<inState>59</inState>
<outState>60</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_889">
<inState>60</inState>
<outState>61</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_890">
<inState>61</inState>
<outState>62</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_891">
<inState>62</inState>
<outState>63</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_892">
<inState>63</inState>
<outState>64</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_893">
<inState>64</inState>
<outState>65</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_894">
<inState>65</inState>
<outState>66</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_895">
<inState>66</inState>
<outState>67</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_896">
<inState>67</inState>
<outState>68</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_897">
<inState>68</inState>
<outState>69</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_898">
<inState>69</inState>
<outState>70</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_899">
<inState>70</inState>
<outState>71</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_900">
<inState>71</inState>
<outState>72</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_901">
<inState>72</inState>
<outState>73</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_902">
<inState>73</inState>
<outState>74</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_903">
<inState>74</inState>
<outState>75</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_904">
<inState>75</inState>
<outState>76</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_905">
<inState>76</inState>
<outState>77</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_906">
<inState>77</inState>
<outState>78</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_907">
<inState>78</inState>
<outState>79</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_908">
<inState>79</inState>
<outState>80</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_909">
<inState>80</inState>
<outState>81</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_910">
<inState>81</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_911">
<inState>6</inState>
<outState>82</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>116</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_912">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>116</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_913">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>control_s_axi_U (control_s_axi)</first>
<second class_id="39" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>BRAM</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>300</second>
</item>
<item>
<first>LUT</first>
<second>424</second>
</item>
</second>
</item>
<item>
<first>gmem0_m_axi_U (gmem0_m_axi)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>BRAM</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>548</second>
</item>
<item>
<first>LUT</first>
<second>700</second>
</item>
</second>
</item>
<item>
<first>mul_16ns_30s_30_2_1_U4 (mul_16ns_30s_30_2_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>157</second>
</item>
<item>
<first>LUT</first>
<second>45</second>
</item>
</second>
</item>
<item>
<first>mul_16ns_31s_31_2_1_U5 (mul_16ns_31s_31_2_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>161</second>
</item>
<item>
<first>LUT</first>
<second>47</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U1 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>40</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U2 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>40</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U3 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>40</second>
</item>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_data_V_U (memWrite_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_keep_V_U (memWrite_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_last_V_U (memWrite_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_strb_V_U (memWrite_regslice_both)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>63</count>
<item_version>0</item_version>
<item>
<first>add_fu_360_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>17</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>24</second>
</item>
</second>
</item>
<item>
<first>add_ln149_1_fu_537_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>17</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>24</second>
</item>
</second>
</item>
<item>
<first>add_ln159_fu_554_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>18</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>25</second>
</item>
</second>
</item>
<item>
<first>add_ln167_fu_908_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>71</second>
</item>
</second>
</item>
<item>
<first>add_ln199_fu_684_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>23</second>
</item>
</second>
</item>
<item>
<first>and_ln159_fu_589_p2 ( 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>and_ln186_1_fu_622_p2 ( 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>and_ln186_2_fu_628_p2 ( 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>and_ln186_fu_616_p2 ( 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>and_ln191_fu_634_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_pp0_stage0_01001 ( 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_pp0_stage0_11001 ( 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_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_state12_io ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state13_io ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state6_pp0_stage0_iter0 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_block_state81_pp0_stage0_iter75 ( 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>ap_ext_blocking_cur_n ( 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_ext_blocking_n ( and ) </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_int_blocking_n ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</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_predicate_op188_read_state6 ( 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_str_blocking_cur_n ( and ) </first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(0P0)</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_str_blocking_n ( and ) </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>cmp26_fu_405_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>i_1_fu_476_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>icmp_ln103_fu_491_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln159_1_fu_578_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>18</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln159_fu_573_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>19</second>
</item>
<item>
<first>(1P1)</first>
<second>19</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>14</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_600_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>17</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_2_fu_605_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>17</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_3_fu_610_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_595_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>17</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>icmp_ln96_fu_482_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>
<item>
<first>index_z_group_fu_761_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>16</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>lane_item_idx_1_fu_706_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>lane_item_idx_2_fu_712_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_1_fu_640_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>23</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_2_fu_654_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>out_idx_x_1_fu_690_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>16</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>out_idx_x_2_fu_698_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>out_idx_y_1_fu_662_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>16</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>23</second>
</item>
</second>
</item>
<item>
<first>out_idx_y_2_fu_676_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>select_ln153_fu_842_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>select_ln167_fu_779_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>select_ln188_fu_646_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>16</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>select_ln193_fu_668_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>16</second>
</item>
<item>
<first>(2P2)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>sub107_fu_442_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>17</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>24</second>
</item>
</second>
</item>
<item>
<first>sub111_fu_448_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>sub115_fu_458_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>sub_ln152_1_fu_746_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>23</second>
</item>
</second>
</item>
<item>
<first>sub_ln152_2_fu_564_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>19</second>
</item>
<item>
<first>(1P1)</first>
<second>19</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>26</second>
</item>
</second>
</item>
<item>
<first>sub_ln152_fu_730_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>25</second>
</item>
</second>
</item>
<item>
<first>sub_ln153_1_fu_829_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>sub_ln153_fu_810_p2 ( - ) </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>9</second>
</item>
</second>
</item>
<item>
<first>tmp11_fu_884_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>31</second>
</item>
<item>
<first>(1P1)</first>
<second>31</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>31</second>
</item>
</second>
</item>
<item>
<first>tmp43_fu_858_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>30</second>
</item>
<item>
<first>(1P1)</first>
<second>30</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>31</second>
</item>
</second>
</item>
<item>
<first>tmp6_fu_853_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>30</second>
</item>
<item>
<first>(1P1)</first>
<second>30</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>31</second>
</item>
</second>
</item>
<item>
<first>tmp_fu_877_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>31</second>
</item>
<item>
<first>(1P1)</first>
<second>31</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>31</second>
</item>
</second>
</item>
<item>
<first>top_addr_1_fu_871_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>top_addr_fu_898_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>xor_ln159_fu_583_p2 ( 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>
</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>16</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>8</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>43</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_iter75</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_phi_mux_lane_item_idx_phi_fu_299_p4</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>8</second>
</item>
<item>
<first>(2Count)</first>
<second>16</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_phi_mux_lane_num_idx_phi_fu_287_p4</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>16</second>
</item>
<item>
<first>(2Count)</first>
<second>32</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter5_top_addr_2_reg_329</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>96</second>
</item>
<item>
<first>LUT</first>
<second>14</second>
</item>
</second>
</item>
<item>
<first>conv_in_TDATA_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>gmem0_blk_n_AW</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>gmem0_blk_n_B</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>gmem0_blk_n_W</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_reg_272</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Count)</first>
<second>64</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>lane_item_idx_reg_295</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>8</second>
</item>
<item>
<first>(2Count)</first>
<second>16</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_reg_283</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>16</second>
</item>
<item>
<first>(2Count)</first>
<second>32</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>out_idx_x_reg_318</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>16</second>
</item>
<item>
<first>(2Count)</first>
<second>32</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>out_idx_y_reg_307</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>16</second>
</item>
<item>
<first>(2Count)</first>
<second>32</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>130</count>
<item_version>0</item_version>
<item>
<first>add_ln149_1_reg_1084</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>and_ln159_reg_1103</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_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>7</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>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_iter10</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_iter11</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_iter12</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_iter13</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_iter14</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_iter15</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_iter16</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_iter17</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_iter18</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_iter19</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_enable_reg_pp0_iter20</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_iter21</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_iter22</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_iter23</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_iter24</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_iter25</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_iter26</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_iter27</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_iter28</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_iter29</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_iter3</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_iter30</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_iter31</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_iter32</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_iter33</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_iter34</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_iter35</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_iter36</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_iter37</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_iter38</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_iter39</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_iter4</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_iter40</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_iter41</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_iter42</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_iter43</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_iter44</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_iter45</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_iter46</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_iter47</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_iter48</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_iter49</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_iter5</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_iter50</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_iter51</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_iter52</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_iter53</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_iter54</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_iter55</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_iter56</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_iter57</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_iter58</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_iter59</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_iter6</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_iter60</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_iter61</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_iter62</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_iter63</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_iter64</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_iter65</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_iter66</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_iter67</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_iter68</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_iter69</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_iter7</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_iter70</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_iter71</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_iter72</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_iter73</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_iter74</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_iter75</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_iter8</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_iter9</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_ext_blocking_n_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_int_blocking_n_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter1_top_addr_2_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter2_top_addr_2_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter3_top_addr_2_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter4_top_addr_2_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_phi_reg_pp0_iter5_top_addr_2_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>ap_rst_n_inv</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_rst_reg_1</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_rst_reg_2</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_str_blocking_n_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>buffer_0_fu_176</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>buffer_1_fu_180</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>cmp26_reg_1023</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>conv35_reg_1032</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>16</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>div_reg_983</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>gmem0_addr_reg_1187</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>64</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>i_reg_272</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>icmp_ln96_reg_1077</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>index_z_group_reg_1132</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>lane_item_idx_2_reg_1122</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>lane_item_idx_reg_295</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_2_reg_1107</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_reg_283</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>lane_num_idx_reg_283_pp0_iter1_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>mul33_cast_reg_1027</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>mul42_cast_reg_1037</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>mul_ln149_1_reg_1172</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>mul_ln154_reg_1167</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>30</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>30</second>
</item>
</second>
</item>
<item>
<first>mul_ln96_1_reg_1057</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>out_dim1_cast_reg_968</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>out_dim2_cast_reg_973</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>out_dim3_cast14_reg_1008</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>19</second>
</item>
<item>
<first>(Consts)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>out_idx_x_reg_318</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>out_idx_y_reg_307</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>padd_offset_cast12_reg_1013</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>19</second>
</item>
<item>
<first>(Consts)</first>
<second>11</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>padd_offset_cast_reg_1018</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>10</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>select_ln167_reg_1137</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>sext_ln96_reg_1052</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>sub107_reg_1042</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>sub111_cast_reg_1047</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>17</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>sub_ln152_2_reg_1090</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>19</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>19</second>
</item>
</second>
</item>
<item>
<first>sub_ln153_reg_1162</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>tmp_1_reg_1127</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>top_read_reg_1003</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>64</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>trunc_ln148_reg_1097</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>trunc_ln149_1_reg_1152</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>30</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>30</second>
</item>
</second>
</item>
<item>
<first>trunc_ln149_2_reg_1157</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>trunc_ln149_reg_1062</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>trunc_ln154_reg_1067</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>30</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>30</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>13</count>
<item_version>0</item_version>
<item>
<first>am_addmul_16ns_16ns_16ns_32_4_1_U7</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>control_s_axi_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>gmem0_m_axi_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_16ns_30s_30_2_1_U4</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_16ns_31s_31_2_1_U5</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U1</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U2</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U3</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_mul_16ns_17ns_32_4_1_U6</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_data_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_keep_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_last_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>regslice_both_conv_in_V_strb_V_U</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="41" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>mul_16ns_30s_30_2_1_U4 (mul_16ns_30s_30_2_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>mul_16ns_31s_31_2_1_U5 (mul_16ns_31s_31_2_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U1 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U2 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U3 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>48</count>
<item_version>0</item_version>
<item>
<first>add_fu_360_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>add_ln149_1_fu_537_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>add_ln159_fu_554_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>add_ln167_fu_908_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>add_ln199_fu_684_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>and_ln159_fu_589_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>and_ln186_1_fu_622_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>and_ln186_2_fu_628_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>and_ln186_fu_616_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>and_ln191_fu_634_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>cmp26_fu_405_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>i_1_fu_476_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>icmp_ln103_fu_491_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>icmp_ln159_1_fu_578_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>icmp_ln159_fu_573_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_600_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>icmp_ln186_2_fu_605_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>icmp_ln186_3_fu_610_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_595_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>icmp_ln96_fu_482_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>index_z_group_fu_761_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>lane_item_idx_1_fu_706_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>lane_item_idx_2_fu_712_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>lane_num_idx_1_fu_640_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</second>
</item>
<item>
<first>lane_num_idx_2_fu_654_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>out_idx_x_1_fu_690_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>out_idx_x_2_fu_698_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>out_idx_y_1_fu_662_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>out_idx_y_2_fu_676_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>select_ln153_fu_842_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>select_ln167_fu_779_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>select_ln188_fu_646_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>select_ln193_fu_668_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>sub107_fu_442_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>sub111_fu_448_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>sub115_fu_458_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>sub_ln152_1_fu_746_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>sub_ln152_2_fu_564_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>sub_ln152_fu_730_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>sub_ln153_1_fu_829_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>sub_ln153_fu_810_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>tmp11_fu_884_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>tmp43_fu_858_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>tmp6_fu_853_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>tmp_fu_877_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>top_addr_1_fu_871_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>top_addr_fu_898_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>xor_ln159_fu_583_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</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>147</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>18</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>1</first>
<second>3</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>5</first>
<second>3</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>7</first>
<second>1</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>7</first>
<second>1</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>13</first>
<second>67</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>80</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>81</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>108</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>4</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>5</first>
<second>9</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>5</first>
<second>9</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>6</first>
<second>9</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>7</first>
<second>9</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>5</first>
<second>10</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>6</first>
<second>80</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>6</first>
<second>6</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="_914">
<region_name>VITIS_LOOP_96_1</region_name>
<basic_blocks>
<count>9</count>
<item_version>0</item_version>
<item>118</item>
<item>124</item>
<item>132</item>
<item>150</item>
<item>171</item>
<item>180</item>
<item>187</item>
<item>199</item>
<item>220</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>76</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>133</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>184</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>196</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>244</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>256</first>
<second>
<count>69</count>
<item_version>0</item_version>
<item>195</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
</second>
</item>
<item>
<first>263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</second>
</item>
<item>
<first>276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>360</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>380</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>423</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>430</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>435</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>442</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>476</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>487</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>501</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>505</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>525</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>537</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>554</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>578</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>622</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>628</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>634</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</second>
</item>
<item>
<first>646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>698</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>706</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>730</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>736</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>746</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>769</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>775</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>787</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>790</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>162</item>
<item>162</item>
</second>
</item>
<item>
<first>795</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>799</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>173</item>
<item>173</item>
</second>
</item>
<item>
<first>804</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>807</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>810</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>815</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>819</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>835</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>842</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>853</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>863</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>871</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>877</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>881</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>890</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>898</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>908</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>913</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>919</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>104</item>
<item>104</item>
<item>104</item>
<item>104</item>
</second>
</item>
<item>
<first>925</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>135</item>
<item>136</item>
<item>137</item>
<item>137</item>
<item>137</item>
<item>137</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>112</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>add_cast_fu_366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>add_fu_360</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>add_ln149_1_cast18_fu_881</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>add_ln149_1_fu_537</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>add_ln159_fu_554</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>add_ln167_fu_908</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>193</item>
</second>
</item>
<item>
<first>add_ln199_fu_684</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>and_ln159_fu_589</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>and_ln186_1_fu_622</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</second>
</item>
<item>
<first>and_ln186_2_fu_628</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</second>
</item>
<item>
<first>and_ln186_fu_616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>and_ln191_fu_634</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>batch_indx_dim1_cast_fu_427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>batch_indx_dim2_cast_fu_411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>buffer_0_fu_176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>buffer_1_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>cmp26_fu_405</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>conv35_fu_423</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>conv_in_tmp_data_V_fu_497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</second>
</item>
<item>
<first>div_cast_fu_439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>div_fu_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>gmem0_addr_fu_913</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>i_1_fu_476</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>i_phi_fu_276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln103_fu_491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>122</item>
</second>
</item>
<item>
<first>icmp_ln159_1_fu_578</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</second>
</item>
<item>
<first>icmp_ln159_fu_573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>182</item>
</second>
</item>
<item>
<first>icmp_ln186_1_fu_600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>201</item>
</second>
</item>
<item>
<first>icmp_ln186_2_fu_605</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</second>
</item>
<item>
<first>icmp_ln186_3_fu_610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</second>
</item>
<item>
<first>icmp_ln186_fu_595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>200</item>
</second>
</item>
<item>
<first>icmp_ln96_fu_482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>index_z_group_fu_761</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>lane_item_idx_1_fu_706</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>217</item>
</second>
</item>
<item>
<first>lane_item_idx_2_fu_712</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>lane_item_idx_phi_fu_299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>lane_num_idx_1_fu_640</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>208</item>
</second>
</item>
<item>
<first>lane_num_idx_2_fu_654</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>lane_num_idx_phi_fu_287</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>mul33_cast_fu_419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>mul33_fu_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>mul42_cast_fu_435</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>mul42_fu_430</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>mul4_cast_fu_356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>mul4_fu_348</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>mul_ln96_fu_380</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>out_dim1_cast11_fu_390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>out_dim1_cast_fu_338</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>out_dim2_cast10_fu_393</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>out_dim2_cast_fu_341</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>out_dim3_cast14_fu_396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>out_dim3_cast_fu_344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>out_idx_x_1_fu_690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>out_idx_x_2_fu_698</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>out_idx_x_phi_fu_322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>out_idx_y_1_fu_662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>out_idx_y_2_fu_676</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>out_idx_y_phi_fu_311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>output_lane_2_fu_505</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>output_lane_fu_501</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</second>
</item>
<item>
<first>p_and_t_cast_fu_822</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>159</item>
</second>
</item>
<item>
<first>padd_offset_cast12_fu_399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>padd_offset_cast_fu_402</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>select_ln153_fu_842</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>164</item>
</second>
</item>
<item>
<first>select_ln167_fu_779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>select_ln188_fu_646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</second>
</item>
<item>
<first>select_ln193_fu_668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>sext_ln96_fu_464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>shl_ln_fu_542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>sub107_fu_442</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>sub111_cast_fu_454</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>sub111_fu_448</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>sub115_fu_458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>sub_ln152_1_fu_746</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>155</item>
</second>
</item>
<item>
<first>sub_ln152_2_fu_564</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>sub_ln152_fu_730</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>sub_ln153_1_fu_829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>sub_ln153_fu_810</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>tmp11_fu_884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>tmp2_fu_890</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>tmp43_fu_858</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>tmp5_fu_863</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>tmp6_fu_853</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>tmp_1_fu_723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>tmp_4_fu_835</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>tmp_fu_877</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>top_addr_1_fu_871</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>top_addr_2_phi_fu_332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>top_addr_fu_898</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>trunc_ln148_fu_569</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>trunc_ln149_1_fu_804</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>trunc_ln149_2_fu_807</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>trunc_ln149_fu_468</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>trunc_ln152_2_fu_736</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</second>
</item>
<item>
<first>trunc_ln152_3_fu_752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>trunc_ln152_fu_720</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>151</item>
</second>
</item>
<item>
<first>trunc_ln154_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>trunc_ln167_fu_775</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>xor_ln159_fu_583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>zext_ln103_1_fu_487</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>zext_ln103_fu_815</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>zext_ln149_1_fu_529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>zext_ln149_3_fu_533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>zext_ln149_4_fu_795</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>zext_ln149_fu_525</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>zext_ln154_1_fu_849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>165</item>
</second>
</item>
<item>
<first>zext_ln154_fu_787</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>zext_ln159_1_fu_550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>zext_ln159_2_fu_560</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>zext_ln159_fu_819</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>zext_ln167_fu_904</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>192</item>
</second>
</item>
<item>
<first>zext_ln96_fu_386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>4</count>
<item_version>0</item_version>
<item>
<first>grp_fu_790</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>162</item>
<item>162</item>
</second>
</item>
<item>
<first>grp_fu_799</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>173</item>
<item>173</item>
</second>
</item>
<item>
<first>grp_fu_919</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>104</item>
<item>104</item>
<item>104</item>
<item>104</item>
</second>
</item>
<item>
<first>grp_fu_925</first>
<second>
<count>6</count>
<item_version>0</item_version>
<item>135</item>
<item>136</item>
<item>137</item>
<item>137</item>
<item>137</item>
<item>137</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>17</count>
<item_version>0</item_version>
<item>
<first>batch_indx_dim1_read_read_fu_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>batch_indx_dim2_read_read_fu_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>buffer_0_load_load_fu_769</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>buffer_1_load_load_fu_772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>empty_read_fu_244</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_256</first>
<second>
<count>69</count>
<item_version>0</item_version>
<item>195</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
<item>197</item>
</second>
</item>
<item>
<first>out_dim1_read_read_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>out_dim1x2xbatch_read_read_fu_232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>out_dim1xbatch_read_read_fu_238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>out_dim2_read_read_fu_184</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>out_dim3_read_read_fu_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>padd_offset_read_read_fu_196</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>pool_on_read_read_fu_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>store_ln144_store_fu_515</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>129</item>
</second>
</item>
<item>
<first>store_ln144_store_fu_520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>130</item>
</second>
</item>
<item>
<first>top_read_read_fu_220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>write_ln167_write_fu_263</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>196</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>56</count>
<item_version>0</item_version>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>933</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>939</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>957</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>963</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>968</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>973</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>978</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>983</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>993</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>998</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>1008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>1013</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>1018</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>1023</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>1027</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>1032</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>1037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>1042</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>1047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>1052</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>1072</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>1077</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>1084</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>1090</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>1097</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>1107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>1112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>1117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>1122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>1127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>1137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>1142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>1147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>1152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>1157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>1162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>1167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>1172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>1177</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>1182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>1187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>56</count>
<item_version>0</item_version>
<item>
<first>add_cast_reg_978</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>add_ln149_1_reg_1084</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>and_ln159_reg_1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</second>
</item>
<item>
<first>batch_indx_dim1_read_reg_998</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>batch_indx_dim2_read_reg_993</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>buffer_0_reg_933</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>buffer_1_reg_939</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>cmp26_reg_1023</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>conv35_reg_1032</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>div_reg_983</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>gmem0_addr_reg_1187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>i_1_reg_1072</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>i_reg_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>icmp_ln96_reg_1077</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>index_z_group_reg_1132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>157</item>
</second>
</item>
<item>
<first>lane_item_idx_2_reg_1122</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</second>
</item>
<item>
<first>lane_item_idx_reg_295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>lane_num_idx_2_reg_1107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>lane_num_idx_reg_283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>mul33_cast_reg_1027</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>mul42_cast_reg_1037</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>mul_ln149_1_reg_1172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>mul_ln154_reg_1167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>mul_ln96_1_reg_1057</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>out_dim1_cast_reg_968</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>out_dim1_read_reg_951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>out_dim2_cast_reg_973</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>out_dim2_read_reg_945</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>out_dim3_cast14_reg_1008</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>out_dim3_read_reg_963</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>out_idx_x_2_reg_1117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>216</item>
</second>
</item>
<item>
<first>out_idx_x_reg_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>out_idx_y_2_reg_1112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>out_idx_y_reg_307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>padd_offset_cast12_reg_1013</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>padd_offset_cast_reg_1018</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>padd_offset_read_reg_957</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>select_ln167_reg_1137</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>sext_ln96_reg_1052</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>sub107_reg_1042</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>sub111_cast_reg_1047</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>sub_ln152_2_reg_1090</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>sub_ln153_reg_1162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>158</item>
</second>
</item>
<item>
<first>tmp_1_reg_1127</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>top_addr_1_reg_1177</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>top_addr_2_reg_329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>top_addr_reg_1182</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>top_read_reg_1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>trunc_ln148_reg_1097</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>trunc_ln149_1_reg_1152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>trunc_ln149_2_reg_1157</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>trunc_ln149_reg_1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>trunc_ln154_reg_1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>zext_ln149_4_reg_1147</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>zext_ln154_reg_1142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>zext_ln96_reg_988</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>6</count>
<item_version>0</item_version>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>6</count>
<item_version>0</item_version>
<item>
<first>i_reg_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>lane_item_idx_reg_295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>111</item>
</second>
</item>
<item>
<first>lane_num_idx_reg_283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>out_idx_x_reg_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>out_idx_y_reg_307</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>top_addr_2_reg_329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="57" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>batch_indx_dim1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
</second>
</item>
<item>
<first>batch_indx_dim2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_in_V_data_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_in_V_keep_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_in_V_last_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</second>
</item>
<item>
<first>conv_in_V_strb_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</second>
</item>
<item>
<first>gmem0</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>out_dim1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
</second>
</item>
<item>
<first>out_dim1x2xbatch</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
</second>
</item>
<item>
<first>out_dim1xbatch</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
</second>
</item>
<item>
<first>out_dim2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
</second>
</item>
<item>
<first>out_dim3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
</second>
</item>
<item>
<first>padd_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>67</item>
</second>
</item>
</second>
</item>
<item>
<first>pool_on</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
</second>
</item>
<item>
<first>pool_size</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>pool_stride</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>top</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>71</count>
<item_version>0</item_version>
<item>
<first>65</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>1150</first>
<second>155</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>12</first>
<second>3</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>888</first>
<second>111</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>12</first>
<second>3</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>12</first>
<second>3</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>12</first>
<second>3</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>1155</first>
<second>128</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>1151</first>
<second>128</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>1155</first>
<second>128</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
-- { dg-do run }
with GNAT.Table;
with Ada.Text_IO; use Ada.Text_IO;
procedure test_table1 is
type Rec is record
A, B, C, D, E : Integer := 0;
F, G, H, I, J : Integer := 1;
K, L, M, N, O : Integer := 2;
end record;
R : Rec;
package Tab is new GNAT.Table (Rec, Positive, 1, 4, 30);
Last : Natural;
begin
R.O := 3;
Tab.Append (R);
for J in 1 .. 1_000_000 loop
Last := Tab.Last;
begin
Tab.Append (Tab.Table (Last));
exception
when others =>
Put_Line ("exception raise for J =" & J'Img);
raise;
end;
if Tab.Table (Tab.Last) /= R then
Put_Line ("Last is not what is expected");
Put_Line (J'Img);
return;
end if;
end loop;
end;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . C O N C A T _ 4 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2008-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains a procedure for runtime concatenation of four string
-- operands. It is used when we want to save space in the generated code.
pragma Compiler_Unit_Warning;
package System.Concat_4 is
procedure Str_Concat_4 (R : out String; S1, S2, S3, S4 : String);
-- Performs the operation R := S1 & S2 & S3 & S4. The bounds
-- of R are known to be correct (usually set by a call to the
-- Str_Concat_Bounds_5 procedure below), so no bounds checks are required,
-- and it is known that none of the input operands overlaps R. No
-- assumptions can be made about the lower bounds of any of the operands.
procedure Str_Concat_Bounds_4
(Lo, Hi : out Natural;
S1, S2, S3, S4 : String);
-- Assigns to Lo..Hi the bounds of the result of concatenating the four
-- given strings, following the rules in the RM regarding null operands.
end System.Concat_4;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- H O S T P A R M --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package defines some system dependent parameters for GNAT. These
-- are parameters that are relevant to the host machine on which the
-- compiler is running, and thus this package is part of the compiler.
with Types;
package Hostparm is
---------------------
-- HOST Parameters --
---------------------
Gnat_VMSp : Integer;
pragma Import (C, Gnat_VMSp, "__gnat_vmsp");
OpenVMS : Boolean := Gnat_VMSp /= 0;
-- Set True for OpenVMS host. See also OpenVMS target boolean in
-- system-vms.ads and system-vms_64.ads and OpenVMS_On_Target boolean in
-- Targparm. This is not a constant, because it can be modified by -gnatdm.
Direct_Separator : constant Character;
pragma Import (C, Direct_Separator, "__gnat_dir_separator");
Normalized_CWD : constant String := "." & Direct_Separator;
-- Normalized string to access current directory
Max_Line_Length : constant := Types.Column_Number'Pred
(Types.Column_Number'Last);
-- Maximum source line length. By default we set it to the maximum
-- value that can be supported, which is given by the range of the
-- Column_Number type. We subtract 1 because need to be able to
-- have a valid Column_Number equal to Max_Line_Length to represent
-- the location of a "line too long" error.
-- 200 is the minimum value required (RM 2.2(15)). The value set here
-- can be reduced by the explicit use of the -gnatyM style switch.
Max_Name_Length : constant := 1024;
-- Maximum length of unit name (including all dots, and " (spec)") and
-- of file names in the library, must be at least Max_Line_Length, but
-- can be larger.
Max_Instantiations : constant := 4000;
-- Maximum number of instantiations permitted (to stop runaway cases
-- of nested instantiations). These situations probably only occur in
-- specially concocted test cases.
Tag_Errors : constant Boolean := False;
-- If set to true, then brief form error messages will be prefaced by
-- the string "error:". Used as default for Opt.Unique_Error_Tag.
Exclude_Missing_Objects : constant Boolean := True;
-- If set to true, gnatbind will exclude from consideration all
-- non-existent .o files.
Max_Debug_Name_Length : constant := 256;
-- If a generated qualified debug name exceeds this length, then it
-- is automatically compressed, regardless of the setting of the
-- Compress_Debug_Names switch controlled by -gnatC.
end Hostparm;
|
------------------------------------------------------------------------------
-- --
-- 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.Internals.UML_Classifiers;
with AMF.String_Collections;
with AMF.UML.Behaviors.Collections;
with AMF.UML.Classifier_Template_Parameters;
with AMF.UML.Classifiers.Collections;
with AMF.UML.Collaboration_Uses.Collections;
with AMF.UML.Constraints.Collections;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Element_Imports.Collections;
with AMF.UML.Extends.Collections;
with AMF.UML.Extension_Points.Collections;
with AMF.UML.Features.Collections;
with AMF.UML.Generalization_Sets.Collections;
with AMF.UML.Generalizations.Collections;
with AMF.UML.Includes.Collections;
with AMF.UML.Interface_Realizations.Collections;
with AMF.UML.Named_Elements.Collections;
with AMF.UML.Namespaces;
with AMF.UML.Package_Imports.Collections;
with AMF.UML.Packageable_Elements.Collections;
with AMF.UML.Packages.Collections;
with AMF.UML.Parameterable_Elements.Collections;
with AMF.UML.Properties.Collections;
with AMF.UML.Redefinable_Elements.Collections;
with AMF.UML.Redefinable_Template_Signatures;
with AMF.UML.String_Expressions;
with AMF.UML.Substitutions.Collections;
with AMF.UML.Template_Bindings.Collections;
with AMF.UML.Template_Parameters;
with AMF.UML.Template_Signatures;
with AMF.UML.Types;
with AMF.UML.Use_Cases.Collections;
with AMF.Visitors;
package AMF.Internals.UML_Use_Cases is
type UML_Use_Case_Proxy is
limited new AMF.Internals.UML_Classifiers.UML_Classifier_Proxy
and AMF.UML.Use_Cases.UML_Use_Case with null record;
overriding function Get_Extend
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Extends.Collections.Set_Of_UML_Extend;
-- Getter of UseCase::extend.
--
-- References the Extend relationships owned by this use case.
overriding function Get_Extension_Point
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Extension_Points.Collections.Set_Of_UML_Extension_Point;
-- Getter of UseCase::extensionPoint.
--
-- References the ExtensionPoints owned by the use case.
overriding function Get_Include
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Includes.Collections.Set_Of_UML_Include;
-- Getter of UseCase::include.
--
-- References the Include relationships owned by this use case.
overriding function Get_Subject
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of UseCase::subject.
--
-- References the subjects to which this use case applies. The subject or
-- its parts realize all the use cases that apply to this subject. Use
-- cases need not be attached to any specific subject, however. The
-- subject may, but need not, own the use cases that apply to it.
overriding function Get_Classifier_Behavior
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Behaviors.UML_Behavior_Access;
-- Getter of BehavioredClassifier::classifierBehavior.
--
-- A behavior specification that specifies the behavior of the classifier
-- itself.
overriding procedure Set_Classifier_Behavior
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Behaviors.UML_Behavior_Access);
-- Setter of BehavioredClassifier::classifierBehavior.
--
-- A behavior specification that specifies the behavior of the classifier
-- itself.
overriding function Get_Interface_Realization
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Interface_Realizations.Collections.Set_Of_UML_Interface_Realization;
-- Getter of BehavioredClassifier::interfaceRealization.
--
-- The set of InterfaceRealizations owned by the BehavioredClassifier.
-- Interface realizations reference the Interfaces of which the
-- BehavioredClassifier is an implementation.
overriding function Get_Owned_Behavior
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Behaviors.Collections.Set_Of_UML_Behavior;
-- Getter of BehavioredClassifier::ownedBehavior.
--
-- References behavior specifications owned by a classifier.
overriding function Get_Attribute
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Properties.Collections.Set_Of_UML_Property;
-- Getter of Classifier::attribute.
--
-- Refers to all of the Properties that are direct (i.e. not inherited or
-- imported) attributes of the classifier.
overriding function Get_Collaboration_Use
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Collaboration_Uses.Collections.Set_Of_UML_Collaboration_Use;
-- Getter of Classifier::collaborationUse.
--
-- References the collaboration uses owned by the classifier.
overriding function Get_Feature
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Features.Collections.Set_Of_UML_Feature;
-- Getter of Classifier::feature.
--
-- Specifies each feature defined in the classifier.
-- Note that there may be members of the Classifier that are of the type
-- Feature but are not included in this association, e.g. inherited
-- features.
overriding function Get_General
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of Classifier::general.
--
-- Specifies the general Classifiers for this Classifier.
-- References the general classifier in the Generalization relationship.
overriding function Get_Generalization
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Generalizations.Collections.Set_Of_UML_Generalization;
-- Getter of Classifier::generalization.
--
-- Specifies the Generalization relationships for this Classifier. These
-- Generalizations navigaten to more general classifiers in the
-- generalization hierarchy.
overriding function Get_Inherited_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Classifier::inheritedMember.
--
-- Specifies all elements inherited by this classifier from the general
-- classifiers.
overriding function Get_Is_Abstract
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Getter of Classifier::isAbstract.
--
-- If true, the Classifier does not provide a complete declaration and can
-- typically not be instantiated. An abstract classifier is intended to be
-- used by other classifiers e.g. as the target of general
-- metarelationships or generalization relationships.
overriding function Get_Is_Final_Specialization
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Getter of Classifier::isFinalSpecialization.
--
-- If true, the Classifier cannot be specialized by generalization. Note
-- that this property is preserved through package merge operations; that
-- is, the capability to specialize a Classifier (i.e.,
-- isFinalSpecialization =false) must be preserved in the resulting
-- Classifier of a package merge operation where a Classifier with
-- isFinalSpecialization =false is merged with a matching Classifier with
-- isFinalSpecialization =true: the resulting Classifier will have
-- isFinalSpecialization =false.
overriding procedure Set_Is_Final_Specialization
(Self : not null access UML_Use_Case_Proxy;
To : Boolean);
-- Setter of Classifier::isFinalSpecialization.
--
-- If true, the Classifier cannot be specialized by generalization. Note
-- that this property is preserved through package merge operations; that
-- is, the capability to specialize a Classifier (i.e.,
-- isFinalSpecialization =false) must be preserved in the resulting
-- Classifier of a package merge operation where a Classifier with
-- isFinalSpecialization =false is merged with a matching Classifier with
-- isFinalSpecialization =true: the resulting Classifier will have
-- isFinalSpecialization =false.
overriding function Get_Owned_Template_Signature
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access;
-- Getter of Classifier::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding procedure Set_Owned_Template_Signature
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access);
-- Setter of Classifier::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding function Get_Owned_Use_Case
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case;
-- Getter of Classifier::ownedUseCase.
--
-- References the use cases owned by this classifier.
overriding function Get_Powertype_Extent
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Generalization_Sets.Collections.Set_Of_UML_Generalization_Set;
-- Getter of Classifier::powertypeExtent.
--
-- Designates the GeneralizationSet of which the associated Classifier is
-- a power type.
overriding function Get_Redefined_Classifier
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of Classifier::redefinedClassifier.
--
-- References the Classifiers that are redefined by this Classifier.
overriding function Get_Representation
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access;
-- Getter of Classifier::representation.
--
-- References a collaboration use which indicates the collaboration that
-- represents this classifier.
overriding procedure Set_Representation
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access);
-- Setter of Classifier::representation.
--
-- References a collaboration use which indicates the collaboration that
-- represents this classifier.
overriding function Get_Substitution
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Substitutions.Collections.Set_Of_UML_Substitution;
-- Getter of Classifier::substitution.
--
-- References the substitutions that are owned by this Classifier.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access;
-- Getter of Classifier::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access);
-- Setter of Classifier::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Get_Use_Case
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case;
-- Getter of Classifier::useCase.
--
-- The set of use cases for which this Classifier is the subject.
overriding function Get_Element_Import
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import;
-- Getter of Namespace::elementImport.
--
-- References the ElementImports owned by the Namespace.
overriding function Get_Imported_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Getter of Namespace::importedMember.
--
-- References the PackageableElements that are members of this Namespace
-- as a result of either PackageImports or ElementImports.
overriding function Get_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::member.
--
-- A collection of NamedElements identifiable within the Namespace, either
-- by being owned or by being introduced by importing or inheritance.
overriding function Get_Owned_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::ownedMember.
--
-- A collection of NamedElements owned by the Namespace.
overriding function Get_Owned_Rule
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Namespace::ownedRule.
--
-- Specifies a set of Constraints owned by this Namespace.
overriding function Get_Package_Import
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import;
-- Getter of Namespace::packageImport.
--
-- References the PackageImports owned by the Namespace.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Get_Package
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Packages.UML_Package_Access;
-- Getter of Type::package.
--
-- Specifies the owning package of this classifier, if any.
overriding procedure Set_Package
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Packages.UML_Package_Access);
-- Setter of Type::package.
--
-- Specifies the owning package of this classifier, if any.
overriding function Get_Owning_Template_Parameter
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding procedure Set_Owning_Template_Parameter
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Get_Owned_Template_Signature
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Template_Signatures.UML_Template_Signature_Access;
-- Getter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding procedure Set_Owned_Template_Signature
(Self : not null access UML_Use_Case_Proxy;
To : AMF.UML.Template_Signatures.UML_Template_Signature_Access);
-- Setter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding function Get_Template_Binding
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Template_Bindings.Collections.Set_Of_UML_Template_Binding;
-- Getter of TemplateableElement::templateBinding.
--
-- The optional bindings from this element to templates.
overriding function Get_Is_Leaf
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Getter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding procedure Set_Is_Leaf
(Self : not null access UML_Use_Case_Proxy;
To : Boolean);
-- Setter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding function Get_Redefined_Element
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element;
-- Getter of RedefinableElement::redefinedElement.
--
-- The redefinable element that is being redefined by this element.
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of RedefinableElement::redefinitionContext.
--
-- References the contexts that this element may be redefined from.
overriding function All_Included_Use_Cases
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case;
-- Operation UseCase::allIncludedUseCases.
--
-- The query allIncludedUseCases() returns the transitive closure of all
-- use cases (directly or indirectly) included by this use case.
overriding function All_Features
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Features.Collections.Set_Of_UML_Feature;
-- Operation Classifier::allFeatures.
--
-- The query allFeatures() gives all of the features in the namespace of
-- the classifier. In general, through mechanisms such as inheritance,
-- this will be a larger set than feature.
overriding function Conforms_To
(Self : not null access constant UML_Use_Case_Proxy;
Other : AMF.UML.Classifiers.UML_Classifier_Access)
return Boolean;
-- Operation Classifier::conformsTo.
--
-- The query conformsTo() gives true for a classifier that defines a type
-- that conforms to another. This is used, for example, in the
-- specification of signature conformance for operations.
overriding function General
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Operation Classifier::general.
--
-- The general classifiers are the classifiers referenced by the
-- generalization relationships.
overriding function Has_Visibility_Of
(Self : not null access constant UML_Use_Case_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access)
return Boolean;
-- Operation Classifier::hasVisibilityOf.
--
-- The query hasVisibilityOf() determines whether a named element is
-- visible in the classifier. By default all are visible. It is only
-- called when the argument is something owned by a parent.
overriding function Inherit
(Self : not null access constant UML_Use_Case_Proxy;
Inhs : AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inherit.
--
-- The query inherit() defines how to inherit a set of elements. Here the
-- operation is defined to inherit them all. It is intended to be
-- redefined in circumstances where inheritance is affected by
-- redefinition.
-- The inherit operation is overridden to exclude redefined properties.
overriding function Inheritable_Members
(Self : not null access constant UML_Use_Case_Proxy;
C : AMF.UML.Classifiers.UML_Classifier_Access)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inheritableMembers.
--
-- The query inheritableMembers() gives all of the members of a classifier
-- that may be inherited in one of its descendants, subject to whatever
-- visibility restrictions apply.
overriding function Inherited_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Classifier::inheritedMember.
--
-- The inheritedMember association is derived by inheriting the
-- inheritable members of the parents.
-- The inheritedMember association is derived by inheriting the
-- inheritable members of the parents.
overriding function Is_Template
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Operation Classifier::isTemplate.
--
-- The query isTemplate() returns whether this templateable element is
-- actually a template.
overriding function May_Specialize_Type
(Self : not null access constant UML_Use_Case_Proxy;
C : AMF.UML.Classifiers.UML_Classifier_Access)
return Boolean;
-- Operation Classifier::maySpecializeType.
--
-- The query maySpecializeType() determines whether this classifier may
-- have a generalization relationship to classifiers of the specified
-- type. By default a classifier may specialize classifiers of the same or
-- a more general type. It is intended to be redefined by classifiers that
-- have different specialization constraints.
overriding function Exclude_Collisions
(Self : not null access constant UML_Use_Case_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::excludeCollisions.
--
-- The query excludeCollisions() excludes from a set of
-- PackageableElements any that would not be distinguishable from each
-- other in this namespace.
overriding function Get_Names_Of_Member
(Self : not null access constant UML_Use_Case_Proxy;
Element : AMF.UML.Named_Elements.UML_Named_Element_Access)
return AMF.String_Collections.Set_Of_String;
-- Operation Namespace::getNamesOfMember.
--
-- The query getNamesOfMember() takes importing into account. It gives
-- back the set of names that an element would have in an importing
-- namespace, either because it is owned, or if not owned then imported
-- individually, or if not individually then from a package.
-- The query getNamesOfMember() gives a set of all of the names that a
-- member would have in a Namespace. In general a member can have multiple
-- names in a Namespace if it is imported more than once with different
-- aliases. The query takes account of importing. It gives back the set of
-- names that an element would have in an importing namespace, either
-- because it is owned, or if not owned then imported individually, or if
-- not individually then from a package.
overriding function Import_Members
(Self : not null access constant UML_Use_Case_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importMembers.
--
-- The query importMembers() defines which of a set of PackageableElements
-- are actually imported into the namespace. This excludes hidden ones,
-- i.e., those which have names that conflict with names of owned members,
-- and also excludes elements which would have the same name when imported.
overriding function Imported_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importedMember.
--
-- The importedMember property is derived from the ElementImports and the
-- PackageImports. References the PackageableElements that are members of
-- this Namespace as a result of either PackageImports or ElementImports.
overriding function Members_Are_Distinguishable
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Operation Namespace::membersAreDistinguishable.
--
-- The Boolean query membersAreDistinguishable() determines whether all of
-- the namespace's members are distinguishable within it.
overriding function Owned_Member
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Namespace::ownedMember.
--
-- Missing derivation for Namespace::/ownedMember : NamedElement
overriding function All_Owning_Packages
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Use_Case_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding function Conforms_To
(Self : not null access constant UML_Use_Case_Proxy;
Other : AMF.UML.Types.UML_Type_Access)
return Boolean;
-- Operation Type::conformsTo.
--
-- The query conformsTo() gives true for a type that conforms to another.
-- By default, two types do not conform to each other. This query is
-- intended to be redefined for specific conformance situations.
overriding function Is_Compatible_With
(Self : not null access constant UML_Use_Case_Proxy;
P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return Boolean;
-- Operation ParameterableElement::isCompatibleWith.
--
-- The query isCompatibleWith() determines if this parameterable element
-- is compatible with the specified parameterable element. By default
-- parameterable element P is compatible with parameterable element Q if
-- the kind of P is the same or a subtype as the kind of Q. Subclasses
-- should override this operation to specify different compatibility
-- constraints.
overriding function Is_Template_Parameter
(Self : not null access constant UML_Use_Case_Proxy)
return Boolean;
-- Operation ParameterableElement::isTemplateParameter.
--
-- The query isTemplateParameter() determines if this parameterable
-- element is exposed as a formal template parameter.
overriding function Parameterable_Elements
(Self : not null access constant UML_Use_Case_Proxy)
return AMF.UML.Parameterable_Elements.Collections.Set_Of_UML_Parameterable_Element;
-- Operation TemplateableElement::parameterableElements.
--
-- The query parameterableElements() returns the set of elements that may
-- be used as the parametered elements for a template parameter of this
-- templateable element. By default, this set includes all the owned
-- elements. Subclasses may override this operation if they choose to
-- restrict the set of parameterable elements.
overriding function Is_Consistent_With
(Self : not null access constant UML_Use_Case_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isConsistentWith.
--
-- The query isConsistentWith() specifies, for any two RedefinableElements
-- in a context in which redefinition is possible, whether redefinition
-- would be logically consistent. By default, this is false; this
-- operation must be overridden for subclasses of RedefinableElement to
-- define the consistency conditions.
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Use_Case_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isRedefinitionContextValid.
--
-- The query isRedefinitionContextValid() specifies whether the
-- redefinition contexts of this RedefinableElement are properly related
-- to the redefinition contexts of the specified RedefinableElement to
-- allow this element to redefine the other. By default at least one of
-- the redefinition contexts of this element must be a specialization of
-- at least one of the redefinition contexts of the specified element.
overriding procedure Enter_Element
(Self : not null access constant UML_Use_Case_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Leave_Element
(Self : not null access constant UML_Use_Case_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Visit_Element
(Self : not null access constant UML_Use_Case_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of iterator interface.
end AMF.Internals.UML_Use_Cases;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- T E M P D I R --
-- --
-- S p e c --
-- --
-- Copyright (C) 2003 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package is used by gnatmake and by the Project Manager to create
-- temporary files. If environment variable TMPDIR is defined and
-- designates an absolute path, temporary files are create in this directory.
-- Otherwise, temporary files are created in the current working directory.
with GNAT.OS_Lib; use GNAT.OS_Lib;
with Types; use Types;
package Tempdir is
procedure Create_Temp_File
(FD : out File_Descriptor;
Name : out Name_Id);
-- Create a temporary text file and return its file descriptor and
-- its path name as a Name_Id. If environment variable TMPDIR is defined
-- and its value is an absolute path, the temp file is created in the
-- directory designated by TMPDIR, otherwise, it is created in the current
-- directory. If temporary file cannot be created, FD gets the value
-- Invalid_FD and Name gets the value No_Name.
end Tempdir;
|
-----------------------------------------------------------------------
-- are-installer-bundles -- Merge bundles for distribution artifact
-- Copyright (C) 2013, 2021 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
-- == Install mode: bundles ==
-- The `Are.Installer.Bundles` package provides distribution rules
-- to merge a list of bundles to the distribution area. The rule is
-- created by using the following XML definition:
--
-- <install mode='bundles' source-timestamp='true'>
-- <fileset dir='bundles'>
-- <include name="**/*.properties"/>
-- </fileset>
-- </install>
--
private package Are.Installer.Bundles is
-- Create a distribution rule to concatenate a set of files.
function Create_Rule (Node : in DOM.Core.Node) return Distrib_Rule_Access;
-- ------------------------------
-- Distribution artifact
-- ------------------------------
type Bundle_Rule is new Distrib_Rule with private;
type Bundle_Rule_Access is access all Bundle_Rule'Class;
-- Get a name to qualify the installation rule (used for logs).
overriding
function Get_Install_Name (Rule : in Bundle_Rule) return String;
-- Install the file <b>File</b> according to the distribution rule.
-- Merge all the files listed in <b>Files</b> in the target path specified by <b>Path</b>.
overriding
procedure Install (Rule : in Bundle_Rule;
Path : in String;
Files : in File_Vector;
Context : in out Context_Type'Class);
private
type Bundle_Rule is new Distrib_Rule with null record;
end Are.Installer.Bundles;
|
with AVTAS.LMCP.ByteBuffers; use AVTAS.LMCP.ByteBuffers;
package -<full_series_name_dots>-.Factory is
HEADER_SIZE : constant := 8;
CHECKSUM_SIZE : constant := 4;
SERIESNAME_SIZE : constant := 8;
LMCP_CONTROL_STR : constant := 16#4c4d4350#;
function packMessage(rootObject : in avtas.lmcp.object.Object_Any; enableChecksum : in Boolean) return ByteBuffer;
procedure getObject(buffer : in out ByteBuffer; output : out avtas.lmcp.object.Object_Any);
function createObject(seriesId : in Int64; msgType : in UInt32; version: in UInt16) return avtas.lmcp.object.Object_Any;
function CalculateChecksum (Buffer : in ByteBuffer) return UInt32;
-- Computes the modular checksum for the Buffer contents. Assumes
-- Big Endian order.
--
-- The checksum calculation does not include those bytes that either will,
-- or already do hold the UInt32 checksum stored at the very end of the
-- buffer
function getObjectSize(buffer : in ByteBuffer) return UInt32;
function Validate (Buffer : in ByteBuffer) return Boolean;
-- Validates a buffer by comparing a newly computed checksum with the
-- previously computed checksum value stored with the message
-- in the buffer. Assumes the buffer is in Big Endian byte order.
end -<full_series_name_dots>-.Factory;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- I N T E R F A C E S . V X W O R K S . I N T _ C O N N E C T I O N --
-- --
-- B o d y --
-- --
-- Copyright (C) 2016, AdaCore
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
package body Interfaces.VxWorks.Int_Connection is
Connection_Routine : Interrupt_Connector;
pragma Import (C, Connection_Routine, "__gnat_user_int_connect");
-- Declared in System.Interrupts. Defaults to the standard OS connector in
-- System.OS_Interface (or Interfaces.VxWorks for restricted runtimes).
-------------
-- Connect --
-------------
procedure Connect (Connector : Interrupt_Connector) is
begin
Connection_Routine := Connector;
end Connect;
end Interfaces.VxWorks.Int_Connection;
|
<?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>farthest_point_sampling</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>gmem</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>2</direction>
<if_type>4</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>in_r</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>out_r</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>236</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>out_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>322</item>
<item>323</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>in_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>p_min_distance_distance_array</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/hanmeng/Documents/tinyFPS/hls</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>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>14</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>_min_distance.distance_array</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>327</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>p_min_distance_distance_mask</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>14</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>_min_distance.distance_mask</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>328</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>br_ln51</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>51</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>329</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.60</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<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>331</item>
<item>332</item>
<item>333</item>
<item>334</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>icmp_ln51</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>51</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>335</item>
<item>337</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.61</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>i_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>51</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>338</item>
<item>340</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.73</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>br_ln51</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>51</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>341</item>
<item>342</item>
<item>343</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>zext_ln52</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>351</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>array_distance_array_addr</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>352</item>
<item>354</item>
<item>355</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>array_distance_array_addr_write_ln52</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>357</item>
<item>358</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>array_distance_mask_addr</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>359</item>
<item>360</item>
<item>361</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>array_distance_mask_addr_write_ln53</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>init_distance</contextFuncName>
<contextNormFuncName>init_distance</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>init_distance</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>363</item>
<item>364</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>365</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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>p_farthest_point_data_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>345</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>p_farthest_point_data_2_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>346</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>p_farthest_point_data_2_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>347</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>trunc_ln32</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>348</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>trunc_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>349</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>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>350</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.60</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>i_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>367</item>
<item>368</item>
<item>369</item>
<item>370</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>p_farthest_point_data_2_load</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>371</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>p_farthest_point_data_2_1_load</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>372</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>p_farthest_point_data_2_2_load</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>373</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>icmp_ln31</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>31</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>31</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>374</item>
<item>376</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.34</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>add_ln31</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>31</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>31</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>377</item>
<item>379</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>br_ln31</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>31</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>31</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
<item>382</item>
</oprand_edges>
<opcode>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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>trunc_ln32_1_cast</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>383</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>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>add_ln32</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>384</item>
<item>385</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.14</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>trunc_ln32_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>62</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>387</item>
<item>388</item>
<item>390</item>
<item>392</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>sext_ln32</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>393</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>gmem_addr</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>394</item>
<item>395</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>gmem_load_req</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</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>397</item>
<item>398</item>
<item>399</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>gmem_addr_read</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>401</item>
<item>402</item>
<item>1157</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>7.30</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>add_ln32_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>403</item>
<item>404</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>shl_ln</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>406</item>
<item>407</item>
<item>409</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>zext_ln32</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>410</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>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>lshr_ln32</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>411</item>
<item>412</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.05</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>p_farthest_point_data_0_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>_farthest_point.data[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>413</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>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>add_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>414</item>
<item>415</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.14</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>zext_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>416</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>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>add_ln33_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>417</item>
<item>418</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>zext_ln33_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>419</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>shl_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>421</item>
<item>422</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.48</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>shl_ln33_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>423</item>
<item>424</item>
<item>425</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>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>zext_ln33_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>426</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>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>shl_ln33_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>427</item>
<item>428</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>trunc_ln6</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>62</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>429</item>
<item>430</item>
<item>431</item>
<item>432</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>sext_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>433</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>gmem_addr_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>434</item>
<item>435</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>empty_69</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</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>437</item>
<item>438</item>
<item>439</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>gmem_addr_1_write_ln33</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>441</item>
<item>442</item>
<item>443</item>
<item>444</item>
<item>1156</item>
<item>1158</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>7.30</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>empty_70</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>33</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>446</item>
<item>447</item>
<item>1155</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>448</item>
<item>449</item>
<item>450</item>
<item>451</item>
<item>452</item>
<item>453</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.49</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>p_farthest_point_data_2_1_write_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>837</item>
<item>838</item>
<item>1167</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>br_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>839</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>p_farthest_point_data_2_write_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>454</item>
<item>455</item>
<item>1166</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>br_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>456</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>p_farthest_point_data_2_2_write_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>840</item>
<item>841</item>
<item>1165</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>br_ln34</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>34</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>34</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>842</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>457</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>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>origin_point_pix_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>origin_point_pix[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>458</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>origin_point_pix_2_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>origin_point_pix[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>459</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>origin_point_pix_2_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>origin_point_pix[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>460</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>p_farthest_point_data_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>461</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>p_farthest_point_data_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>462</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>p_farthest_point_data_2_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_farthest_point.data[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>463</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>array_distance_mask_addr_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>36</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>464</item>
<item>465</item>
<item>466</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>array_distance_mask_addr_1_write_ln36</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>36</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>468</item>
<item>469</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>p_farthest_point_data_2_3_write_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>470</item>
<item>471</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>p_farthest_point_data_1_write_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>472</item>
<item>473</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>p_farthest_point_data_0_write_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>474</item>
<item>475</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>br_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</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>476</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.60</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>i_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>478</item>
<item>479</item>
<item>480</item>
<item>481</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>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>icmp_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</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>482</item>
<item>484</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.63</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>add_ln67_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>485</item>
<item>487</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>br_ln38</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>38</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>488</item>
<item>489</item>
<item>490</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>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>br_ln67</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>491</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.60</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>i_4</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>492</item>
<item>493</item>
<item>494</item>
<item>495</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>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>icmp_ln67</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</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>496</item>
<item>497</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.34</m_delay>
<m_topoIndex>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>add_ln67</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>498</item>
<item>499</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>br_ln67</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</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>500</item>
<item>501</item>
<item>502</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>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>p_farthest_point_data_0_load</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>503</item>
<item>1170</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>p_farthest_point_data_1_load</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>504</item>
<item>1169</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>p_farthest_point_data_2_3_load</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>505</item>
<item>1168</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>origin_point_pix_0</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>origin_point_pix[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>507</item>
<item>508</item>
<item>509</item>
<item>510</item>
<item>511</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.39</m_delay>
<m_topoIndex>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>512</item>
<item>513</item>
<item>514</item>
<item>515</item>
<item>516</item>
<item>517</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.49</m_delay>
<m_topoIndex>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>origin_point_pix_2_1_write_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>831</item>
<item>832</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>br_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</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>833</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>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>origin_point_pix_2_write_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>518</item>
<item>519</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>br_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</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>520</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>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>origin_point_pix_2_2_write_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>834</item>
<item>835</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>br_ln68</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>68</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>836</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>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>521</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>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>origin_point_pix_2_load</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>522</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>origin_point_pix_2_1_load</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>523</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>origin_point_pix_2_2_load</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>524</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>origin_point_pix_0_1_cast</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>525</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>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>origin_point_pix_1_1_cast</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>526</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>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>zext_ln72</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>527</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>br_ln72</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>528</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.60</m_delay>
<m_topoIndex>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>max_distance</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>max_distance</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>530</item>
<item>531</item>
<item>532</item>
<item>533</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>159</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>max_index</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>max_index</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>535</item>
<item>536</item>
<item>537</item>
<item>538</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>160</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>i_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<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>539</item>
<item>540</item>
<item>541</item>
<item>542</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>icmp_ln72</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>543</item>
<item>544</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.61</m_delay>
<m_topoIndex>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>i_6</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>545</item>
<item>546</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.73</m_delay>
<m_topoIndex>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>br_ln72</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</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>547</item>
<item>548</item>
<item>549</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>i_5_cast9</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>72</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>72</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>550</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>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>zext_ln73</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>73</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>73</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>551</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>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>zext_ln73_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>73</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>73</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>552</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>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>array_distance_mask_addr_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>73</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>73</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>553</item>
<item>554</item>
<item>555</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>array_distance_mask_load</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>73</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>73</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>556</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>br_ln73</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>73</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>73</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>557</item>
<item>558</item>
<item>559</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.60</m_delay>
<m_topoIndex>161</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>trunc_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>560</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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>shl_ln74_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>562</item>
<item>563</item>
<item>564</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>zext_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>565</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>sub_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>566</item>
<item>567</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.74</m_delay>
<m_topoIndex>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>sext_ln74_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>568</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>trunc_ln74_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>569</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>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>add_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>570</item>
<item>571</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.14</m_delay>
<m_topoIndex>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>add_ln74_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>572</item>
<item>573</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>tmp_19</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</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>575</item>
<item>576</item>
<item>577</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>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>trunc_ln7</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>62</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>578</item>
<item>579</item>
<item>580</item>
<item>581</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>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>sext_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>582</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>gmem_addr_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>583</item>
<item>584</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>tmp_20</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</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>585</item>
<item>586</item>
<item>587</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>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>select_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>588</item>
<item>589</item>
<item>590</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.27</m_delay>
<m_topoIndex>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>empty_74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</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>592</item>
<item>593</item>
<item>594</item>
</oprand_edges>
<opcode>readreq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>gmem_addr_2_read</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>596</item>
<item>597</item>
<item>1159</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>1</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>1</m_isLCDNode>
<m_isStartOfPath>1</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>br_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</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>598</item>
<item>599</item>
<item>600</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>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>gmem_addr_2_read_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>601</item>
<item>602</item>
<item>1180</item>
<item>1181</item>
<item>2147483647</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>1</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>1</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>130</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>br_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</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>603</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>131</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name>empty_75</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>604</item>
<item>605</item>
<item>607</item>
<item>608</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>133</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>p_farthest_point_data_0_load_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>609</item>
<item>1178</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>165</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>p_farthest_point_data_1_load_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>610</item>
<item>1176</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>166</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>p_farthest_point_data_2_3_load_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>611</item>
<item>1174</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>167</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>tmp</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>613</item>
<item>614</item>
<item>615</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>134</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>shl_ln1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>616</item>
<item>617</item>
<item>618</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>135</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>zext_ln74_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>619</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>136</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>lshr_ln74</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>620</item>
<item>621</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.09</m_delay>
<m_topoIndex>137</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>xi</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>xi</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>622</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>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>yi</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>yi</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>624</item>
<item>625</item>
<item>627</item>
<item>629</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>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>zi</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>zi</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>630</item>
<item>631</item>
<item>633</item>
<item>635</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>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>zext_ln78</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</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>636</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>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>sub_ln78</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>637</item>
<item>638</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>sext_ln78</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>639</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name>conv26_i</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>640</item>
</oprand_edges>
<opcode>sitodp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.65</m_delay>
<m_topoIndex>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name>tmp_s</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>7</lineNumber>
<contextFuncName>pow</contextFuncName>
<contextNormFuncName>pow</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</first>
<second>pow</second>
</first>
<second>7</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>14</count>
<item_version>0</item_version>
<item>642</item>
<item>643</item>
<item>843</item>
<item>844</item>
<item>845</item>
<item>846</item>
<item>847</item>
<item>848</item>
<item>849</item>
<item>850</item>
<item>851</item>
<item>852</item>
<item>853</item>
<item>854</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>1.72</m_delay>
<m_topoIndex>149</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>224</id>
<name>zext_ln78_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</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>644</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>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>sub_ln78_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>645</item>
<item>646</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>146</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name>sext_ln78_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>647</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>147</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>227</id>
<name>conv31_i</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>648</item>
</oprand_edges>
<opcode>sitodp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.65</m_delay>
<m_topoIndex>148</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>228</id>
<name>tmp_8</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>7</lineNumber>
<contextFuncName>pow</contextFuncName>
<contextNormFuncName>pow</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</first>
<second>pow</second>
</first>
<second>7</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>14</count>
<item_version>0</item_version>
<item>649</item>
<item>650</item>
<item>855</item>
<item>856</item>
<item>857</item>
<item>858</item>
<item>859</item>
<item>860</item>
<item>861</item>
<item>862</item>
<item>863</item>
<item>864</item>
<item>865</item>
<item>866</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>1.72</m_delay>
<m_topoIndex>150</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name>add_i</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>651</item>
<item>652</item>
</oprand_edges>
<opcode>dadd</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.08</m_delay>
<m_topoIndex>156</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>230</id>
<name>zext_ln78_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</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>653</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>151</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>sub_ln78_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>654</item>
<item>655</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>152</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name>sext_ln78_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>656</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>153</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>233</id>
<name>conv36_i</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>657</item>
</oprand_edges>
<opcode>sitodp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.65</m_delay>
<m_topoIndex>154</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>234</id>
<name>tmp_9</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>7</lineNumber>
<contextFuncName>pow</contextFuncName>
<contextNormFuncName>pow</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/src/c/powdouble.cpp</first>
<second>pow</second>
</first>
<second>7</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>14</count>
<item_version>0</item_version>
<item>658</item>
<item>659</item>
<item>867</item>
<item>868</item>
<item>869</item>
<item>870</item>
<item>871</item>
<item>872</item>
<item>873</item>
<item>874</item>
<item>875</item>
<item>876</item>
<item>877</item>
<item>878</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>1.72</m_delay>
<m_topoIndex>155</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name>f</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>660</item>
<item>661</item>
</oprand_edges>
<opcode>dadd</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.08</m_delay>
<m_topoIndex>157</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>236</id>
<name>p_Val2_s</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>482</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<contextNormFuncName>fp_struct</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>482</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>662</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>237</id>
<name>p_Repl2_4</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_int_ref.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>628</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_int_ref.h</first>
<second>get</second>
</first>
<second>628</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Repl2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>664</item>
<item>665</item>
<item>667</item>
<item>669</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>163</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name>p_Repl2_s</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_int_ref.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>628</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_int_ref.h</first>
<second>get</second>
</first>
<second>628</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Repl2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>670</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>164</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>239</id>
<name>mantissa_V</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>682</lineNumber>
<contextFuncName>operator=&lt;53, 1, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_53_1_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator=&lt;53, 1, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>682</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mantissa.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>54</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>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>168</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name>zext_ln68</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>68</lineNumber>
<contextFuncName>generic_cast_IEEE754&lt;unsigned int, AP_TRN_ZERO, double&gt;</contextFuncName>
<contextNormFuncName>generic_cast_IEEE754_unsigned_int_AP_TRN_ZERO_double_s</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;unsigned int, AP_TRN_ZERO, double&gt;</second>
</first>
<second>68</second>
</item>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/hlsmath/include/FloatingPoint/hls_case_IEEE754.h</first>
<second>generic_cast_IEEE754&lt;unsigned int, double&gt;</second>
</first>
<second>117</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>137</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>676</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>169</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name>zext_ln509</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>509</lineNumber>
<contextFuncName>expv</contextFuncName>
<contextNormFuncName>expv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</first>
<second>expv</second>
</first>
<second>509</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>677</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>170</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>242</id>
<name>add_ln509</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>509</lineNumber>
<contextFuncName>expv</contextFuncName>
<contextNormFuncName>expv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/src/hls/utils/x_hls_utils.h</first>
<second>expv</second>
</first>
<second>509</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sh</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>679</item>
<item>680</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.73</m_delay>
<m_topoIndex>171</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name>isNeg</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1310</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1310</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>isNeg</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>682</item>
<item>683</item>
<item>685</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>172</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>244</id>
<name>sub_ln1311</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1311</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1311</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>687</item>
<item>688</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.73</m_delay>
<m_topoIndex>173</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>245</id>
<name>sext_ln1311</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1311</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1311</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>689</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>174</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>246</id>
<name>ush</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1311</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1311</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ush</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>690</item>
<item>691</item>
<item>692</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.29</m_delay>
<m_topoIndex>175</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>247</id>
<name>sh_prom_i_i_i_cast_cast_cast</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1311</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1311</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>693</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>176</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>248</id>
<name>sh_prom_i_i_i_cast_cast_cast_cast</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1311</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1311</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>137</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>694</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>177</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>249</id>
<name>r_V</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1287</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1287</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>137</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>695</item>
<item>696</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_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>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>250</id>
<name>r_V_17</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1253</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1253</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>137</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>697</item>
<item>698</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>179</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>251</id>
<name>tmp_22</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>662</lineNumber>
<contextFuncName>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_137_84_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>662</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>700</item>
<item>701</item>
<item>703</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>180</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>252</id>
<name>zext_ln662</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>662</lineNumber>
<contextFuncName>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_137_84_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>662</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>704</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>181</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>253</id>
<name>tmp_15</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>662</lineNumber>
<contextFuncName>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_137_84_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator=&lt;137, 84, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>662</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>706</item>
<item>707</item>
<item>708</item>
<item>710</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>182</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>254</id>
<name>val_V</name>
<fileName>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</fileName>
<fileDirectory>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</fileDirectory>
<lineNumber>1312</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2020.1/continuous/2020_05_27_2902540/src/shared/hls/clib/include/header_files/ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1312</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>val.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>711</item>
<item>712</item>
<item>713</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>1.12</m_delay>
<m_topoIndex>183</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>255</id>
<name>array_distance_array_addr_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>714</item>
<item>715</item>
<item>716</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>256</id>
<name>tmp_distance</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_distance</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>717</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>158</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>257</id>
<name>icmp_ln81</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>81</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>81</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>718</item>
<item>719</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.85</m_delay>
<m_topoIndex>184</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>258</id>
<name>min_distance</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>81</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>81</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>min_distance</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>720</item>
<item>721</item>
<item>722</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.22</m_delay>
<m_topoIndex>185</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>259</id>
<name>array_distance_array_addr_1_write_ln82</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>82</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>723</item>
<item>724</item>
<item>1154</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>186</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>260</id>
<name>icmp_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>725</item>
<item>726</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.85</m_delay>
<m_topoIndex>187</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>261</id>
<name>select_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>727</item>
<item>728</item>
<item>729</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>188</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>262</id>
<name>select_ln83_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>730</item>
<item>731</item>
<item>732</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>189</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>263</id>
<name>select_ln83_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>733</item>
<item>734</item>
<item>735</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.30</m_delay>
<m_topoIndex>190</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>264</id>
<name>select_ln83_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>736</item>
<item>737</item>
<item>738</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.24</m_delay>
<m_topoIndex>191</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>265</id>
<name>select_ln83_4</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>739</item>
<item>740</item>
<item>741</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.22</m_delay>
<m_topoIndex>192</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>266</id>
<name>p_farthest_point_data_2_3_write_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>742</item>
<item>743</item>
<item>1160</item>
<item>1175</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>193</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>267</id>
<name>p_farthest_point_data_1_write_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>744</item>
<item>745</item>
<item>1161</item>
<item>1177</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>194</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>268</id>
<name>p_farthest_point_data_0_write_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>746</item>
<item>747</item>
<item>1162</item>
<item>1179</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.60</m_delay>
<m_topoIndex>195</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>269</id>
<name>br_ln83</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>83</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>83</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>748</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.60</m_delay>
<m_topoIndex>196</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>271</id>
<name>max_index_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>max_index</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>749</item>
<item>750</item>
<item>751</item>
<item>752</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>197</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>272</id>
<name>max_distance_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>max_distance</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>753</item>
<item>754</item>
<item>755</item>
<item>756</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>198</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>273</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>757</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>199</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>275</id>
<name>add_ln67_1_cast6</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</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>200</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_203">
<Value>
<Obj>
<type>0</type>
<id>276</id>
<name>p_shl3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</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>760</item>
<item>761</item>
<item>762</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>201</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_204">
<Value>
<Obj>
<type>0</type>
<id>277</id>
<name>p_shl3_cast</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</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>763</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>202</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_205">
<Value>
<Obj>
<type>0</type>
<id>278</id>
<name>empty_76</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>764</item>
<item>765</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>203</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_206">
<Value>
<Obj>
<type>0</type>
<id>279</id>
<name>sext_ln84</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>84</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>84</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>766</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>204</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_207">
<Value>
<Obj>
<type>0</type>
<id>280</id>
<name>zext_ln92</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>767</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>205</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_208">
<Value>
<Obj>
<type>0</type>
<id>281</id>
<name>array_distance_mask_addr_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>768</item>
<item>769</item>
<item>770</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>206</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_209">
<Value>
<Obj>
<type>0</type>
<id>282</id>
<name>array_distance_mask_addr_2_write_ln92</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>92</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>92</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>771</item>
<item>772</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.15</m_delay>
<m_topoIndex>207</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_210">
<Value>
<Obj>
<type>0</type>
<id>283</id>
<name>empty_77</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>67</lineNumber>
<contextFuncName>distance_max_point</contextFuncName>
<contextNormFuncName>distance_max_point</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>distance_max_point</second>
</first>
<second>67</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>773</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>208</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_211">
<Value>
<Obj>
<type>0</type>
<id>284</id>
<name>br_ln40</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>40</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>774</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.60</m_delay>
<m_topoIndex>209</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_212">
<Value>
<Obj>
<type>0</type>
<id>286</id>
<name>j</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>775</item>
<item>776</item>
<item>777</item>
<item>778</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>210</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_213">
<Value>
<Obj>
<type>0</type>
<id>288</id>
<name>icmp_ln40</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>40</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>779</item>
<item>780</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.34</m_delay>
<m_topoIndex>211</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_214">
<Value>
<Obj>
<type>0</type>
<id>290</id>
<name>add_ln40</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>40</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>781</item>
<item>782</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.43</m_delay>
<m_topoIndex>212</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_215">
<Value>
<Obj>
<type>0</type>
<id>291</id>
<name>br_ln40</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>40</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>783</item>
<item>784</item>
<item>785</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>213</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_216">
<Value>
<Obj>
<type>0</type>
<id>293</id>
<name>p_farthest_point_data_0_load_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>786</item>
<item>1173</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>220</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_217">
<Value>
<Obj>
<type>0</type>
<id>294</id>
<name>p_farthest_point_data_1_load_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>787</item>
<item>1172</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>221</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_218">
<Value>
<Obj>
<type>0</type>
<id>295</id>
<name>p_farthest_point_data_2_3_load_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>788</item>
<item>1171</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>222</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_219">
<Value>
<Obj>
<type>0</type>
<id>296</id>
<name>trunc_ln41_1_cast</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>789</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>214</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_220">
<Value>
<Obj>
<type>0</type>
<id>298</id>
<name>tmp_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>790</item>
<item>791</item>
<item>792</item>
<item>793</item>
<item>794</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.39</m_delay>
<m_topoIndex>223</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_221">
<Value>
<Obj>
<type>0</type>
<id>299</id>
<name>add_ln41_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>795</item>
<item>796</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>215</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_222">
<Value>
<Obj>
<type>0</type>
<id>300</id>
<name>add_ln41</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>797</item>
<item>798</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.84</m_delay>
<m_topoIndex>216</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_223">
<Value>
<Obj>
<type>0</type>
<id>301</id>
<name>zext_ln41</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>799</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>224</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_224">
<Value>
<Obj>
<type>0</type>
<id>302</id>
<name>add_ln41_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>800</item>
<item>801</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>225</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_225">
<Value>
<Obj>
<type>0</type>
<id>303</id>
<name>add_ln41_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>802</item>
<item>803</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.14</m_delay>
<m_topoIndex>226</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_226">
<Value>
<Obj>
<type>0</type>
<id>304</id>
<name>zext_ln41_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>804</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>227</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_227">
<Value>
<Obj>
<type>0</type>
<id>305</id>
<name>shl_ln41</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>805</item>
<item>806</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.48</m_delay>
<m_topoIndex>228</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_228">
<Value>
<Obj>
<type>0</type>
<id>306</id>
<name>shl_ln41_1</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>807</item>
<item>808</item>
<item>809</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>229</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_229">
<Value>
<Obj>
<type>0</type>
<id>307</id>
<name>zext_ln41_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>810</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>230</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_230">
<Value>
<Obj>
<type>0</type>
<id>308</id>
<name>shl_ln41_2</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>811</item>
<item>812</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.70</m_delay>
<m_topoIndex>231</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_231">
<Value>
<Obj>
<type>0</type>
<id>309</id>
<name>trunc_ln8</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>62</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>813</item>
<item>814</item>
<item>815</item>
<item>816</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>217</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_232">
<Value>
<Obj>
<type>0</type>
<id>310</id>
<name>sext_ln41</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>817</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>218</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_233">
<Value>
<Obj>
<type>0</type>
<id>311</id>
<name>gmem_addr_3</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>818</item>
<item>819</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>219</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_234">
<Value>
<Obj>
<type>0</type>
<id>312</id>
<name>empty_79</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</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>820</item>
<item>821</item>
<item>822</item>
</oprand_edges>
<opcode>writereq</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>232</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_235">
<Value>
<Obj>
<type>0</type>
<id>313</id>
<name>gmem_addr_3_write_ln41</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</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>823</item>
<item>824</item>
<item>825</item>
<item>826</item>
<item>1164</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>7.30</m_delay>
<m_topoIndex>233</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_236">
<Value>
<Obj>
<type>0</type>
<id>314</id>
<name>empty_80</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>41</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>827</item>
<item>828</item>
<item>1163</item>
</oprand_edges>
<opcode>writeresp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>7.30</m_delay>
<m_topoIndex>234</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_237">
<Value>
<Obj>
<type>0</type>
<id>315</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>829</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>235</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_238">
<Value>
<Obj>
<type>0</type>
<id>317</id>
<name>br_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>830</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>236</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_239">
<Value>
<Obj>
<type>0</type>
<id>319</id>
<name>_ln47</name>
<fileName>fps.c</fileName>
<fileDirectory>/home/hanmeng/Documents/tinyFPS/hls</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>farthest_point_sampling</contextFuncName>
<contextNormFuncName>farthest_point_sampling</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/hanmeng/Documents/tinyFPS/hls</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>fps.c</first>
<second>farthest_point_sampling</second>
</first>
<second>47</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>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>34</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_240">
<Value>
<Obj>
<type>2</type>
<id>326</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_241">
<Value>
<Obj>
<type>2</type>
<id>330</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_242">
<Value>
<Obj>
<type>2</type>
<id>336</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1024</content>
</item>
<item class_id_reference="16" object_id="_243">
<Value>
<Obj>
<type>2</type>
<id>339</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_244">
<Value>
<Obj>
<type>2</type>
<id>344</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_245">
<Value>
<Obj>
<type>2</type>
<id>353</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_246">
<Value>
<Obj>
<type>2</type>
<id>356</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>131072</content>
</item>
<item class_id_reference="16" object_id="_247">
<Value>
<Obj>
<type>2</type>
<id>362</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_248">
<Value>
<Obj>
<type>2</type>
<id>366</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_249">
<Value>
<Obj>
<type>2</type>
<id>375</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_250">
<Value>
<Obj>
<type>2</type>
<id>378</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_251">
<Value>
<Obj>
<type>2</type>
<id>389</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_252">
<Value>
<Obj>
<type>2</type>
<id>391</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_253">
<Value>
<Obj>
<type>2</type>
<id>408</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_254">
<Value>
<Obj>
<type>2</type>
<id>420</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_255">
<Value>
<Obj>
<type>2</type>
<id>467</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_256">
<Value>
<Obj>
<type>2</type>
<id>477</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_257">
<Value>
<Obj>
<type>2</type>
<id>483</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_258">
<Value>
<Obj>
<type>2</type>
<id>486</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_259">
<Value>
<Obj>
<type>2</type>
<id>529</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_260">
<Value>
<Obj>
<type>2</type>
<id>534</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>5</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_261">
<Value>
<Obj>
<type>2</type>
<id>606</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>5</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_262">
<Value>
<Obj>
<type>2</type>
<id>626</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_263">
<Value>
<Obj>
<type>2</type>
<id>628</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_264">
<Value>
<Obj>
<type>2</type>
<id>632</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_265">
<Value>
<Obj>
<type>2</type>
<id>634</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_266">
<Value>
<Obj>
<type>2</type>
<id>641</id>
<name>pow_generic_double_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:pow_generic<double>></content>
</item>
<item class_id_reference="16" object_id="_267">
<Value>
<Obj>
<type>2</type>
<id>666</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>52</content>
</item>
<item class_id_reference="16" object_id="_268">
<Value>
<Obj>
<type>2</type>
<id>668</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>62</content>
</item>
<item class_id_reference="16" object_id="_269">
<Value>
<Obj>
<type>2</type>
<id>678</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>3073</content>
</item>
<item class_id_reference="16" object_id="_270">
<Value>
<Obj>
<type>2</type>
<id>684</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_271">
<Value>
<Obj>
<type>2</type>
<id>686</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1023</content>
</item>
<item class_id_reference="16" object_id="_272">
<Value>
<Obj>
<type>2</type>
<id>702</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>53</content>
</item>
<item class_id_reference="16" object_id="_273">
<Value>
<Obj>
<type>2</type>
<id>709</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>84</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>31</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_274">
<Obj>
<type>3</type>
<id>42</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_275">
<Obj>
<type>3</type>
<id>49</id>
<name>bb47</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>43</item>
<item>45</item>
<item>47</item>
<item>48</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_276">
<Obj>
<type>3</type>
<id>57</id>
<name>bb47.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_277">
<Obj>
<type>3</type>
<id>64</id>
<name>bb46.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_278">
<Obj>
<type>3</type>
<id>74</id>
<name>bb46</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>70</item>
<item>72</item>
<item>73</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_279">
<Obj>
<type>3</type>
<id>103</id>
<name>bb46.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>27</count>
<item_version>0</item_version>
<item>75</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_280">
<Obj>
<type>3</type>
<id>106</id>
<name>branch4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>104</item>
<item>105</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_281">
<Obj>
<type>3</type>
<id>109</id>
<name>bb46.split.bb46.split49_crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>107</item>
<item>108</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_282">
<Obj>
<type>3</type>
<id>112</id>
<name>branch5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>110</item>
<item>111</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_283">
<Obj>
<type>3</type>
<id>114</id>
<name>bb46.split49</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_284">
<Obj>
<type>3</type>
<id>127</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>12</count>
<item_version>0</item_version>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
<item>124</item>
<item>125</item>
<item>126</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_285">
<Obj>
<type>3</type>
<id>133</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
<item>131</item>
<item>132</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_286">
<Obj>
<type>3</type>
<id>136</id>
<name>.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_287">
<Obj>
<type>3</type>
<id>143</id>
<name>bb45</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>137</item>
<item>139</item>
<item>141</item>
<item>142</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_288">
<Obj>
<type>3</type>
<id>150</id>
<name>bb45.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
<item>146</item>
<item>148</item>
<item>149</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_289">
<Obj>
<type>3</type>
<id>153</id>
<name>branch1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>151</item>
<item>152</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_290">
<Obj>
<type>3</type>
<id>156</id>
<name>bb45.split.bb45.split14_crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>154</item>
<item>155</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_291">
<Obj>
<type>3</type>
<id>159</id>
<name>branch2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>157</item>
<item>158</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_292">
<Obj>
<type>3</type>
<id>161</id>
<name>bb45.split14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_293">
<Obj>
<type>3</type>
<id>169</id>
<name>bb44</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_294">
<Obj>
<type>3</type>
<id>178</id>
<name>bb48</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>170</item>
<item>171</item>
<item>172</item>
<item>174</item>
<item>176</item>
<item>177</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_295">
<Obj>
<type>3</type>
<id>186</id>
<name>bb48.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>179</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_296">
<Obj>
<type>3</type>
<id>204</id>
<name>bb43</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>17</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_297">
<Obj>
<type>3</type>
<id>207</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>205</item>
<item>206</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_298">
<Obj>
<type>3</type>
<id>270</id>
<name>bb43._crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>62</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_299">
<Obj>
<type>3</type>
<id>274</id>
<name>bb48.split._crit_edge</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
<item>273</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_300">
<Obj>
<type>3</type>
<id>285</id>
<name>distance_max_point.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>10</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_301">
<Obj>
<type>3</type>
<id>292</id>
<name>bb</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>286</item>
<item>288</item>
<item>290</item>
<item>291</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_302">
<Obj>
<type>3</type>
<id>316</id>
<name>bb.split</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>22</count>
<item_version>0</item_version>
<item>293</item>
<item>294</item>
<item>295</item>
<item>296</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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_303">
<Obj>
<type>3</type>
<id>318</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>317</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_304">
<Obj>
<type>3</type>
<id>320</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>319</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>539</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_305">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>329</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>330</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>332</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>334</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>336</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>342</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>343</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>350</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>356</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>362</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>365</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>368</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>370</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>375</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>381</id>
<edge_type>2</edge_type>
<source_obj>103</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>382</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>389</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>420</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>389</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>449</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>451</id>
<edge_type>2</edge_type>
<source_obj>109</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>453</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>456</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>457</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>476</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>477</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>479</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>481</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>483</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>486</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>489</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>490</id>
<edge_type>2</edge_type>
<source_obj>320</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>491</id>
<edge_type>2</edge_type>
<source_obj>143</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>493</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>495</id>
<edge_type>2</edge_type>
<source_obj>161</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>375</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>501</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>502</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>513</id>
<edge_type>2</edge_type>
<source_obj>159</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>515</id>
<edge_type>2</edge_type>
<source_obj>156</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>517</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>520</id>
<edge_type>2</edge_type>
<source_obj>161</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>521</id>
<edge_type>2</edge_type>
<source_obj>143</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>528</id>
<edge_type>2</edge_type>
<source_obj>178</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>529</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>531</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>272</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_476">
<id>533</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_477">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>534</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>536</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>538</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_481">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>330</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>540</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>542</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_486">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>336</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>548</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>549</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_495">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_499">
<id>557</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="_500">
<id>558</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>559</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>563</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="_504">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>565</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="_506">
<id>566</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="_507">
<id>567</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>568</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="_509">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>570</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_511">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_513">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>576</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="_515">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>195</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>193</source_obj>
<sink_obj>196</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>389</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_519">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_520">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>584</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="_522">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>587</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>588</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="_525">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>389</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_527">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_528">
<id>594</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="_529">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>599</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>600</id>
<edge_type>2</edge_type>
<source_obj>207</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>603</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>604</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>605</id>
<edge_type>2</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="_537">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>606</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>608</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_539">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>610</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_542">
<id>614</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_543">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_544">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_545">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_546">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_547">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_548">
<id>621</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="_549">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_550">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_551">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>626</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_552">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>628</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_553">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_554">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>632</source_obj>
<sink_obj>218</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>634</source_obj>
<sink_obj>218</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>216</source_obj>
<sink_obj>219</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>219</source_obj>
<sink_obj>220</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>165</source_obj>
<sink_obj>220</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>220</source_obj>
<sink_obj>221</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>221</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>642</id>
<edge_type>1</edge_type>
<source_obj>641</source_obj>
<sink_obj>223</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>222</source_obj>
<sink_obj>223</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>217</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_564">
<id>645</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="_565">
<id>646</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_566">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_567">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_568">
<id>649</id>
<edge_type>1</edge_type>
<source_obj>641</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_569">
<id>650</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="_570">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_571">
<id>652</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="_572">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_573">
<id>654</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="_574">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_575">
<id>656</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="_576">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>232</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_577">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>641</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_578">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_579">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_580">
<id>661</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="_581">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>236</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>236</source_obj>
<sink_obj>237</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>666</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_584">
<id>669</id>
<edge_type>1</edge_type>
<source_obj>668</source_obj>
<sink_obj>237</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>236</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_586">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>362</source_obj>
<sink_obj>239</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_587">
<id>674</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="_588">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>239</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_589">
<id>676</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="_590">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_591">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>678</source_obj>
<sink_obj>242</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_592">
<id>680</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="_593">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_594">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>684</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_595">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>686</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_596">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_597">
<id>689</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>245</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_598">
<id>690</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_599">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_600">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_601">
<id>693</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>247</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_602">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>248</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>249</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_604">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>249</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_605">
<id>697</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_606">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_607">
<id>701</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_608">
<id>703</id>
<edge_type>1</edge_type>
<source_obj>702</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_609">
<id>704</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="_610">
<id>707</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>253</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_611">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>702</source_obj>
<sink_obj>253</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_612">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>709</source_obj>
<sink_obj>253</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_613">
<id>711</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_614">
<id>712</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_615">
<id>713</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_616">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_617">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_618">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_619">
<id>717</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>256</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_620">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_621">
<id>719</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_622">
<id>720</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="_623">
<id>721</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_624">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_625">
<id>723</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="_626">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>259</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_627">
<id>725</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_628">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_629">
<id>727</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="_630">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>261</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_631">
<id>729</id>
<edge_type>1</edge_type>
<source_obj>211</source_obj>
<sink_obj>261</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_632">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_633">
<id>731</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_634">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_635">
<id>733</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_636">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_637">
<id>735</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_638">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_639">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_640">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_641">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_642">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_643">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_644">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_646">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_647">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_648">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>263</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_649">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_650">
<id>748</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_651">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_652">
<id>750</id>
<edge_type>2</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="_653">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_654">
<id>752</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_655">
<id>753</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_656">
<id>754</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_657">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_658">
<id>756</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_659">
<id>757</id>
<edge_type>2</edge_type>
<source_obj>178</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_660">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>275</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_661">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_662">
<id>762</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_663">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>277</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_664">
<id>764</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="_665">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>275</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>766</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="_667">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>280</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_668">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>281</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_669">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>353</source_obj>
<sink_obj>281</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_670">
<id>770</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="_671">
<id>771</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>282</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_672">
<id>772</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="_673">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>278</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_674">
<id>774</id>
<edge_type>2</edge_type>
<source_obj>292</source_obj>
<sink_obj>284</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_675">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>290</source_obj>
<sink_obj>286</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_676">
<id>776</id>
<edge_type>2</edge_type>
<source_obj>316</source_obj>
<sink_obj>286</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_677">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>366</source_obj>
<sink_obj>286</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_678">
<id>778</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>286</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_679">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>288</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_680">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>375</source_obj>
<sink_obj>288</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_681">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>290</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_682">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>378</source_obj>
<sink_obj>290</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_683">
<id>783</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>291</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_684">
<id>784</id>
<edge_type>2</edge_type>
<source_obj>316</source_obj>
<sink_obj>291</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_685">
<id>785</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>291</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_686">
<id>786</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>293</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>294</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_688">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>295</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_689">
<id>789</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>296</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_690">
<id>791</id>
<edge_type>1</edge_type>
<source_obj>293</source_obj>
<sink_obj>298</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_691">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>294</source_obj>
<sink_obj>298</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>295</source_obj>
<sink_obj>298</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>286</source_obj>
<sink_obj>298</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>296</source_obj>
<sink_obj>299</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>37</source_obj>
<sink_obj>299</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>279</source_obj>
<sink_obj>300</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>299</source_obj>
<sink_obj>300</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>298</source_obj>
<sink_obj>301</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>286</source_obj>
<sink_obj>302</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>283</source_obj>
<sink_obj>302</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>62</source_obj>
<sink_obj>303</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>302</source_obj>
<sink_obj>303</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>303</source_obj>
<sink_obj>304</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>420</source_obj>
<sink_obj>305</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>304</source_obj>
<sink_obj>305</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_706">
<id>808</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>306</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_707">
<id>809</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>306</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>810</id>
<edge_type>1</edge_type>
<source_obj>306</source_obj>
<sink_obj>307</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>301</source_obj>
<sink_obj>308</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>307</source_obj>
<sink_obj>308</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>300</source_obj>
<sink_obj>309</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>389</source_obj>
<sink_obj>309</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_713">
<id>816</id>
<edge_type>1</edge_type>
<source_obj>391</source_obj>
<sink_obj>309</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_714">
<id>817</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="_715">
<id>818</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>311</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_716">
<id>819</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="_717">
<id>821</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="_718">
<id>822</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>312</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_719">
<id>824</id>
<edge_type>1</edge_type>
<source_obj>311</source_obj>
<sink_obj>313</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_720">
<id>825</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>313</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_721">
<id>826</id>
<edge_type>1</edge_type>
<source_obj>305</source_obj>
<sink_obj>313</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_722">
<id>828</id>
<edge_type>1</edge_type>
<source_obj>311</source_obj>
<sink_obj>314</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_723">
<id>829</id>
<edge_type>2</edge_type>
<source_obj>292</source_obj>
<sink_obj>315</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_724">
<id>830</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>317</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_725">
<id>831</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_726">
<id>832</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_727">
<id>833</id>
<edge_type>2</edge_type>
<source_obj>161</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_728">
<id>834</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>835</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_730">
<id>836</id>
<edge_type>2</edge_type>
<source_obj>161</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_731">
<id>837</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>104</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>59</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_733">
<id>839</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_734">
<id>840</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_735">
<id>841</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_736">
<id>842</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_737">
<id>843</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_738">
<id>844</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_739">
<id>845</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_740">
<id>846</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_741">
<id>847</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_742">
<id>848</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_743">
<id>849</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_744">
<id>850</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_745">
<id>851</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_746">
<id>852</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_747">
<id>853</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_748">
<id>854</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_749">
<id>855</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_750">
<id>856</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_751">
<id>857</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_752">
<id>858</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_753">
<id>859</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_754">
<id>860</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_755">
<id>861</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_756">
<id>862</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_757">
<id>863</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_758">
<id>864</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_759">
<id>865</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_760">
<id>866</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_761">
<id>867</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_762">
<id>868</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_763">
<id>869</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_764">
<id>870</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_765">
<id>871</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_766">
<id>872</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_767">
<id>873</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_768">
<id>874</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_769">
<id>875</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_770">
<id>876</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_771">
<id>877</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_772">
<id>878</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_773">
<id>1112</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_774">
<id>1113</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_775">
<id>1114</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_776">
<id>1115</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_777">
<id>1116</id>
<edge_type>2</edge_type>
<source_obj>64</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_778">
<id>1117</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_779">
<id>1118</id>
<edge_type>2</edge_type>
<source_obj>74</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_780">
<id>1119</id>
<edge_type>2</edge_type>
<source_obj>103</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_781">
<id>1120</id>
<edge_type>2</edge_type>
<source_obj>103</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_782">
<id>1121</id>
<edge_type>2</edge_type>
<source_obj>103</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_783">
<id>1122</id>
<edge_type>2</edge_type>
<source_obj>106</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_784">
<id>1123</id>
<edge_type>2</edge_type>
<source_obj>109</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_785">
<id>1124</id>
<edge_type>2</edge_type>
<source_obj>112</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_786">
<id>1125</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_787">
<id>1126</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_788">
<id>1127</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>320</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_789">
<id>1128</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_790">
<id>1129</id>
<edge_type>2</edge_type>
<source_obj>136</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_791">
<id>1130</id>
<edge_type>2</edge_type>
<source_obj>143</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_792">
<id>1131</id>
<edge_type>2</edge_type>
<source_obj>143</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_793">
<id>1132</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_794">
<id>1133</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_795">
<id>1134</id>
<edge_type>2</edge_type>
<source_obj>150</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_796">
<id>1135</id>
<edge_type>2</edge_type>
<source_obj>153</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_797">
<id>1136</id>
<edge_type>2</edge_type>
<source_obj>156</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_798">
<id>1137</id>
<edge_type>2</edge_type>
<source_obj>159</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_799">
<id>1138</id>
<edge_type>2</edge_type>
<source_obj>161</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_800">
<id>1139</id>
<edge_type>2</edge_type>
<source_obj>169</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_801">
<id>1140</id>
<edge_type>2</edge_type>
<source_obj>178</source_obj>
<sink_obj>285</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_802">
<id>1141</id>
<edge_type>2</edge_type>
<source_obj>178</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_803">
<id>1142</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_804">
<id>1143</id>
<edge_type>2</edge_type>
<source_obj>186</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_805">
<id>1144</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_806">
<id>1145</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_807">
<id>1146</id>
<edge_type>2</edge_type>
<source_obj>207</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_808">
<id>1147</id>
<edge_type>2</edge_type>
<source_obj>270</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_809">
<id>1148</id>
<edge_type>2</edge_type>
<source_obj>274</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_810">
<id>1149</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>292</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_811">
<id>1150</id>
<edge_type>2</edge_type>
<source_obj>292</source_obj>
<sink_obj>318</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_812">
<id>1151</id>
<edge_type>2</edge_type>
<source_obj>292</source_obj>
<sink_obj>316</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_813">
<id>1152</id>
<edge_type>2</edge_type>
<source_obj>316</source_obj>
<sink_obj>292</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_814">
<id>1153</id>
<edge_type>2</edge_type>
<source_obj>318</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_815">
<id>1154</id>
<edge_type>4</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="_816">
<id>1155</id>
<edge_type>4</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_817">
<id>1156</id>
<edge_type>4</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_818">
<id>1157</id>
<edge_type>4</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_819">
<id>1158</id>
<edge_type>4</edge_type>
<source_obj>81</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_820">
<id>1159</id>
<edge_type>4</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="_821">
<id>1160</id>
<edge_type>4</edge_type>
<source_obj>211</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_822">
<id>1161</id>
<edge_type>4</edge_type>
<source_obj>210</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_823">
<id>1162</id>
<edge_type>4</edge_type>
<source_obj>209</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_824">
<id>1163</id>
<edge_type>4</edge_type>
<source_obj>313</source_obj>
<sink_obj>314</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_825">
<id>1164</id>
<edge_type>4</edge_type>
<source_obj>312</source_obj>
<sink_obj>313</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_826">
<id>1165</id>
<edge_type>4</edge_type>
<source_obj>68</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_827">
<id>1166</id>
<edge_type>4</edge_type>
<source_obj>66</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_828">
<id>1167</id>
<edge_type>4</edge_type>
<source_obj>67</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_829">
<id>1168</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_830">
<id>1169</id>
<edge_type>4</edge_type>
<source_obj>124</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_831">
<id>1170</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_832">
<id>1171</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>295</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_833">
<id>1172</id>
<edge_type>4</edge_type>
<source_obj>124</source_obj>
<sink_obj>294</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_834">
<id>1173</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>293</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_835">
<id>1174</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_836">
<id>1175</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_837">
<id>1176</id>
<edge_type>4</edge_type>
<source_obj>124</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_838">
<id>1177</id>
<edge_type>4</edge_type>
<source_obj>124</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_839">
<id>1178</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_840">
<id>1179</id>
<edge_type>4</edge_type>
<source_obj>125</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_841">
<id>1180</id>
<edge_type>4</edge_type>
<source_obj>201</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_842">
<id>1181</id>
<edge_type>4</edge_type>
<source_obj>202</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_843">
<id>2147483647</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>15</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_844">
<mId>1</mId>
<mTag>farthest_point_sampling</mTag>
<mNormTag>farthest_point_sampling</mNormTag>
<mType>0</mType>
<sub_regions>
<count>7</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>15</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>70240</mMinLatency>
<mMaxLatency>70240</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_845">
<mId>2</mId>
<mTag>Entry</mTag>
<mNormTag>Entry</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_846">
<mId>3</mId>
<mTag>init_distance_label4</mTag>
<mNormTag>init_distance_label4</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>57</item>
</basic_blocks>
<mII>1</mII>
<mDepth>1</mDepth>
<mMinTripCount>1024</mMinTripCount>
<mMaxTripCount>1024</mMaxTripCount>
<mMinLatency>1024</mMinLatency>
<mMaxLatency>1024</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_847">
<mId>4</mId>
<mTag>Region 1</mTag>
<mNormTag>Region 1</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>64</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="_848">
<mId>5</mId>
<mTag>random_select_0</mTag>
<mNormTag>random_select_0</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>74</item>
<item>103</item>
<item>106</item>
<item>109</item>
<item>112</item>
<item>114</item>
</basic_blocks>
<mII>1</mII>
<mDepth>142</mDepth>
<mMinTripCount>3</mMinTripCount>
<mMaxTripCount>3</mMaxTripCount>
<mMinLatency>143</mMinLatency>
<mMaxLatency>143</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_849">
<mId>6</mId>
<mTag>Region 2</mTag>
<mNormTag>Region 2</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>127</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_850">
<mId>7</mId>
<mTag>iteration</mTag>
<mNormTag>iteration</mNormTag>
<mType>1</mType>
<sub_regions>
<count>7</count>
<item_version>0</item_version>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>31</mMinTripCount>
<mMaxTripCount>31</mMaxTripCount>
<mMinLatency>69068</mMinLatency>
<mMaxLatency>69068</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_851">
<mId>8</mId>
<mTag>Region 3</mTag>
<mNormTag>Region 3</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>133</item>
<item>136</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="_852">
<mId>9</mId>
<mTag>get_origin_point</mTag>
<mNormTag>get_origin_point</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>143</item>
<item>150</item>
<item>153</item>
<item>156</item>
<item>159</item>
<item>161</item>
</basic_blocks>
<mII>1</mII>
<mDepth>1</mDepth>
<mMinTripCount>3</mMinTripCount>
<mMaxTripCount>3</mMaxTripCount>
<mMinLatency>3</mMinLatency>
<mMaxLatency>3</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_853">
<mId>10</mId>
<mTag>Region 4</mTag>
<mNormTag>Region 4</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>169</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="_854">
<mId>11</mId>
<mTag>calculate_distance</mTag>
<mNormTag>calculate_distance</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>178</item>
<item>186</item>
<item>204</item>
<item>207</item>
<item>270</item>
<item>274</item>
</basic_blocks>
<mII>2</mII>
<mDepth>100</mDepth>
<mMinTripCount>1024</mMinTripCount>
<mMaxTripCount>1024</mMaxTripCount>
<mMinLatency>2146</mMinLatency>
<mMaxLatency>2146</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_855">
<mId>12</mId>
<mTag>Region 5</mTag>
<mNormTag>Region 5</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>285</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="_856">
<mId>13</mId>
<mTag>set_farthest_point</mTag>
<mNormTag>set_farthest_point</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>292</item>
<item>316</item>
</basic_blocks>
<mII>1</mII>
<mDepth>71</mDepth>
<mMinTripCount>3</mMinTripCount>
<mMaxTripCount>3</mMaxTripCount>
<mMinLatency>72</mMinLatency>
<mMaxLatency>72</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_857">
<mId>14</mId>
<mTag>Region 6</mTag>
<mNormTag>Region 6</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>318</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="_858">
<mId>15</mId>
<mTag>Return</mTag>
<mNormTag>Return</mNormTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>320</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>236</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>37</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>4</first>
<second>69</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>74</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>76</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>77</first>
<second>67</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>75</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>145</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>147</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>148</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>149</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>149</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>149</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>149</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>149</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>149</first>
<second>1</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>247</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>151</first>
<second>69</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>221</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>222</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>222</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>223</first>
<second>1</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>224</first>
<second>17</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>223</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>223</first>
<second>1</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>224</first>
<second>17</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>242</first>
<second>2</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>224</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>224</first>
<second>0</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>224</first>
<second>0</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>224</first>
<second>1</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>225</first>
<second>17</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>245</first>
<second>2</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>247</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>247</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>247</first>
<second>0</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>249</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>252</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>253</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>150</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>246</first>
<second>1</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>258</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>260</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>261</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>262</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>263</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>264</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>265</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>266</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>267</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>268</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>269</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>271</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>272</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>273</first>
<second>
<first>248</first>
<second>0</second>
</second>
</item>
<item>
<first>275</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>276</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>277</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>278</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>279</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>280</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>281</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>282</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>283</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>284</first>
<second>
<first>249</first>
<second>0</second>
</second>
</item>
<item>
<first>286</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>288</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>290</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>291</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>293</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>294</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>295</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>296</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>298</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>299</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>300</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>301</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>302</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>303</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>304</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>305</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>306</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>307</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>308</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>309</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>310</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>311</first>
<second>
<first>250</first>
<second>0</second>
</second>
</item>
<item>
<first>312</first>
<second>
<first>251</first>
<second>0</second>
</second>
</item>
<item>
<first>313</first>
<second>
<first>252</first>
<second>0</second>
</second>
</item>
<item>
<first>314</first>
<second>
<first>253</first>
<second>67</second>
</second>
</item>
<item>
<first>315</first>
<second>
<first>320</first>
<second>0</second>
</second>
</item>
<item>
<first>317</first>
<second>
<first>321</first>
<second>0</second>
</second>
</item>
<item>
<first>319</first>
<second>
<first>146</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>31</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>42</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>3</first>
<second>75</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>3</first>
<second>144</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>75</first>
<second>75</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>75</first>
<second>75</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>75</first>
<second>75</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>76</first>
<second>76</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>77</first>
<second>77</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>77</first>
<second>77</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>78</first>
<second>78</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>79</first>
<second>79</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>80</first>
<second>178</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>80</first>
<second>178</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>81</first>
<second>152</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>153</first>
<second>153</second>
</second>
</item>
<item>
<first>270</first>
<second>
<first>81</first>
<second>179</second>
</second>
</item>
<item>
<first>274</first>
<second>
<first>179</first>
<second>179</second>
</second>
</item>
<item>
<first>285</first>
<second>
<first>179</first>
<second>179</second>
</second>
</item>
<item>
<first>292</first>
<second>
<first>180</first>
<second>180</second>
</second>
</item>
<item>
<first>316</first>
<second>
<first>180</first>
<second>250</second>
</second>
</item>
<item>
<first>318</first>
<second>
<first>181</first>
<second>181</second>
</second>
</item>
<item>
<first>320</first>
<second>
<first>77</first>
<second>77</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_859">
<region_name>init_distance_label4</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>57</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>1</pipe_depth>
</item>
<item class_id_reference="33" object_id="_860">
<region_name>random_select_0</region_name>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>74</item>
<item>103</item>
<item>106</item>
<item>109</item>
<item>112</item>
<item>114</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>142</pipe_depth>
</item>
<item class_id_reference="33" object_id="_861">
<region_name>get_origin_point</region_name>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>143</item>
<item>150</item>
<item>153</item>
<item>156</item>
<item>159</item>
<item>161</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>1</pipe_depth>
</item>
<item class_id_reference="33" object_id="_862">
<region_name>calculate_distance</region_name>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>178</item>
<item>186</item>
<item>204</item>
<item>207</item>
<item>270</item>
<item>274</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>2</interval>
<pipe_depth>100</pipe_depth>
</item>
<item class_id_reference="33" object_id="_863">
<region_name>set_farthest_point</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>292</item>
<item>316</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>71</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="35" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
with Ada.Finalization;
generic
type Key_Type is private;
with function "=" (L : Key_Type; R : Key_Type) return Boolean;
with function Hash (Key : Key_Type) return Natural;
type Value_Type is private;
package ACO.Utils.DS.Generic_Table is
pragma Preelaborate;
type Table
(Number_Of_Buckets : Positive;
Maximum_Size : Positive)
is new Ada.Finalization.Controlled with private;
function Length (This : Table) return Natural;
function Is_Full (This : Table) return Boolean;
function Is_Empty (This : Table) return Boolean;
function Is_Bound (This : Table; Key : Key_Type) return Boolean;
procedure Bind
(This : in out Table;
Key : in Key_Type;
Value : in Value_Type)
with Pre => (if not This.Is_Bound (Key) then not This.Is_Full),
Post => This.Is_Bound (Key);
function Value_Of
(This : Table;
Key : Key_Type)
return Value_Type
with Pre => This.Is_Bound (Key);
procedure Unbind
(This : in out Table;
Key : in Key_Type)
with Post => not This.Is_Bound (Key);
private
subtype Index is Natural;
No_Index : constant Index := Index'First;
subtype Cell_Index is Index range No_Index + 1 .. Index'Last;
subtype Bucket_Index is Positive;
type Cell is record
Key : Key_Type;
Value : Value_Type;
Next : Index;
end record;
type Cell_Array is array (Cell_Index range <>) of Cell;
type Bucket_Array is array (Bucket_Index range <>) of Index;
type Table
(Number_Of_Buckets : Positive;
Maximum_Size : Positive)
is new Ada.Finalization.Controlled with record
Buckets : Bucket_Array (1 .. Number_Of_Buckets);
Data : Cell_Array (1 .. Maximum_Size);
Size : Natural;
Unused : Index;
end record;
procedure Initialize (This : in out Table);
procedure Clear (This : in out Table)
with Post => This.Is_Empty;
function To_Bucket_Index (This : Table; Key : Key_Type) return Bucket_Index
with Inline;
function Location (This : Table; Start : Index; Key : Key_Type) return Index;
end ACO.Utils.DS.Generic_Table;
|
pragma Ada_2012;
pragma Style_Checks (Off);
with Interfaces.C; use Interfaces.C;
package uctype_h is
-- * Copyright (c) 2000, 2005, 2008 Apple Inc. All rights reserved.
-- *
-- * @APPLE_LICENSE_HEADER_START@
-- *
-- * This file contains Original Code and/or Modifications of Original Code
-- * as defined in and that are subject to the Apple Public Source License
-- * Version 2.0 (the 'License'). You may not use this file except in
-- * compliance with the License. Please obtain a copy of the License at
-- * http://www.opensource.apple.com/apsl/ and read it before using this
-- * file.
-- *
-- * The Original Code and all software distributed under the License are
-- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
-- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
-- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
-- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
-- * Please see the License for the specific language governing rights and
-- * limitations under the License.
-- *
-- * @APPLE_LICENSE_HEADER_END@
--
-- * Copyright (c) 1989, 1993
-- * The Regents of the University of California. All rights reserved.
-- * (c) UNIX System Laboratories, Inc.
-- * All or some portions of this file are derived from material licensed
-- * to the University of California by American Telephone and Telegraph
-- * Co. or Unix System Laboratories, Inc. and are reproduced herein with
-- * the permission of UNIX System Laboratories, Inc.
-- *
-- * This code is derived from software contributed to Berkeley by
-- * Paul Borman at Krystal Technologies.
-- *
-- * 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. All advertising materials mentioning features or use of this software
-- * must display the following acknowledgement:
-- * This product includes software developed by the University of
-- * California, Berkeley and its contributors.
-- * 4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
-- *
-- * @(#)ctype.h 8.4 (Berkeley) 1/21/94
--
-- * Backward compatibility
--
-- * Use inline functions if we are allowed to and the compiler supports them.
--
-- See comments in <machine/_type.h> about __darwin_ct_rune_t.
-- skipped func ___runetype
-- skipped func ___tolower
-- skipped func ___toupper
function isascii (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:135
with Import => True,
Convention => C,
External_Name => "isascii";
-- skipped func __maskrune
-- skipped func __istype
-- skipped func __isctype
-- skipped func __toupper
-- skipped func __tolower
-- skipped func __wcwidth
function isalnum (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:212
with Import => True,
Convention => C,
External_Name => "isalnum";
function isalpha (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:218
with Import => True,
Convention => C,
External_Name => "isalpha";
function isblank (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:224
with Import => True,
Convention => C,
External_Name => "isblank";
function iscntrl (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:230
with Import => True,
Convention => C,
External_Name => "iscntrl";
-- ANSI -- locale independent
function isdigit (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:237
with Import => True,
Convention => C,
External_Name => "isdigit";
function isgraph (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:243
with Import => True,
Convention => C,
External_Name => "isgraph";
function islower (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:249
with Import => True,
Convention => C,
External_Name => "islower";
function isprint (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:255
with Import => True,
Convention => C,
External_Name => "isprint";
function ispunct (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:261
with Import => True,
Convention => C,
External_Name => "ispunct";
function isspace (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:267
with Import => True,
Convention => C,
External_Name => "isspace";
function isupper (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:273
with Import => True,
Convention => C,
External_Name => "isupper";
-- ANSI -- locale independent
function isxdigit (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:280
with Import => True,
Convention => C,
External_Name => "isxdigit";
function toascii (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:286
with Import => True,
Convention => C,
External_Name => "toascii";
function tolower (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:292
with Import => True,
Convention => C,
External_Name => "tolower";
function toupper (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:298
with Import => True,
Convention => C,
External_Name => "toupper";
function digittoint (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:305
with Import => True,
Convention => C,
External_Name => "digittoint";
function ishexnumber (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:311
with Import => True,
Convention => C,
External_Name => "ishexnumber";
function isideogram (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:317
with Import => True,
Convention => C,
External_Name => "isideogram";
function isnumber (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:323
with Import => True,
Convention => C,
External_Name => "isnumber";
function isphonogram (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:329
with Import => True,
Convention => C,
External_Name => "isphonogram";
function isrune (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:335
with Import => True,
Convention => C,
External_Name => "isrune";
function isspecial (u_c : int) return int -- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/_ctype.h:341
with Import => True,
Convention => C,
External_Name => "isspecial";
end uctype_h;
|
----------------------------------------------------------------
-- ZLib for Ada thick binding. --
-- --
-- Copyright (C) 2002-2004 Dmitriy Anisimkov --
-- --
-- Open source license information is in the zlib.ads file. -- |
-- Copyright 2016,2017 Steven Stewart-Gallus
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http ://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-- implied. See the License for the specific language governing
-- permissions and limitations under the License.
with System;
with Ada.Unchecked_Conversion;
with Ada.Numerics.Elementary_Functions;
private with Interfaces.C.Strings;
private with Interfaces.C;
private with Pulse.Context;
private with Pulse.Def;
private with Pulse.Error;
private with Pulse.Mainloop;
private with Pulse.Mainloop.API;
private with Pulse.Proplist;
private with Pulse.Sample;
private with Pulse.Stream;
private with Linted.Errors;
private with Linted.KOs;
private with Linted.Stdio;
private with Libc.Stddef;
package body Linted.Audio with
Spark_Mode => Off is
use Interfaces.C.Strings;
use Interfaces.C;
use Pulse.Context;
use Pulse.Def;
use Pulse.Error;
use Pulse.Mainloop;
use Pulse.Mainloop.API;
use Pulse.Proplist;
use Pulse.Sample;
use Pulse.Stream;
use type Errors.Error;
A_TONE : constant Float := 440.0;
SAMPLE_RATE : constant Float := 44100.0;
GREATEST_PERIOD : constant Float := 1000.0 * (SAMPLE_RATE / A_TONE);
Sampledata : array (0 .. Integer (GREATEST_PERIOD) - 1) of aliased short;
Test_Sample_Spec : constant pa_sample_spec :=
(format => PA_SAMPLE_S16LE,
rate => unsigned (SAMPLE_RATE),
channels => 1);
function Square_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float;
function Triangle_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float;
function Sin_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float;
procedure On_Notify (c : pa_context_access; userdata : System.Address);
pragma Convention (C, On_Notify);
task Main_Task;
task body Main_Task is
Mainloop : pa_mainloop_access;
Context : pa_context_access;
Retval : int;
begin
for II in Sampledata'Range loop
Sampledata (II) :=
short
(Triangle_Wave (II, A_TONE, 8000.0, SAMPLE_RATE) *
Square_Wave (II, A_TONE / 100.0, 1.0, SAMPLE_RATE) *
Sin_Wave (II, A_TONE / 1000.0, 1.0, SAMPLE_RATE));
end loop;
Mainloop := pa_mainloop_new;
if null = Mainloop then
raise Storage_Error with "Cannot create a mainloop";
end if;
declare
Proplist : pa_proplist_access;
Role_Str : chars_ptr;
Role : chars_ptr;
Game_Name : chars_ptr;
begin
Proplist := pa_proplist_new;
if null = Proplist then
raise Storage_Error with "Cannot create a property list";
end if;
Role_Str := New_String ("PULSE_PROP_media.role");
Role := New_String ("game");
if 0 < pa_proplist_sets (Proplist, Role, Role_Str) then
raise Storage_Error with "Cannot set property list values";
end if;
Free (Role);
Free (Role_Str);
Game_Name := New_String ("Linted");
Context :=
pa_context_new_with_proplist
(pa_mainloop_get_api (Mainloop),
Game_Name,
Proplist);
if null = Context then
raise Storage_Error with "Cannot create a new context";
end if;
Free (Game_Name);
pa_proplist_free (Proplist);
end;
pa_context_set_state_callback
(Context,
On_Notify'Access,
System.Null_Address);
if pa_context_connect (Context, Null_Ptr, PA_CONTEXT_NOAUTOSPAWN, null) <
0
then
raise Program_Error
with Value (pa_strerror (pa_context_errno (Context)));
end if;
if pa_mainloop_run (Mainloop, Retval) < 0 then
raise Program_Error
with Value (pa_strerror (pa_context_errno (Context)));
end if;
pa_context_unref (Context);
pa_mainloop_free (Mainloop);
end Main_Task;
function Square_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float
is
Frequency : constant Float := Freq / Sample;
Period : constant Float := 1.0 / Frequency;
begin
return Amplitude *
((Float (II mod Integer (Period)) + (Period / 2.0)) / Period);
end Square_Wave;
function Triangle_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float
is
Frequency : constant Float := Freq / Sample;
Period : constant Float := 1.0 / Frequency;
begin
return Amplitude * Float (II mod Integer (Period)) / Period;
end Triangle_Wave;
function Sin_Wave
(II : Integer;
Freq : Float;
Amplitude : Float;
Sample : Float) return Float
is
Frequency : constant Float := Freq / Sample;
Tau : constant Float := 6.28318530718;
begin
return Amplitude *
Ada.Numerics.Elementary_Functions.Sin (Tau * Frequency * Float (II));
end Sin_Wave;
procedure On_Ready (c : pa_context_access);
procedure On_Notify (c : pa_context_access; userdata : System.Address) is
begin
case pa_context_get_state (c) is
when PA_CONTEXT_UNCONNECTED =>
Stdio.Write_Line (KOs.Standard_Error, "Unconnected");
when PA_CONTEXT_CONNECTING =>
Stdio.Write_Line (KOs.Standard_Error, "Connecting");
when PA_CONTEXT_AUTHORIZING =>
Stdio.Write_Line (KOs.Standard_Error, "Authorizing");
when PA_CONTEXT_SETTING_NAME =>
Stdio.Write_Line (KOs.Standard_Error, "Setting Name");
when PA_CONTEXT_READY =>
Stdio.Write_Line (KOs.Standard_Error, "Ready");
On_Ready (c);
when PA_CONTEXT_FAILED =>
Stdio.Write_Line (KOs.Standard_Error, "Failed");
when PA_CONTEXT_TERMINATED =>
Stdio.Write_Line (KOs.Standard_Error, "Terminated");
end case;
end On_Notify;
procedure On_Ok_To_Write
(s : pa_stream_access;
nbytes : Libc.Stddef.size_t;
userdata : System.Address);
pragma Convention (C, On_Ok_To_Write);
procedure On_Ready (c : pa_context_access) is
Stream : pa_stream_access;
Buffer_Attr : pa_buffer_attr;
Latency : constant unsigned_long := 20000;
Stream_Name : chars_ptr;
begin
Stream_Name := New_String ("Background Music");
Stream := pa_stream_new (c, Stream_Name, Test_Sample_Spec, null);
Free (Stream_Name);
pa_stream_set_write_callback
(Stream,
On_Ok_To_Write'Access,
System.Null_Address);
Buffer_Attr.maxlength :=
unsigned (pa_usec_to_bytes (Latency, Test_Sample_Spec));
Buffer_Attr.minreq := unsigned (pa_usec_to_bytes (0, Test_Sample_Spec));
Buffer_Attr.prebuf := -1;
Buffer_Attr.tlength :=
unsigned (pa_usec_to_bytes (Latency, Test_Sample_Spec));
if pa_stream_connect_playback
(Stream,
Null_Ptr,
Buffer_Attr,
PA_STREAM_INTERPOLATE_TIMING or
PA_STREAM_ADJUST_LATENCY or
PA_STREAM_AUTO_TIMING_UPDATE,
null,
System.Null_Address) <
0
then
raise Program_Error
with "pa_stream_connect_playback: " &
Value (pa_strerror (pa_context_errno (c)));
end if;
end On_Ready;
Sampleoffs : Libc.Stddef.size_t := 0;
procedure On_Ok_To_Write
(s : pa_stream_access;
nbytes : Libc.Stddef.size_t;
userdata : System.Address)
is
Mybytes : Libc.Stddef.size_t := nbytes;
begin
if Sampleoffs * 2 + Mybytes >
Libc.Stddef.size_t (GREATEST_PERIOD) * 2
then
Sampleoffs := 0;
end if;
if Mybytes > Libc.Stddef.size_t (GREATEST_PERIOD) * 2 then
Mybytes := Libc.Stddef.size_t (GREATEST_PERIOD) * 2;
end if;
if pa_stream_write
(s,
Sampledata (Integer (Sampleoffs))'Address,
Mybytes,
null,
0,
PA_SEEK_RELATIVE) <
0
then
raise Program_Error with "pa_stream_write";
end if;
Sampleoffs := Sampleoffs + nbytes / 2;
end On_Ok_To_Write;
end Linted.Audio;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>call</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>in_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>out_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>72</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>slice_stream_V_value</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>slice_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>19</item>
<item>20</item>
<item>21</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>135</item>
<item>136</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</fileDirectory>
<lineNumber>219</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>219</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>2</type>
<id>16</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_8">
<Value>
<Obj>
<type>2</type>
<id>18</id>
<name>call_Loop_LB2D_buf_p</name>
<fileName></fileName>
<fileDirectory></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:call_Loop_LB2D_buf_p></content>
</item>
<item class_id_reference="16" object_id="_9">
<Value>
<Obj>
<type>2</type>
<id>22</id>
<name>call_Loop_LB2D_shift</name>
<fileName></fileName>
<fileDirectory></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:call_Loop_LB2D_shift></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="_10">
<Obj>
<type>3</type>
<id>15</id>
<name>call</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>8</item>
<item>12</item>
<item>13</item>
<item>14</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_11">
<id>17</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_12">
<id>19</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_13">
<id>20</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_14">
<id>21</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_15">
<id>23</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_16">
<id>24</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_17">
<id>25</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_18">
<id>135</id>
<edge_type>4</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_19">
<id>136</id>
<edge_type>4</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_20">
<mId>1</mId>
<mTag>call</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>33</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>1</mIsDfPipe>
<mDfPipe class_id="23" tracking_level="1" version="0" object_id="_21">
<port_list class_id="24" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port_list>
<process_list class_id="25" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_22">
<type>0</type>
<name>call_Loop_LB2D_buf_p_U0</name>
<ssdmobj_id>12</ssdmobj_id>
<pins class_id="27" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_23">
<port class_id="29" tracking_level="1" version="0" object_id="_24">
<name>in_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id="30" tracking_level="1" version="0" object_id="_25">
<type>0</type>
<name>call_Loop_LB2D_buf_p_U0</name>
<ssdmobj_id>12</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_26">
<port class_id_reference="29" object_id="_27">
<name>slice_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_25"></inst>
</item>
</pins>
</item>
<item class_id_reference="26" object_id="_28">
<type>0</type>
<name>call_Loop_LB2D_shift_U0</name>
<ssdmobj_id>13</ssdmobj_id>
<pins>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_29">
<port class_id_reference="29" object_id="_30">
<name>slice_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id="_31">
<type>0</type>
<name>call_Loop_LB2D_shift_U0</name>
<ssdmobj_id>13</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_32">
<port class_id_reference="29" object_id="_33">
<name>out_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_31"></inst>
</item>
</pins>
</item>
</process_list>
<channel_list class_id="31" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="1" version="0" object_id="_34">
<type>1</type>
<name>slice_stream_V_value</name>
<ssdmobj_id>8</ssdmobj_id>
<ctype>0</ctype>
<depth>1</depth>
<bitwidth>24</bitwidth>
<source class_id_reference="28" object_id="_35">
<port class_id_reference="29" object_id="_36">
<name>in</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_25"></inst>
</source>
<sink class_id_reference="28" object_id="_37">
<port class_id_reference="29" object_id="_38">
<name>out</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_31"></inst>
</sink>
</item>
</channel_list>
<net_list class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</net_list>
</mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="34" tracking_level="1" version="0" object_id="_39">
<states class_id="35" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="1" version="0" object_id="_40">
<id>1</id>
<operations class_id="37" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="1" version="0" object_id="_41">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_42">
<id>12</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_43">
<id>2</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_44">
<id>12</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_45">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_46">
<id>13</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_47">
<id>4</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_48">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_49">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_50">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_51">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_52">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_53">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_54">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_55">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_56">
<id>13</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="38" object_id="_57">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="39" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="1" version="0" object_id="_58">
<inState>1</inState>
<outState>2</outState>
<condition class_id="41" tracking_level="0" version="0">
<id>0</id>
<sop class_id="42" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_59">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_60">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>2</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="45" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>8</first>
<second class_id="47" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="48" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>15</first>
<second class_id="50" tracking_level="0" version="0">
<first>0</first>
<second>3</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="51" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="1" version="0" object_id="_61">
<region_name>call</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</basic_blocks>
<nodes>
<count>12</count>
<item_version>0</item_version>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>16</region_type>
<interval>0</interval>
<pipe_depth>0</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="53" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>40</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>12</item>
<item>12</item>
</second>
</item>
<item>
<first>47</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>13</item>
<item>13</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="56" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="57" tracking_level="0" version="0">
<first>slice_stream_V_value_fu_36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>2</count>
<item_version>0</item_version>
<item>
<first>grp_call_Loop_LB2D_buf_p_fu_40</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>12</item>
<item>12</item>
</second>
</item>
<item>
<first>grp_call_Loop_LB2D_shift_fu_47</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>13</item>
<item>13</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="58" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>54</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>1</count>
<item_version>0</item_version>
<item>
<first>slice_stream_V_value_reg_54</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="59" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>in_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
</second>
</item>
<item>
<first>out_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="61" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="62" tracking_level="0" version="0">
<first>1</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>2</first>
<second>FIFO_SRL</second>
</item>
</port2core>
<node2core>
<count>1</count>
<item_version>0</item_version>
<item>
<first>8</first>
<second>FIFO_SRL</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
-- Mojang Authentication API
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
--
-- OpenAPI spec version: 2020_06_05
--
--
-- NOTE: This package is auto generated by the swagger code generator 3.3.4.
-- https://openapi-generator.tech
-- Do not edit the class manually.
with Swagger.Servers;
with com.github.asyncmc.mojang.authentication.ada.server.model.Models;
with Security.Permissions;
package com.github.asyncmc.mojang.authentication.ada.server.model.Skeletons is
use com.github.asyncmc.mojang.authentication.ada.server.model.Models;
type Server_Type is limited interface;
--
procedure Authenticate
(Server : in out Server_Type;
Authentication_Request_Type : in AuthenticationRequest_Type;
Result : out com.github.asyncmc.mojang.authentication.ada.server.model.Models.Authentication_Type;
Context : in out Swagger.Servers.Context_Type) is abstract;
--
procedure Invalidate
(Server : in out Server_Type;
Access_Keys_Type : in AccessKeys_Type;
Context : in out Swagger.Servers.Context_Type) is abstract;
--
procedure Refresh
(Server : in out Server_Type;
Refresh_Request_Type : in RefreshRequest_Type;
Result : out com.github.asyncmc.mojang.authentication.ada.server.model.Models.RefreshResponse_Type;
Context : in out Swagger.Servers.Context_Type) is abstract;
--
procedure Siginout
(Server : in out Server_Type;
Username_Password_Type : in UsernamePassword_Type;
Context : in out Swagger.Servers.Context_Type) is abstract;
--
procedure Validate
(Server : in out Server_Type;
Access_Keys_Type : in AccessKeys_Type;
Context : in out Swagger.Servers.Context_Type) is abstract;
generic
type Implementation_Type is limited new Server_Type with private;
URI_Prefix : String := "";
package Skeleton is
procedure Register (Server : in out Swagger.Servers.Application_Type'Class);
--
procedure Authenticate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Invalidate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Refresh
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Siginout
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Validate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
end Skeleton;
generic
type Implementation_Type is limited new Server_Type with private;
URI_Prefix : String := "";
package Shared_Instance is
procedure Register (Server : in out Swagger.Servers.Application_Type'Class);
--
procedure Authenticate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Invalidate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Refresh
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Siginout
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
--
procedure Validate
(Req : in out Swagger.Servers.Request'Class;
Reply : in out Swagger.Servers.Response'Class;
Stream : in out Swagger.Servers.Output_Stream'Class;
Context : in out Swagger.Servers.Context_Type);
private
protected Server is
--
procedure Authenticate
(Authentication_Request_Type : in AuthenticationRequest_Type;
Result : out com.github.asyncmc.mojang.authentication.ada.server.model.Models.Authentication_Type;
Context : in out Swagger.Servers.Context_Type);
--
procedure Invalidate
(Access_Keys_Type : in AccessKeys_Type;
Context : in out Swagger.Servers.Context_Type);
--
procedure Refresh
(Refresh_Request_Type : in RefreshRequest_Type;
Result : out com.github.asyncmc.mojang.authentication.ada.server.model.Models.RefreshResponse_Type;
Context : in out Swagger.Servers.Context_Type);
--
procedure Siginout
(Username_Password_Type : in UsernamePassword_Type;
Context : in out Swagger.Servers.Context_Type);
--
procedure Validate
(Access_Keys_Type : in AccessKeys_Type;
Context : in out Swagger.Servers.Context_Type);
private
Impl : Implementation_Type;
end Server;
end Shared_Instance;
end com.github.asyncmc.mojang.authentication.ada.server.model.Skeletons;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- I N T E R F A C E S . V X W O R K S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-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/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is the x86 VxWorks version of this package
-- This package provides a limited binding to the VxWorks API
-- In particular, it interfaces with the VxWorks hardware interrupt
-- facilities, allowing the use of low-latency direct-vectored
-- interrupt handlers. Note that such handlers have a variety of
-- restrictions regarding system calls and language constructs. In particular,
-- the use of exception handlers and functions returning variable-length
-- objects cannot be used. Less restrictive, but higher-latency handlers can
-- be written using Ada protected procedures, Ada 83 style interrupt entries,
-- or by signalling an Ada task from within an interrupt handler using a
-- binary semaphore as described in the VxWorks Programmer's Manual.
--
-- For complete documentation of the operations in this package, please
-- consult the VxWorks Programmer's Manual and VxWorks Reference Manual.
pragma Warnings (Off, "*foreign convention*");
pragma Warnings (Off, "*add Convention pragma*");
with System.VxWorks;
package Interfaces.VxWorks is
pragma Preelaborate;
------------------------------------------------------------------------
-- Here is a complete example that shows how to handle the Interrupt 0x33
-- with a direct-vectored interrupt handler in Ada using this package:
-- with Interfaces.VxWorks; use Interfaces.VxWorks;
-- with System;
--
-- package P is
--
-- Count : Integer;
-- pragma Atomic (Count);
--
-- procedure Handler (Parameter : System.Address);
--
-- end P;
--
-- package body P is
--
-- procedure Handler (Parameter : System.Address) is
-- begin
-- Count := Count + 1;
-- logMsg ("received an interrupt" & ASCII.LF & ASCII.NUL);
-- end Handler;
-- end P;
--
-- with Interfaces.VxWorks; use Interfaces.VxWorks;
-- with Ada.Text_IO; use Ada.Text_IO;
-- with Ada.Interrupts;
-- with Machine_Code; use Machine_Code;
--
-- with P; use P;
-- procedure Useint is
--
-- -- Be sure to use a reasonable interrupt number for target board.
-- -- This one is an unreserved interrupt for the Pentium 3 BSP
--
-- Interrupt : constant := 16#33#;
--
-- task T;
--
-- S : STATUS;
--
-- task body T is
-- begin
-- loop
-- Put_Line ("Generating an interrupt...");
-- delay 1.0;
--
-- -- Generate interrupt, using interrupt number
--
-- Asm ("int %0",
-- Inputs =>
-- Ada.Interrupts.Interrupt_ID'Asm_Input
-- ("i", Interrupt));
-- end loop;
-- end T;
--
-- begin
-- S := intConnect (INUM_TO_IVEC (Interrupt), Handler'Access);
--
-- loop
-- delay 2.0;
-- Put_Line ("value of count:" & P.Count'Img);
-- end loop;
-- end Useint;
-------------------------------------
subtype int is Integer;
type STATUS is new int;
-- Equivalent of the C type STATUS
OK : constant STATUS := 0;
ERROR : constant STATUS := -1;
type VOIDFUNCPTR is access procedure (parameter : System.Address);
type Interrupt_Vector is new System.Address;
type Exception_Vector is new System.Address;
function intConnect
(vector : Interrupt_Vector;
handler : VOIDFUNCPTR;
parameter : System.Address := System.Null_Address) return STATUS;
-- Binding to the C routine intConnect. Use this to set up an user handler.
-- The routine generates a wrapper around the user handler to save and
-- restore context
function intContext return int;
-- Binding to the C routine intContext. This function returns 1 only if the
-- current execution state is in interrupt context.
function intVecGet
(Vector : Interrupt_Vector) return VOIDFUNCPTR;
-- Binding to the C routine intVecGet. Use this to get the existing handler
-- for later restoral
procedure intVecSet
(Vector : Interrupt_Vector;
Handler : VOIDFUNCPTR);
-- Binding to the C routine intVecSet. Use this to restore a handler
-- obtained using intVecGet
procedure intVecGet2
(vector : Interrupt_Vector;
pFunction : out VOIDFUNCPTR;
pIdtGate : not null access int;
pIdtSelector : not null access int);
-- Binding to the C routine intVecGet2. Use this to get the existing
-- handler for later restoral
procedure intVecSet2
(vector : Interrupt_Vector;
pFunction : VOIDFUNCPTR;
pIdtGate : not null access int;
pIdtSelector : not null access int);
-- Binding to the C routine intVecSet2. Use this to restore a
-- handler obtained using intVecGet2
function INUM_TO_IVEC (intNum : int) return Interrupt_Vector;
-- Equivalent to the C macro INUM_TO_IVEC used to convert an interrupt
-- number to an interrupt vector
procedure logMsg
(fmt : String; arg1, arg2, arg3, arg4, arg5, arg6 : int := 0);
-- Binding to the C routine logMsg. Note that it is the caller's
-- responsibility to ensure that fmt is a null-terminated string
-- (e.g logMsg ("Interrupt" & ASCII.NUL))
type FP_CONTEXT is private;
-- Floating point context save and restore. Handlers using floating point
-- must be bracketed with these calls. The pFpContext parameter should be
-- an object of type FP_CONTEXT that is declared local to the handler.
--
-- See the VxWorks Intel Architecture Supplement regarding these routines
procedure fppRestore (pFpContext : in out FP_CONTEXT);
-- Restore floating point context - old style
procedure fppSave (pFpContext : in out FP_CONTEXT);
-- Save floating point context - old style
procedure fppXrestore (pFpContext : in out FP_CONTEXT);
-- Restore floating point context - new style
procedure fppXsave (pFpContext : in out FP_CONTEXT);
-- Save floating point context - new style
private
type FP_CONTEXT is new System.VxWorks.FP_CONTEXT;
-- Target-dependent floating point context type
pragma Import (C, intConnect, "intConnect");
pragma Import (C, intContext, "intContext");
pragma Import (C, intVecGet, "intVecGet");
pragma Import (C, intVecSet, "intVecSet");
pragma Import (C, intVecGet2, "intVecGet2");
pragma Import (C, intVecSet2, "intVecSet2");
pragma Import (C, INUM_TO_IVEC, "__gnat_inum_to_ivec");
pragma Import (C, logMsg, "logMsg");
pragma Import (C, fppRestore, "fppRestore");
pragma Import (C, fppSave, "fppSave");
pragma Import (C, fppXrestore, "fppXrestore");
pragma Import (C, fppXsave, "fppXsave");
end Interfaces.VxWorks;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- U S A G E --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Warning: the output of this usage for warnings is duplicated in the GNAT
-- reference manual. Be sure to update that if you change the warning list.
with Namet; use Namet;
with Opt; use Opt;
with Osint; use Osint;
with Output; use Output;
with System.WCh_Con; use System.WCh_Con;
procedure Usage is
procedure Write_Switch_Char (Sw : String; Prefix : String := "gnat");
-- Output two spaces followed by the switch character minus followed
-- Prefix, followed by the string given as the argument, and then enough
-- blanks to tab to column 13, i.e. assuming Sw is not longer than 5
-- characters, the maximum allowed, Write_Switch_Char will always output
-- exactly 12 characters.
-----------------------
-- Write_Switch_Char --
-----------------------
procedure Write_Switch_Char (Sw : String; Prefix : String := "gnat") is
begin
Write_Str (" -");
Write_Str (Prefix);
Write_Str (Sw);
for J in 1 .. 12 - 3 - Prefix'Length - Sw'Length loop
Write_Char (' ');
end loop;
end Write_Switch_Char;
-- Start of processing for Usage
begin
Find_Program_Name;
-- For gnatmake, we are appending this information to the end of
-- the normal gnatmake output, so generate appropriate header
if Name_Len >= 8
and then (Name_Buffer (Name_Len - 7 .. Name_Len) = "gnatmake"
or else
Name_Buffer (Name_Len - 7 .. Name_Len) = "GNATMAKE")
then
Write_Eol;
Write_Line ("Compiler switches (passed to the compiler by gnatmake):");
else
-- Usage line
Write_Str ("Usage: ");
Write_Program_Name;
Write_Char (' ');
Write_Str ("switches sfile");
Write_Eol;
Write_Eol;
-- Line for sfile
Write_Line (" sfile Source file name");
end if;
Write_Eol;
-- Common switches available everywhere
Write_Switch_Char ("g ", "");
Write_Line ("Generate debugging information");
Write_Switch_Char ("Idir ", "");
Write_Line ("Specify source files search path");
Write_Switch_Char ("I- ", "");
Write_Line ("Do not look for sources in current directory");
Write_Switch_Char ("O[0123] ", "");
Write_Line ("Control the optimization level");
Write_Eol;
-- Individual lines for switches. Write_Switch_Char outputs fourteen
-- characters, so the remaining message is allowed to be a maximum of
-- 65 characters to be comfortable in an 80 character window.
-- Line for -gnata switch
Write_Switch_Char ("a");
Write_Line ("Assertions enabled. Pragma Assert/Debug to be activated");
-- Line for -gnatA switch
Write_Switch_Char ("A");
Write_Line ("Avoid processing gnat.adc, if present file will be ignored");
-- Line for -gnatb switch
Write_Switch_Char ("b");
Write_Line ("Generate brief messages to stderr even if verbose mode set");
-- Line for -gnatB switch
Write_Switch_Char ("B");
Write_Line ("Assume no bad (invalid) values except in 'Valid attribute");
-- Line for -gnatc switch
Write_Switch_Char ("c");
Write_Line ("Check syntax and semantics only (no code generation)");
-- Line for -gnatC switch
Write_Switch_Char ("C");
Write_Line ("Generate CodePeer intermediate format (no code generation)");
-- Line for -gnatd switch
Write_Switch_Char ("d?");
Write_Line ("Compiler debug option ? ([.]a-z,A-Z,0-9), see debug.adb");
-- Line for -gnatD switch
Write_Switch_Char ("D");
Write_Line ("Debug expanded generated code (max line length = 72)");
Write_Switch_Char ("Dnn");
Write_Line ("Debug expanded generated code (max line length = nn)");
-- No line for -gnatea : internal switch
-- Line for -gnateA switch
Write_Switch_Char ("eA");
Write_Line ("Aliasing checks on subprogram parameters");
-- Line for -gnatec switch
Write_Switch_Char ("ec=?");
Write_Line ("Specify configuration pragmas file, e.g. -gnatec=/x/f.adc");
-- Line for -gnateC switch
Write_Switch_Char ("eC");
Write_Line ("Generate CodePeer messages (ignored without -gnatcC)");
-- Line for -gnated switch
Write_Switch_Char ("ed");
Write_Line ("Disable synchronization of atomic variables");
-- Line for -gnateD switch
Write_Switch_Char ("eD?");
Write_Line ("Define or redefine preprocessing symbol, e.g. -gnateDsym=val");
-- Line for -gnateE switch
Write_Switch_Char ("eE");
Write_Line ("Generate extra information in exception messages");
-- Line for -gnatef switch
Write_Switch_Char ("ef");
Write_Line ("Full source path in brief error messages");
-- Line for -gnateF switch
Write_Switch_Char ("eF");
Write_Line ("Check overflow on predefined Float types");
-- Line for -gnateG switch
Write_Switch_Char ("eG");
Write_Line ("Generate preprocessed source");
-- Line for -gnatei switch
Write_Switch_Char ("einn");
Write_Line ("Set maximum number of instantiations to nn");
-- Line for -gnateI switch
Write_Switch_Char ("eInn");
Write_Line ("Index in multi-unit source, e.g. -gnateI2");
-- Line for -gnatel switch
Write_Switch_Char ("el");
Write_Line ("Turn on info messages on generated Elaborate[_All] pragmas");
-- Line for -gnateL switch
Write_Switch_Char ("eL");
Write_Line ("Turn off info messages on generated Elaborate[_All] pragmas");
-- Line for -gnatem switch
Write_Switch_Char ("em=?");
Write_Line ("Specify mapping file, e.g. -gnatem=mapping");
-- No line for -gnateO=? : internal switch
-- Line for -gnatep switch
Write_Switch_Char ("ep=?");
Write_Line ("Specify preprocessing data file, e.g. -gnatep=prep.data");
-- Line for -gnateP switch
Write_Switch_Char ("eP");
Write_Line ("Pure/Prelaborate errors generate warnings rather than errors");
-- No line for -gnates=? : internal switch
-- Line for -gnateS switch
Write_Switch_Char ("eS");
Write_Line ("Generate SCO (Source Coverage Obligation) information");
-- Line for -gnatet switch
Write_Switch_Char ("et=?");
Write_Line ("Write target dependent information file ?, e.g. gnatet=tdf");
-- Line for -gnateT switch
Write_Switch_Char ("eT=?");
Write_Line ("Read target dependent information file ?, e.g. gnateT=tdf");
-- Line for -gnateu switch
Write_Switch_Char ("eu");
Write_Line ("Ignore unrecognized style/validity/warning switches");
-- Line for -gnateV switch
Write_Switch_Char ("eV");
Write_Line ("Validity checks on subprogram parameters");
-- Line for -gnateY switch
Write_Switch_Char ("eY");
Write_Line ("Ignore all Style_Checks pragmas in source");
-- No line for -gnatez : internal switch
-- Line for -gnatE switch
Write_Switch_Char ("E");
Write_Line ("Dynamic elaboration checking mode enabled");
-- Line for -gnatf switch
Write_Switch_Char ("f");
Write_Line ("Full errors. Verbose details, all undefined references");
-- Line for -gnatF switch
Write_Switch_Char ("F");
Write_Line ("Force all import/export external names to all uppercase");
-- Line for -gnatg switch
Write_Switch_Char ("g");
Write_Line ("GNAT implementation mode (used for compiling GNAT units)");
-- Lines for -gnatG switch
Write_Switch_Char ("G");
Write_Line ("Output generated expanded code (max line length = 72)");
Write_Switch_Char ("Gnn");
Write_Line ("Output generated expanded code (max line length = nn)");
-- Line for -gnath switch
Write_Switch_Char ("h");
Write_Line ("Output this usage (help) information");
-- Line for -gnati switch
Write_Switch_Char ("i?");
Write_Line ("Identifier char set (?=1/2/3/4/5/8/9/p/f/n/w)");
-- Line for -gnatI switch
Write_Switch_Char ("I");
Write_Line ("Ignore all representation clauses");
-- Line for -gnatj switch
Write_Switch_Char ("jnn");
Write_Line ("Format error and warning messages to fit nn character lines");
-- Line for -gnatk switch
Write_Switch_Char ("k");
Write_Line ("Limit file names to nn characters (k = krunch)");
-- Lines for -gnatl switch
Write_Switch_Char ("l");
Write_Line ("Output full source listing with embedded error messages");
Write_Switch_Char ("l=f");
Write_Line ("Output full source listing to specified file");
-- Line for -gnatL switch
Write_Switch_Char ("L");
Write_Line ("List corresponding source text in -gnatG or -gnatD output");
-- Line for -gnatm switch
Write_Switch_Char ("mnn");
Write_Line ("Limit number of detected errors/warnings to nn (1-999999)");
-- Line for -gnatn switch
Write_Switch_Char ("n[?]");
Write_Line ("Enable pragma Inline (both within and across units, ?=1/2)");
-- Line for -gnato switch
Write_Switch_Char ("o0");
Write_Line ("Disable overflow checking");
Write_Switch_Char ("o");
Write_Line ("Enable overflow checking in STRICT (-gnato1) mode (default)");
-- Lines for -gnato? switches
Write_Switch_Char ("o?");
Write_Line
("Enable overflow checks in STRICT/MINIMIZED/ELIMINATED (1/2/3) mode ");
Write_Switch_Char ("o??");
Write_Line
("Set mode for general/assertion expressions separately");
-- No line for -gnatO : internal switch
-- Line for -gnatp switch
Write_Switch_Char ("p");
Write_Line ("Suppress all checks");
-- Line for -gnatP switch
Write_Switch_Char ("P");
Write_Line ("Generate periodic calls to System.Polling.Poll");
-- Line for -gnatq switch
Write_Switch_Char ("q");
Write_Line ("Don't quit, try semantics, even if parse errors");
-- Line for -gnatQ switch
Write_Switch_Char ("Q");
Write_Line ("Don't quit, write ali/tree file even if compile errors");
-- Line for -gnatr switch
Write_Switch_Char ("r");
Write_Line ("Treat pragma Restrictions as Restriction_Warnings");
-- Lines for -gnatR switch
Write_Switch_Char ("R?");
Write_Line
("List rep info (?=0/1/2/3/m for none/types/all/variable/mechanisms)");
Write_Switch_Char ("R?s");
Write_Line ("List rep info to file.rep instead of standard output");
-- Line for -gnats switch
Write_Switch_Char ("s");
Write_Line ("Syntax check only");
-- Line for -gnatS switch
Write_Switch_Char ("S");
Write_Line ("Print listing of package Standard");
-- Line for -gnatt switch
Write_Switch_Char ("t");
Write_Line ("Tree output file to be generated");
-- Line for -gnatTnn switch
Write_Switch_Char ("Tnn");
Write_Line ("All compiler tables start at nn times usual starting size");
-- Line for -gnatu switch
Write_Switch_Char ("u");
Write_Line ("List units for this compilation");
-- Line for -gnatU switch
Write_Switch_Char ("U");
Write_Line ("Enable unique tag for error messages");
-- Line for -gnatv switch
Write_Switch_Char ("v");
Write_Line ("Verbose mode. Full error output with source lines to stdout");
-- Lines for -gnatV switch
Write_Switch_Char ("Vxx");
Write_Line
("Enable selected validity checking mode, xx = list of parameters:");
Write_Line (" a turn on all validity checking options");
Write_Line (" c turn on checking for copies");
Write_Line (" C turn off checking for copies");
Write_Line (" d turn on default (RM) checking");
Write_Line (" D turn off default (RM) checking");
Write_Line (" e turn on checking for elementary components");
Write_Line (" E turn off checking for elementary components");
Write_Line (" f turn on checking for floating-point");
Write_Line (" F turn off checking for floating-point");
Write_Line (" i turn on checking for in params");
Write_Line (" I turn off checking for in params");
Write_Line (" m turn on checking for in out params");
Write_Line (" M turn off checking for in out params");
Write_Line (" o turn on checking for operators/attributes");
Write_Line (" O turn off checking for operators/attributes");
Write_Line (" p turn on checking for parameters");
Write_Line (" P turn off checking for parameters");
Write_Line (" r turn on checking for returns");
Write_Line (" R turn off checking for returns");
Write_Line (" s turn on checking for subscripts");
Write_Line (" S turn off checking for subscripts");
Write_Line (" t turn on checking for tests");
Write_Line (" T turn off checking for tests");
Write_Line (" n turn off all validity checks (including RM)");
-- Lines for -gnatw switch
Write_Switch_Char ("wxx");
Write_Line ("Enable selected warning modes, xx = list of parameters:");
Write_Line (" * indicates default setting");
Write_Line (" + indicates warning flag included in -gnatwa");
Write_Line (" a turn on all info/warnings marked below with +");
Write_Line (" A turn off all optional info/warnings");
Write_Line (" .a*+ turn on warnings for failing assertion");
Write_Line (" .A turn off warnings for failing assertion");
Write_Line (" b+ turn on warnings for bad fixed value " &
"(not multiple of small)");
Write_Line (" B* turn off warnings for bad fixed value " &
"(not multiple of small)");
Write_Line (" .b*+ turn on warnings for biased representation");
Write_Line (" .B turn off warnings for biased representation");
Write_Line (" c+ turn on warnings for constant conditional");
Write_Line (" C* turn off warnings for constant conditional");
Write_Line (" .c+ turn on warnings for unrepped components");
Write_Line (" .C* turn off warnings for unrepped components");
Write_Line (" d turn on warnings for implicit dereference");
Write_Line (" D* turn off warnings for implicit dereference");
Write_Line (" .d turn on tagging of warnings with -gnatw switch");
Write_Line (" .D* turn off tagging of warnings with -gnatw switch");
Write_Line (" e treat all warnings (but not info) as errors");
Write_Line (" .e turn on every optional info/warning " &
"(no exceptions)");
Write_Line (" f+ turn on warnings for unreferenced formal");
Write_Line (" F* turn off warnings for unreferenced formal");
Write_Line (" .f turn on warnings for suspicious Subp'Access");
Write_Line (" .F* turn off warnings for suspicious Subp'Access");
Write_Line (" g*+ turn on warnings for unrecognized pragma");
Write_Line (" G turn off warnings for unrecognized pragma");
Write_Line (" .g turn on GNAT warnings");
Write_Line (" h turn on warnings for hiding declarations");
Write_Line (" H* turn off warnings for hiding declarations");
Write_Line (" .h turn on warnings for holes in records");
Write_Line (" .H* turn off warnings for holes in records");
Write_Line (" i*+ turn on warnings for implementation unit");
Write_Line (" I turn off warnings for implementation unit");
Write_Line (" .i*+ turn on warnings for overlapping actuals");
Write_Line (" .I turn off warnings for overlapping actuals");
Write_Line (" j+ turn on warnings for obsolescent " &
"(annex J) feature");
Write_Line (" J* turn off warnings for obsolescent " &
"(annex J) feature");
Write_Line (" k+ turn on warnings on constant variable");
Write_Line (" K* turn off warnings on constant variable");
Write_Line (" .k turn on warnings for standard redefinition");
Write_Line (" .K* turn off warnings for standard redefinition");
Write_Line (" l turn on warnings for elaboration problems");
Write_Line (" L* turn off warnings for elaboration problems");
Write_Line (" .l turn on info messages for inherited aspects");
Write_Line (" .L* turn off info messages for inherited aspects");
Write_Line (" m+ turn on warnings for variable assigned " &
"but not read");
Write_Line (" M* turn off warnings for variable assigned " &
"but not read");
Write_Line (" .m*+ turn on warnings for suspicious modulus value");
Write_Line (" .M turn off warnings for suspicious modulus value");
Write_Line (" n* normal warning mode (cancels -gnatws/-gnatwe)");
Write_Line (" .n turn on info messages for atomic " &
"synchronization");
Write_Line (" .N* turn off info messages for atomic " &
"synchronization");
Write_Line (" o* turn on warnings for address clause overlay");
Write_Line (" O turn off warnings for address clause overlay");
Write_Line (" .o turn on warnings for out parameters assigned " &
"but not read");
Write_Line (" .O* turn off warnings for out parameters assigned " &
"but not read");
Write_Line (" p+ turn on warnings for ineffective pragma " &
"Inline in frontend");
Write_Line (" P* turn off warnings for ineffective pragma " &
"Inline in frontend");
Write_Line (" .p+ turn on warnings for suspicious parameter " &
"order");
Write_Line (" .P* turn off warnings for suspicious parameter " &
"order");
Write_Line (" q*+ turn on warnings for questionable " &
"missing parenthesis");
Write_Line (" Q turn off warnings for questionable " &
"missing parenthesis");
Write_Line (" r+ turn on warnings for redundant construct");
Write_Line (" R* turn off warnings for redundant construct");
Write_Line (" .r+ turn on warnings for object renaming function");
Write_Line (" .R* turn off warnings for object renaming function");
Write_Line (" s suppress all info/warnings");
Write_Line (" .s turn on warnings for overridden size clause");
Write_Line (" .S* turn off warnings for overridden size clause");
Write_Line (" t turn on warnings for tracking deleted code");
Write_Line (" T* turn off warnings for tracking deleted code");
Write_Line (" .t*+ turn on warnings for suspicious contract");
Write_Line (" .T turn off warnings for suspicious contract");
Write_Line (" u+ turn on warnings for unused entity");
Write_Line (" U* turn off warnings for unused entity");
Write_Line (" .u turn on warnings for unordered enumeration");
Write_Line (" .U* turn off warnings for unordered enumeration");
Write_Line (" v*+ turn on warnings for unassigned variable");
Write_Line (" V turn off warnings for unassigned variable");
Write_Line (" .v*+ turn on info messages for reverse bit order");
Write_Line (" .V turn off info messages for reverse bit order");
Write_Line (" w*+ turn on warnings for wrong low bound assumption");
Write_Line (" W turn off warnings for wrong low bound " &
"assumption");
Write_Line (" .w turn on warnings on pragma Warnings Off");
Write_Line (" .W* turn off warnings on pragma Warnings Off");
Write_Line (" x*+ turn on warnings for export/import");
Write_Line (" X turn off warnings for export/import");
Write_Line (" .x+ turn on warnings for non-local exception");
Write_Line (" .X* turn off warnings for non-local exception");
Write_Line (" y*+ turn on warnings for Ada compatibility issues");
Write_Line (" Y turn off warnings for Ada compatibility issues");
Write_Line (" .y turn on info messages for why pkg body needed");
Write_Line (" .Y* turn off info messages for why pkg body needed");
Write_Line (" z*+ turn on warnings for suspicious " &
"unchecked conversion");
Write_Line (" Z turn off warnings for suspicious " &
"unchecked conversion");
Write_Line (" .z*+ turn on warnings for record size not a " &
"multiple of alignment");
Write_Line (" .Z turn off warnings for record size not a " &
"multiple of alignment");
-- Line for -gnatW switch
Write_Switch_Char ("W?");
Write_Str ("Wide character encoding method (?=");
for J in WC_Encoding_Method loop
Write_Char (WC_Encoding_Letters (J));
if J = WC_Encoding_Method'Last then
Write_Char (')');
else
Write_Char ('/');
end if;
end loop;
Write_Eol;
-- Line for -gnatx switch
Write_Switch_Char ("x");
Write_Line ("Suppress output of cross-reference information");
-- Line for -gnatX switch
Write_Switch_Char ("X");
Write_Line ("Language extensions permitted");
-- Lines for -gnaty switch
Write_Switch_Char ("y");
Write_Line ("Enable default style checks (same as -gnaty3abcefhiklmnprst)");
Write_Switch_Char ("yxx");
Write_Line ("Enable selected style checks xx = list of parameters:");
Write_Line (" 1-9 check indentation");
Write_Line (" a check attribute casing");
Write_Line (" A check array attribute indexes");
Write_Line (" b check no blanks at end of lines");
Write_Line (" B check no use of AND/OR for boolean expressions");
Write_Line (" c check comment format (two spaces)");
Write_Line (" C check comment format (one space)");
Write_Line (" d check no DOS line terminators");
Write_Line (" e check end/exit labels present");
Write_Line (" f check no form feeds/vertical tabs in source");
Write_Line (" g check standard GNAT style rules, same as ydISux");
Write_Line (" h check no horizontal tabs in source");
Write_Line (" i check if-then layout");
Write_Line (" I check mode in");
Write_Line (" k check casing rules for keywords");
Write_Line (" l check reference manual layout");
Write_Line (" Lnn check max nest level < nn ");
Write_Line (" m check line length <= 79 characters");
Write_Line (" Mnn check line length <= nn characters");
Write_Line (" n check casing of package Standard identifiers");
Write_Line (" N turn off all checks");
Write_Line (" o check subprogram bodies in alphabetical order");
Write_Line (" O check overriding indicators");
Write_Line (" p check pragma casing");
Write_Line (" r check casing for identifier references");
Write_Line (" s check separate subprogram specs present");
Write_Line (" S check separate lines after THEN or ELSE");
Write_Line (" t check token separation rules");
Write_Line (" u check no unnecessary blank lines");
Write_Line (" x check extra parentheses around conditionals");
Write_Line (" y turn on default style checks");
Write_Line (" - subtract (turn off) subsequent checks");
Write_Line (" + add (turn on) subsequent checks");
-- Lines for -gnatyN switch
Write_Switch_Char ("yN");
Write_Line ("Cancel all previously set style checks");
-- Lines for -gnatzc switch
Write_Switch_Char ("zc");
Write_Line ("Distribution stub generation for caller stubs");
-- Lines for -gnatzr switch
Write_Switch_Char ("zr");
Write_Line ("Distribution stub generation for receiver stubs");
if not Latest_Ada_Only then
-- Line for -gnat83 switch
Write_Switch_Char ("83");
Write_Line ("Ada 83 mode");
-- Line for -gnat95 switch
Write_Switch_Char ("95");
if Ada_Version_Default = Ada_95 then
Write_Line ("Ada 95 mode (default)");
else
Write_Line ("Ada 95 mode");
end if;
-- Line for -gnat2005 switch
Write_Switch_Char ("2005");
if Ada_Version_Default = Ada_2005 then
Write_Line ("Ada 2005 mode (default)");
else
Write_Line ("Ada 2005 mode");
end if;
end if;
-- Line for -gnat2012 switch
Write_Switch_Char ("2012");
if Ada_Version_Default = Ada_2012 then
Write_Line ("Ada 2012 mode (default)");
else
Write_Line ("Ada 2012 mode");
end if;
-- Line for -gnat-p switch
Write_Switch_Char ("-p");
Write_Line ("Cancel effect of previous -gnatp switch");
end Usage;
|
-- F defines a differential equation whose solution is Exp (i*t).
-- dY/dt = F(Y).
-- For testing.
generic
type Real is digits <>;
package Sinu_2 is
type Dyn_Index is range 0..1; -- the 2nd component is just ignored in the tests.
type Dynamical_Variable is array(Dyn_Index) of Real;
DynZero : constant Dynamical_Variable := (others => 0.0);
function F
(Time : Real;
Y : Dynamical_Variable)
return Dynamical_Variable;
-- Defines the equation to be integrated,
-- dY/dt = F (t, Y). Even if the equation is t or Y
-- independent, it must be entered in this form.
function "*"
(Left : Real;
Right : Dynamical_Variable)
return Dynamical_Variable;
function "+"
(Left : Dynamical_Variable;
Right : Dynamical_Variable)
return Dynamical_Variable;
function "-"
(Left : Dynamical_Variable;
Right : Dynamical_Variable)
return Dynamical_Variable;
function Norm (Y : Dynamical_Variable) return Real;
pragma Inline (F, "*", "+", "-", Norm);
end Sinu_2;
|
-- floats_ranges.adb
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
procedure floats_ranges is
Sum1Float : Float := 53.98;
Sum2Float : Float := 94.22;
Total : Float := 0.0;
begin
Put_Line("The min range of a float [ " & Float'Image(Float'First) &
" ] and the max range of a float [ " & Float'Image(Float'Last) & " ].");
Total := Sum1Float + Sum2Float;
Put_Line("The total of the two sums: " & Float'Image(Total));
Put(Total, Exp => 0);
end floats_ranges;
|
-------------------------------------------------------------------------------
-- This file is part of libsparkcrypto.
--
-- @author Alexander Senier
-- @date 2019-01-24
--
-- Copyright (C) 2018 Componolit GmbH
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
--
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
--
-- * Neither the name of the nor the names of its contributors may be used
-- to endorse or promote products derived from this software without
-- specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
-- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
-------------------------------------------------------------------------------
with AUnit; use AUnit;
with AUnit.Test_Cases; use AUnit.Test_Cases;
-- @summary Tests HMAC SHA-1
package LSC_Test_HMAC_SHA1 is
type Test_Case is new Test_Cases.Test_Case with null record;
procedure Register_Tests (T : in out Test_Case);
-- Register routines to be run
function Name (T : Test_Case) return Message_String;
-- Provide name identifying the test case
end LSC_Test_HMAC_SHA1;
|
------------------------------------------------------------------------------
-- --
-- GNAT EXAMPLE --
-- --
-- Copyright (C) 2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- 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 file provides type definitions for the TMS570LS31 (ARM Cortex R4F)
-- microcontrollers from Texas Instruments.
pragma Restrictions (No_Elaboration_Code);
with Interfaces;
package TMS570 is
type Word is new Interfaces.Unsigned_32; -- for shift/rotate
type Half_Word is new Interfaces.Unsigned_16; -- for shift/rotate
type Byte is new Interfaces.Unsigned_8; -- for shift/rotate
type Bits_1 is mod 2**1;
type Bits_2 is mod 2**2;
type Bits_4 is mod 2**4;
type Bits_32x1 is array (0 .. 31) of Bits_1;
pragma Pack (Bits_32x1);
type Bits_16x2 is array (0 .. 15) of Bits_2;
pragma Pack (Bits_16x2);
type Bits_8x4 is array (0 .. 7) of Bits_4;
pragma Pack (Bits_8x4);
end TMS570;
|
<?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>honeybee</name>
<ret_bitwidth>64</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>edge_p1_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>edge_p1_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>edge_p1_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p1.y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>edge_p2_x</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<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>edge_p2_y</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>edge_p2_z</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>edge_y.p2.y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>edge_p2_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>edge_p2_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>31</item>
<item>32</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>edge_p2_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>edge_p1_z_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>36</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>edge_p1_y_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>edge_p1_x_read</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>153</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>153</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>39</item>
<item>40</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>collisions_z</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_z</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>collisions_y</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_y</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>collisions_x</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions_x</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>or_ln164</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>66</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>10</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>collisions</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>collisions</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>67</item>
<item>68</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.80</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>_ln165</name>
<fileName>src/honeybee.c</fileName>
<fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>honeybee</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/mnt/hgfs/Thesis/HoneyBee</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/honeybee.c</first>
<second>honeybee</second>
</first>
<second>165</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>69</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_19">
<Value>
<Obj>
<type>2</type>
<id>41</id>
<name>checkAxis_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:checkAxis.2></content>
</item>
<item class_id_reference="16" object_id="_20">
<Value>
<Obj>
<type>2</type>
<id>49</id>
<name>checkAxis_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:checkAxis.0></content>
</item>
<item class_id_reference="16" object_id="_21">
<Value>
<Obj>
<type>2</type>
<id>57</id>
<name>checkAxis_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:checkAxis.1></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="_22">
<Obj>
<type>3</type>
<id>27</id>
<name>honeybee</name>
<fileName></fileName>
<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>12</count>
<item_version>0</item_version>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>32</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_23">
<id>30</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_24">
<id>32</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_25">
<id>34</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="_26">
<id>36</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_27">
<id>38</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_28">
<id>40</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_29">
<id>42</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_30">
<id>43</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_31">
<id>44</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_32">
<id>45</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_33">
<id>46</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_34">
<id>47</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_35">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_36">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_37">
<id>51</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_38">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_39">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_40">
<id>54</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_41">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_42">
<id>56</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_43">
<id>58</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_44">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_45">
<id>60</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_46">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_47">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_48">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_49">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_50">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<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="_52">
<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="_53">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>26</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="_55">
<mId>1</mId>
<mTag>honeybee</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>27</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>214</mMinLatency>
<mMaxLatency>214</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_56">
<states class_id="25" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_57">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_58">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_59">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_60">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_61">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_62">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_63">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_64">
<id>21</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_65">
<id>22</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_66">
<id>23</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_67">
<id>2</id>
<operations>
<count>14</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_68">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_69">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_70">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_71">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_72">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_73">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_74">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_75">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_76">
<id>21</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_77">
<id>22</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_78">
<id>23</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_79">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_80">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_81">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_82">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="35" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>15</first>
<second class_id="37" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="38" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="39" tracking_level="0" version="0">
<first>27</first>
<second class_id="40" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="41" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="42" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<first>28</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>34</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>40</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>46</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>58</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>64</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>21</item>
<item>21</item>
</second>
</item>
<item>
<first>80</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>23</item>
<item>23</item>
</second>
</item>
<item>
<first>96</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>22</item>
<item>22</item>
</second>
</item>
<item>
<first>112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="45" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>collisions_fu_118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>or_ln164_fu_112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>3</count>
<item_version>0</item_version>
<item>
<first>grp_checkAxis_0_fu_96</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>22</item>
<item>22</item>
</second>
</item>
<item>
<first>grp_checkAxis_1_fu_80</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>23</item>
<item>23</item>
</second>
</item>
<item>
<first>grp_checkAxis_2_fu_64</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>21</item>
<item>21</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>6</count>
<item_version>0</item_version>
<item>
<first>edge_p1_x_read_read_fu_58</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>edge_p1_y_read_read_fu_52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>edge_p1_z_read_read_fu_46</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>edge_p2_x_read_read_fu_40</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>edge_p2_y_read_read_fu_34</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>edge_p2_z_read_read_fu_28</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</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="47" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>159</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>6</count>
<item_version>0</item_version>
<item>
<first>edge_p1_x_read_reg_159</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>edge_p1_y_read_reg_152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>edge_p1_z_read_reg_145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>edge_p2_x_read_reg_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>edge_p2_y_read_reg_131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>edge_p2_z_read_reg_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="48" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>edge_p1_x</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</second>
</item>
<item>
<first>edge_p1_y</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</second>
</item>
<item>
<first>edge_p1_z</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
</second>
</item>
<item>
<first>edge_p2_x</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
</second>
</item>
<item>
<first>edge_p2_y</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
</second>
</item>
<item>
<first>edge_p2_z</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="50" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
with Interfaces; use Interfaces;
with Interfaces.C; use Interfaces.C;
package GPIO is
function Init return Unsigned_8;
pragma Import (C, Init, "bcm2835_init");
procedure Close;
pragma Import (C, Close, "bcm2835_close");
procedure Write(Pin: Unsigned_16; Value: Unsigned_8);
pragma Import (C, Write, "bcm2835_gpio_write");
MODE_INPUT : Unsigned_8 := 0;
MODE_OUTPUT : Unsigned_8 := 1;
procedure Set_Mode(Pin: Unsigned_16; Value: Unsigned_8);
pragma Import (C, Set_Mode, "bcm2835_gpio_fsel");
end GPIO;
|
-----------------------------------------------------------------------
-- AWA.Countries.Models -- AWA.Countries.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;
pragma Warnings (On);
package AWA.Countries.Models is
pragma Style_Checks ("-mr");
type Country_Ref is new ADO.Objects.Object_Ref with null record;
type City_Ref is new ADO.Objects.Object_Ref with null record;
type Country_Neighbor_Ref is new ADO.Objects.Object_Ref with null record;
type Region_Ref is new ADO.Objects.Object_Ref with null record;
-- --------------------
-- The country model is a system data model for the application.
-- In theory, it never changes.
-- --------------------
-- Create an object key for Country.
function Country_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Country from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Country_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Country : constant Country_Ref;
function "=" (Left, Right : Country_Ref'Class) return Boolean;
-- Set the country identifier
procedure Set_Id (Object : in out Country_Ref;
Value : in ADO.Identifier);
-- Get the country identifier
function Get_Id (Object : in Country_Ref)
return ADO.Identifier;
-- Set the country name
procedure Set_Name (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Country_Ref;
Value : in String);
-- Get the country name
function Get_Name (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Country_Ref)
return String;
-- Set the continent name
procedure Set_Continent (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Continent (Object : in out Country_Ref;
Value : in String);
-- Get the continent name
function Get_Continent (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Continent (Object : in Country_Ref)
return String;
-- Set the currency used in the country
procedure Set_Currency (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Currency (Object : in out Country_Ref;
Value : in String);
-- Get the currency used in the country
function Get_Currency (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Currency (Object : in Country_Ref)
return String;
-- Set the country ISO code
procedure Set_Iso_Code (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Iso_Code (Object : in out Country_Ref;
Value : in String);
-- Get the country ISO code
function Get_Iso_Code (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Iso_Code (Object : in Country_Ref)
return String;
-- Set the country geoname id
procedure Set_Geonameid (Object : in out Country_Ref;
Value : in Integer);
-- Get the country geoname id
function Get_Geonameid (Object : in Country_Ref)
return Integer;
-- Set the country main language
procedure Set_Languages (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Languages (Object : in out Country_Ref;
Value : in String);
-- Get the country main language
function Get_Languages (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Languages (Object : in Country_Ref)
return String;
-- Set the TLD associated with this country
procedure Set_Tld (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Tld (Object : in out Country_Ref;
Value : in String);
-- Get the TLD associated with this country
function Get_Tld (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Tld (Object : in Country_Ref)
return String;
-- Set the currency code
procedure Set_Currency_Code (Object : in out Country_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Currency_Code (Object : in out Country_Ref;
Value : in String);
-- Get the currency code
function Get_Currency_Code (Object : in Country_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Currency_Code (Object : in Country_Ref)
return String;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Country_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 Country_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 Country_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 Country_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Country_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Country_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
COUNTRY_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Country_Ref);
-- Copy of the object.
procedure Copy (Object : in Country_Ref;
Into : in out Country_Ref);
-- Create an object key for City.
function City_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for City from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function City_Key (Id : in String) return ADO.Objects.Object_Key;
Null_City : constant City_Ref;
function "=" (Left, Right : City_Ref'Class) return Boolean;
-- Set the city identifier
procedure Set_Id (Object : in out City_Ref;
Value : in ADO.Identifier);
-- Get the city identifier
function Get_Id (Object : in City_Ref)
return ADO.Identifier;
-- Set the city name
procedure Set_Name (Object : in out City_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out City_Ref;
Value : in String);
-- Get the city name
function Get_Name (Object : in City_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in City_Ref)
return String;
-- Set the city ZIP code
procedure Set_Zip_Code (Object : in out City_Ref;
Value : in Integer);
-- Get the city ZIP code
function Get_Zip_Code (Object : in City_Ref)
return Integer;
-- Set the city latitude
procedure Set_Latitude (Object : in out City_Ref;
Value : in Integer);
-- Get the city latitude
function Get_Latitude (Object : in City_Ref)
return Integer;
-- Set the city longitude
procedure Set_Longitude (Object : in out City_Ref;
Value : in Integer);
-- Get the city longitude
function Get_Longitude (Object : in City_Ref)
return Integer;
-- Set the region that this city belongs to
procedure Set_Region (Object : in out City_Ref;
Value : in AWA.Countries.Models.Region_Ref'Class);
-- Get the region that this city belongs to
function Get_Region (Object : in City_Ref)
return AWA.Countries.Models.Region_Ref'Class;
-- Set the country that this city belongs to
procedure Set_Country (Object : in out City_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
-- Get the country that this city belongs to
function Get_Country (Object : in City_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out City_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 City_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 City_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 City_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out City_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in City_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
CITY_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out City_Ref);
-- Copy of the object.
procedure Copy (Object : in City_Ref;
Into : in out City_Ref);
-- --------------------
-- The country neighbor defines what countries
-- are neigbors with each other
-- --------------------
-- Create an object key for Country_Neighbor.
function Country_Neighbor_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Country_Neighbor from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Country_Neighbor_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Country_Neighbor : constant Country_Neighbor_Ref;
function "=" (Left, Right : Country_Neighbor_Ref'Class) return Boolean;
--
procedure Set_Id (Object : in out Country_Neighbor_Ref;
Value : in ADO.Identifier);
--
function Get_Id (Object : in Country_Neighbor_Ref)
return ADO.Identifier;
--
procedure Set_Neighbor_Of (Object : in out Country_Neighbor_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
--
function Get_Neighbor_Of (Object : in Country_Neighbor_Ref)
return AWA.Countries.Models.Country_Ref'Class;
--
procedure Set_Neighbor (Object : in out Country_Neighbor_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
--
function Get_Neighbor (Object : in Country_Neighbor_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Country_Neighbor_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 Country_Neighbor_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 Country_Neighbor_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 Country_Neighbor_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Country_Neighbor_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Country_Neighbor_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
COUNTRY_NEIGHBOR_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Country_Neighbor_Ref);
-- Copy of the object.
procedure Copy (Object : in Country_Neighbor_Ref;
Into : in out Country_Neighbor_Ref);
-- --------------------
-- Region defines an area within a country.
-- --------------------
-- Create an object key for Region.
function Region_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key;
-- Create an object key for Region from a string.
-- Raises Constraint_Error if the string cannot be converted into the object key.
function Region_Key (Id : in String) return ADO.Objects.Object_Key;
Null_Region : constant Region_Ref;
function "=" (Left, Right : Region_Ref'Class) return Boolean;
-- Set the region identifier
procedure Set_Id (Object : in out Region_Ref;
Value : in ADO.Identifier);
-- Get the region identifier
function Get_Id (Object : in Region_Ref)
return ADO.Identifier;
-- Set the region name
procedure Set_Name (Object : in out Region_Ref;
Value : in Ada.Strings.Unbounded.Unbounded_String);
procedure Set_Name (Object : in out Region_Ref;
Value : in String);
-- Get the region name
function Get_Name (Object : in Region_Ref)
return Ada.Strings.Unbounded.Unbounded_String;
function Get_Name (Object : in Region_Ref)
return String;
-- Set the region geonameid
procedure Set_Geonameid (Object : in out Region_Ref;
Value : in Integer);
-- Get the region geonameid
function Get_Geonameid (Object : in Region_Ref)
return Integer;
-- Set the country that this region belongs to
procedure Set_Country (Object : in out Region_Ref;
Value : in AWA.Countries.Models.Country_Ref'Class);
-- Get the country that this region belongs to
function Get_Country (Object : in Region_Ref)
return AWA.Countries.Models.Country_Ref'Class;
-- Load the entity identified by 'Id'.
-- Raises the NOT_FOUND exception if it does not exist.
procedure Load (Object : in out Region_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 Region_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 Region_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 Region_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
-- Delete the entity.
overriding
procedure Delete (Object : in out Region_Ref;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
function Get_Value (From : in Region_Ref;
Name : in String) return Util.Beans.Objects.Object;
-- Table definition
REGION_TABLE : constant ADO.Schemas.Class_Mapping_Access;
-- Internal method to allocate the Object_Record instance
overriding
procedure Allocate (Object : in out Region_Ref);
-- Copy of the object.
procedure Copy (Object : in Region_Ref;
Into : in out Region_Ref);
private
COUNTRY_NAME : aliased constant String := "awa_country";
COL_0_1_NAME : aliased constant String := "id";
COL_1_1_NAME : aliased constant String := "name";
COL_2_1_NAME : aliased constant String := "continent";
COL_3_1_NAME : aliased constant String := "currency";
COL_4_1_NAME : aliased constant String := "iso_code";
COL_5_1_NAME : aliased constant String := "geonameid";
COL_6_1_NAME : aliased constant String := "languages";
COL_7_1_NAME : aliased constant String := "tld";
COL_8_1_NAME : aliased constant String := "currency_code";
COUNTRY_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 9,
Table => COUNTRY_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)
);
COUNTRY_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= COUNTRY_DEF'Access;
Null_Country : constant Country_Ref
:= Country_Ref'(ADO.Objects.Object_Ref with null record);
type Country_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => COUNTRY_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Continent : Ada.Strings.Unbounded.Unbounded_String;
Currency : Ada.Strings.Unbounded.Unbounded_String;
Iso_Code : Ada.Strings.Unbounded.Unbounded_String;
Geonameid : Integer;
Languages : Ada.Strings.Unbounded.Unbounded_String;
Tld : Ada.Strings.Unbounded.Unbounded_String;
Currency_Code : Ada.Strings.Unbounded.Unbounded_String;
end record;
type Country_Access is access all Country_Impl;
overriding
procedure Destroy (Object : access Country_Impl);
overriding
procedure Find (Object : in out Country_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Country_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Country_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Country_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Country_Ref'Class;
Impl : out Country_Access);
CITY_NAME : aliased constant String := "awa_city";
COL_0_2_NAME : aliased constant String := "id";
COL_1_2_NAME : aliased constant String := "name";
COL_2_2_NAME : aliased constant String := "zip_code";
COL_3_2_NAME : aliased constant String := "latitude";
COL_4_2_NAME : aliased constant String := "longitude";
COL_5_2_NAME : aliased constant String := "region_id";
COL_6_2_NAME : aliased constant String := "country_id";
CITY_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 7,
Table => CITY_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,
6 => COL_5_2_NAME'Access,
7 => COL_6_2_NAME'Access)
);
CITY_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= CITY_DEF'Access;
Null_City : constant City_Ref
:= City_Ref'(ADO.Objects.Object_Ref with null record);
type City_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => CITY_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Zip_Code : Integer;
Latitude : Integer;
Longitude : Integer;
Region : AWA.Countries.Models.Region_Ref;
Country : AWA.Countries.Models.Country_Ref;
end record;
type City_Access is access all City_Impl;
overriding
procedure Destroy (Object : access City_Impl);
overriding
procedure Find (Object : in out City_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out City_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out City_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out City_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out City_Ref'Class;
Impl : out City_Access);
COUNTRY_NEIGHBOR_NAME : aliased constant String := "awa_country_neighbor";
COL_0_3_NAME : aliased constant String := "id";
COL_1_3_NAME : aliased constant String := "neighbor_of_id";
COL_2_3_NAME : aliased constant String := "neighbor_id";
COUNTRY_NEIGHBOR_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 3,
Table => COUNTRY_NEIGHBOR_NAME'Access,
Members => (
1 => COL_0_3_NAME'Access,
2 => COL_1_3_NAME'Access,
3 => COL_2_3_NAME'Access)
);
COUNTRY_NEIGHBOR_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= COUNTRY_NEIGHBOR_DEF'Access;
Null_Country_Neighbor : constant Country_Neighbor_Ref
:= Country_Neighbor_Ref'(ADO.Objects.Object_Ref with null record);
type Country_Neighbor_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => COUNTRY_NEIGHBOR_DEF'Access)
with record
Neighbor_Of : AWA.Countries.Models.Country_Ref;
Neighbor : AWA.Countries.Models.Country_Ref;
end record;
type Country_Neighbor_Access is access all Country_Neighbor_Impl;
overriding
procedure Destroy (Object : access Country_Neighbor_Impl);
overriding
procedure Find (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Country_Neighbor_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Country_Neighbor_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Country_Neighbor_Ref'Class;
Impl : out Country_Neighbor_Access);
REGION_NAME : aliased constant String := "awa_region";
COL_0_4_NAME : aliased constant String := "id";
COL_1_4_NAME : aliased constant String := "name";
COL_2_4_NAME : aliased constant String := "geonameid";
COL_3_4_NAME : aliased constant String := "country_id";
REGION_DEF : aliased constant ADO.Schemas.Class_Mapping :=
(Count => 4,
Table => REGION_NAME'Access,
Members => (
1 => COL_0_4_NAME'Access,
2 => COL_1_4_NAME'Access,
3 => COL_2_4_NAME'Access,
4 => COL_3_4_NAME'Access)
);
REGION_TABLE : constant ADO.Schemas.Class_Mapping_Access
:= REGION_DEF'Access;
Null_Region : constant Region_Ref
:= Region_Ref'(ADO.Objects.Object_Ref with null record);
type Region_Impl is
new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER,
Of_Class => REGION_DEF'Access)
with record
Name : Ada.Strings.Unbounded.Unbounded_String;
Geonameid : Integer;
Country : AWA.Countries.Models.Country_Ref;
end record;
type Region_Access is access all Region_Impl;
overriding
procedure Destroy (Object : access Region_Impl);
overriding
procedure Find (Object : in out Region_Impl;
Session : in out ADO.Sessions.Session'Class;
Query : in ADO.SQL.Query'Class;
Found : out Boolean);
overriding
procedure Load (Object : in out Region_Impl;
Session : in out ADO.Sessions.Session'Class);
procedure Load (Object : in out Region_Impl;
Stmt : in out ADO.Statements.Query_Statement'Class;
Session : in out ADO.Sessions.Session'Class);
overriding
procedure Save (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Create (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
overriding
procedure Delete (Object : in out Region_Impl;
Session : in out ADO.Sessions.Master_Session'Class);
procedure Set_Field (Object : in out Region_Ref'Class;
Impl : out Region_Access);
end AWA.Countries.Models;
|
generic
type Component is private;
type List_Index is range <>;
type List is array (List_Index range <>) of Component;
Default_Value : Component;
with function "=" (Left, Right : List) return Boolean is <>;
package Bounded_Dynamic_Arrays is
pragma Pure;
Maximum_Length : constant List_Index := List_Index'Last;
-- The physical maximum for the upper bound of the wrapped List array
-- values. Defined for readability in predicates.
subtype Natural_Index is List_Index'Base range 0 .. Maximum_Length;
subtype Index is List_Index range 1 .. Maximum_Length;
-- The representation internally uses a one-based array, hence the
-- predicate on the generic formal List_Index integer type.
type Sequence (Capacity : Natural_Index) is private
with Default_Initial_Condition => Empty (Sequence);
-- A wrapper for List array values in which Capacity represents the
-- physical upper bound. Capacity is, therefore, the maximum number of
-- Component values possibly contained by the associated Sequence instance.
-- However, not all of the physical capacity of a Sequence need be used at
-- any moment, leading to the notion of a logical current length ranging
-- from zero to Capacity.
Null_List : constant List (List_Index'First .. List_Index'First - 1) := (others => Default_Value);
function Null_Sequence
return Sequence
with
Post => Null_Sequence'Result.Capacity = 0 and
Length (Null_Sequence'Result) = 0 and
Value (Null_Sequence'Result) = Null_List and
Null_Sequence'Result = Null_List;
function Instance
(Content : List)
return Sequence
with
Pre => Content'Length <= Maximum_Length,
Post => Length (Instance'Result) = Content'Length and
Value (Instance'Result) = Content and
Instance'Result = Content and
Instance'Result.Capacity = Content'Length and
Contains (Instance'Result, Content),
Global => null,
Depends => (Instance'Result => Content);
function Instance
(Capacity : Natural_Index;
Content : Component)
return Sequence
with
Pre => Capacity >= 1,
Post => Length (Instance'Result) = 1 and
Value (Instance'Result) (1) = Content and
Instance'Result.Capacity = Capacity and
Instance'Result = Content and
Contains (Instance'Result, Content),
Global => null;
-- Depends => (Instance'Result => (Capacity, Content));
function Instance
(Capacity : Natural_Index;
Content : List)
return Sequence
with
Pre => Content'Length <= Capacity,
Post => Instance'Result.Capacity = Capacity and
Length (Instance'Result) = Content'Length and
Value (Instance'Result) = Content and
Instance'Result = Content and
Contains (Instance'Result, Content),
Global => null;
-- Depends => (Instance'Result => (Capacity, Content));
function Value (This : Sequence) return List with
Post => Value'Result'Length = Length (This) and
Value'Result'First = 1 and
Value'Result'Last = Length (This),
Inline;
-- Returns the content of this sequence. The value returned is the
-- "logical" value in that only that slice which is currently assigned
-- is returned, as opposed to the entire physical representation.
function Value (This : Sequence; Position : Index) return Component with
Pre => Position in 1 .. Length (This),
Inline;
function Length (This : Sequence) return Natural_Index with
Inline;
-- Returns the logical length of This, i.e., the length of the slice of
-- This that is currently assigned a value.
function Empty (This : Sequence) return Boolean with
Post => Empty'Result = (Length (This) = 0),
Inline;
procedure Clear (This : out Sequence) with
Post => Empty (This) and
Length (This) = 0 and
Value (This) = Null_List and
This = Null_Sequence,
Global => null,
Depends => (This => This),
Inline;
procedure Copy (Source : Sequence; To : in out Sequence) with
Pre => To.Capacity >= Length (Source),
Post => Value (To) = Value (Source) and
Length (To) = Length (Source) and
To = Source and
Contains_At (To, 1, Source),
Global => null,
Depends => (To =>+ Source);
-- Copies the logical value of Source, the RHS, to the LHS sequence To. The
-- prior value of To is lost.
procedure Copy (Source : List; To : in out Sequence) with
Pre => To.Capacity >= Source'Length,
Post => Value (To) = Source and then
Length (To) = Source'Length and then
To = Source and then
Contains_At (To, 1, Source),
Global => null,
Depends => (To =>+ Source);
-- Copies the value of the array Source, the RHS, to the LHS sequence To.
-- The prior value of To is lost.
procedure Copy (Source : Component; To : in out Sequence) with
Pre => To.Capacity > 0,
Post => Value (To) (1) = Source and
Length (To) = 1 and
To = Source and
Contains_At (To, 1, Source),
Global => null,
Depends => (To =>+ Source);
-- Copies the value of the individual array component Source, the RHS, to
-- the LHS sequence To. The prior value of To is lost.
overriding
function "=" (Left, Right : Sequence) return Boolean with
Inline;
function "=" (Left : Sequence; Right : List) return Boolean with
Inline;
function "=" (Left : List; Right : Sequence) return Boolean with
Inline;
function "=" (Left : Sequence; Right : Component) return Boolean with
Inline;
function "=" (Left : Component; Right : Sequence) return Boolean with
Inline;
function Normalized (L : List) return List with
Pre => L'Length <= Maximum_Length,
Post => Normalized'Result'First = 1 and
Normalized'Result'Last = L'Length and
Normalized'Result = L;
-- Slides the input into a 1-based array
function "&" (Left : Sequence; Right : Sequence) return Sequence with
Pre => Length (Left) <= Maximum_Length - Length (Right),
Post => Value ("&"'Result) = Value (Left) & Value (Right) and
Value ("&"'Result)'First = 1 and
Length ("&"'Result) = Length (Left) + Length (Right) and
"&"'Result.Capacity = Length (Left) + Length (Right);
function "&" (Left : Sequence; Right : List) return Sequence with
Pre => Length (Left) <= Maximum_Length - Right'Length,
Post => Value ("&"'Result) = Value (Left) & Right and
Value ("&"'Result)'First = 1 and
Length ("&"'Result) = Length (Left) + Right'Length and
"&"'Result.Capacity = Length (Left) + Right'Length;
function "&" (Left : List; Right : Sequence) return Sequence with
Pre => Left'Length <= Maximum_Length - Length (Right),
Post => Value ("&"'Result) = Normalized (Left) & Value (Right) and
Value ("&"'Result)'First = 1 and
Length ("&"'Result) = Left'Length + Length (Right) and
"&"'Result.Capacity = Left'Length + Length (Right);
function "&" (Left : Sequence; Right : Component) return Sequence with
Pre => Length (Left) <= Maximum_Length - 1,
Post => Value ("&"'Result) = Value (Left) & Right and
Value ("&"'Result)'First = 1 and
Length ("&"'Result) = Length (Left) + 1 and
"&"'Result.Capacity = Length (Left) + 1;
function "&" (Left : Component; Right : Sequence) return Sequence with
Pre => Length (Right) <= Maximum_Length - 1,
Post => Value ("&"'Result) = Left & Value (Right) and
Value ("&"'Result)'First = 1 and
Length ("&"'Result) = 1 + Length (Right) and
"&"'Result.Capacity = 1 + Length (Right);
procedure Append (Tail : Sequence; To : in out Sequence) with
Pre => Length (Tail) <= To.Capacity - Length (To),
Post => Value (To) = Value (To'Old) & Value (Tail) and
Length (To) = Length (To'Old) + Length (Tail); -- and
-- To = Value (To'Old) & Value (Tail); -- caused crash...
procedure Append (Tail : List; To : in out Sequence) with
Pre => Tail'Length <= To.Capacity - Length (To),
Post => Value (To) = Value (To'Old) & Tail and
Length (To) = Length (To'Old) + Tail'Length;
procedure Append (Tail : Component; To : in out Sequence) with
Pre => Length (To) <= To.Capacity - 1,
Post => Value (To) = Value (To'Old) & Tail and
Length (To) = Length (To'Old) + 1;
procedure Amend
(This : in out Sequence;
By : Sequence;
Start : Index)
with
Pre => Start <= Length (This) and
Start - 1 in 1 .. This.Capacity - Length (By) and
Start <= Maximum_Length - Length (By),
Post => Value (This) (Start .. Start + Length (By) - 1) = Value (By) and
(if Start + Length (By) - 1 > Length (This'Old)
then Length (This) = Start + Length (By) - 1
else Length (This) = Length (This'Old)) and
Contains_At (This, Start, By) and
Unchanged (This'Old, This, Start, Length (By)),
Global => null,
Depends => (This =>+ (By, Start));
-- Overwrites the content of This, beginning at Start, with the logical
-- value of the Sequence argument By
procedure Amend
(This : in out Sequence;
By : List;
Start : Index)
with
Pre => Start <= Length (This) and
Start - 1 in 1 .. This.Capacity - By'Length and
Start <= Maximum_Length - By'Length,
Post => Value (This) (Start .. Start + By'Length - 1) = By and
(if Start + By'Length - 1 > Length (This'Old)
then Length (This) = Start + By'Length - 1
else Length (This) = Length (This'Old)) and
Contains_At (This, Start, By) and
Unchanged (This'Old, This, Start, By'Length),
Global => null,
Depends => (This =>+ (By, Start));
-- Overwrites the content of This, beginning at Start, with the value of
-- List argument By
procedure Amend
(This : in out Sequence;
By : Component;
Start : Index)
with
Pre => Start <= Length (This) and
Start <= Maximum_Length - 1,
Post => Value (This) (Start) = By and
Length (This) = Length (This)'Old and
Contains_At (This, Start, By) and
Unchanged (This'Old, This, Start, 1),
Global => null,
Depends => (This =>+ (By, Start));
-- Overwrites the content of This, at position Start, with the value of
-- the single Component argument By
function Location (Fragment : Sequence; Within : Sequence) return Natural_Index with
Pre => Length (Fragment) > 0,
Post => Location'Result in 0 .. Within.Capacity and
(if Length (Fragment) > Within.Capacity then Location'Result = 0) and
(if Length (Fragment) > Length (Within) then Location'Result = 0) and
(if Location'Result > 0 then Contains_At (Within, Location'Result, Fragment));
-- Returns the starting index of the logical value of the sequence Fragment
-- in the sequence Within, if any. Returns 0 when the fragment is not
-- found.
-- NB: The implementation is not the best algorithm...
function Location (Fragment : List; Within : Sequence) return Natural_Index with
Pre => Fragment'Length > 0,
Post => Location'Result in 0 .. Length (Within) and
(if Fragment'Length > Within.Capacity then Location'Result = 0) and
(if Fragment'Length > Length (Within) then Location'Result = 0) and
(if Location'Result > 0 then Contains_At (Within, Location'Result, Fragment));
-- Returns the starting index of the value of the array Fragment in the
-- sequence Within, if any. Returns 0 when the fragment is not found.
-- NB: The implementation is a simple linear search...
function Location (Fragment : Component; Within : Sequence) return Natural_Index with
Post => Location'Result in 0 .. Length (Within) and
(if Location'Result > 0 then Contains_At (Within, Location'Result, Fragment));
-- Returns the index of the value of the component Fragment within the
-- sequence Within, if any. Returns 0 when the fragment is not found.
function Contains (Within : Sequence; Fragment : Component) return Boolean with
Inline;
function Contains (Within : Sequence; Fragment : List) return Boolean with
Pre => Length (Within) - Fragment'Length <= Maximum_Length - 1,
Post => (if Fragment'Length = 0 then Contains'Result) and
(if Fragment'Length > Length (Within) then not Contains'Result),
Inline;
function Contains (Within : Sequence; Fragment : Sequence) return Boolean with
Pre => Length (Within) - Length (Fragment) <= Maximum_Length - 1,
Post => (if Length (Fragment) = 0 then Contains'Result) and
(if Length (Fragment) > Length (Within) then not Contains'Result),
Inline;
function Contains_At
(Within : Sequence;
Start : Index;
Fragment : Sequence)
return Boolean
with Inline;
function Contains_At
(Within : Sequence;
Start : Index;
Fragment : List)
return Boolean;
-- with Inline,
-- Pre => Start <= Length (Within) and then
-- Start - 1 <= Length (Within) - Fragment'Length;
function Contains_At
(Within : Sequence;
Position : Index;
Fragment : Component)
return Boolean
with Inline;
function Unchanged
(Original : Sequence;
Current : Sequence;
Slice_Start : Index;
Slice_Length : Natural_Index)
return Boolean
-- Returns whether the Original content is the same as the Current content,
-- except for the slice beginning at Slice_Start and having Slice_Length
-- number of components.
with
Pre => Original.Capacity = Current.Capacity and
Slice_Start <= Length (Original) and
Slice_Start - 1 <= Original.Capacity - Slice_Length and
Slice_Start <= Maximum_Length - Slice_Length,
Ghost;
private
type Sequence (Capacity : Natural_Index) is record
Current_Length : Natural_Index := 0;
Content : List (1 .. Capacity) := (others => Default_Value);
end record
with Predicate => Current_Length in 0 .. Capacity;
------------
-- Length --
------------
function Length (This : Sequence) return Natural_Index is
(This.Current_Length);
-----------
-- Value --
-----------
function Value (This : Sequence) return List is
(This.Content (1 .. This.Current_Length));
-----------
-- Value --
-----------
function Value (This : Sequence; Position : Index) return Component is
(This.Content (Position));
-----------
-- Empty --
-----------
function Empty (This : Sequence) return Boolean is
(This.Current_Length = 0);
--------------
-- Contains --
--------------
function Contains (Within : Sequence; Fragment : Component) return Boolean is
(for some K in 1 .. Length (Within) =>
Within.Content (K) = Fragment);
-----------------
-- Contains_At --
-----------------
function Contains_At
(Within : Sequence;
Start : Index;
Fragment : List)
return Boolean
is
((Start - 1 <= Within.Current_Length - Fragment'Length)
and then
Within.Content (Start .. (Start + Fragment'Length - 1)) = Fragment);
-- note that this includes the case of a null slice on each side, eg
-- when Start = 1 and Fragment'Length = 0, which is intended to return
-- True
-----------------
-- Contains_At --
-----------------
function Contains_At
(Within : Sequence;
Start : Index;
Fragment : Sequence)
return Boolean
is
(Contains_At (Within, Start, Value (Fragment)));
-----------------
-- Contains_At --
-----------------
function Contains_At
(Within : Sequence;
Position : Index;
Fragment : Component)
return Boolean
is
(Position in 1 .. Within.Current_Length
and then
Within.Content (Position) = Fragment);
--------------
-- Contains --
--------------
function Contains (Within : Sequence; Fragment : List) return Boolean is
-- We want to return True when the fragment is empty (eg "") because we
-- want to use Contains in the postcondition to Instance, and we want to
-- allow creating an instance that is empty (because "&" can work with
-- empty fragments/instances). Therefore we must allow a zero length
-- Fragment.
--
-- Also, note that we need to explicitly check for the empty fragment
-- (using the short-circuit form) because otherwise the expression
-- "(Within.Current_Length - Fragment'Length + 1)" would go past the
-- current length.
(Fragment'Length = 0
or else
-- But also, for Within to possibly contain the slice Fragment,
-- the length of the fragment cannot be greater than the length
-- of Within.Content.
(Fragment'Length in 1 .. Within.Current_Length
and then
(for some K in Within.Content'First .. (Within.Current_Length - Fragment'Length + 1) =>
Contains_At (Within, K, Fragment))));
--------------
-- Contains --
--------------
function Contains (Within : Sequence; Fragment : Sequence) return Boolean is
(Contains (Within, Value (Fragment)));
---------------
-- Unchanged --
---------------
function Unchanged
(Original : Sequence;
Current : Sequence;
Slice_Start : Index;
Slice_Length : Natural_Index)
return Boolean
is
-- First we verify the part before the ammended slice, if any. If there
-- is none before, this will compare against a null slice and so will
-- return True.
(Current.Content (1 .. Slice_Start - 1) = Original.Content (1 .. Slice_Start - 1)
and then
-- Now we verify the part after the ammended slice, if any, but also
-- noting that the ammended part might extend past the end of the
-- original. In other words, ammending a sequence can extend the
-- length of the original.
Current.Content (Slice_Start + Slice_Length .. Original.Current_Length) =
Original.Content (Slice_Start + Slice_Length .. Original.Current_Length));
---------
-- "=" --
---------
overriding
function "=" (Left, Right : Sequence) return Boolean is
(Value (Left) = Value (Right));
---------
-- "=" --
---------
function "=" (Left : Sequence; Right : List) return Boolean is
(Value (Left) = Right);
---------
-- "=" --
---------
function "=" (Left : List; Right : Sequence) return Boolean is
(Right = Left);
---------
-- "=" --
---------
function "=" (Left : Sequence; Right : Component) return Boolean is
(Left.Current_Length = 1 and then Left.Content (1) = Right);
---------
-- "=" --
---------
function "=" (Left : Component; Right : Sequence) return Boolean is
(Right = Left);
end Bounded_Dynamic_Arrays;
|
--------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2020, Luke A. Guest
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
--
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
--
-- 3. This notice may not be removed or altered from any source
-- distribution.
--------------------------------------------------------------------------------------------------------------------
-- SDL.CPUS
--
-- Platform CPU information retrieval.
--------------------------------------------------------------------------------------------------------------------
package SDL.CPUS is
pragma Preelaborate;
-- TODO: Add a subprogram to return CPU architecture as not all platforms will have the same one, i.e.
-- Android on ARM, MIPS, x86.
function Count return Positive;
function Cache_Line_Size return Positive with
Inline => True;
function Has_3DNow return Boolean with
Inline => True;
function Has_AltiVec return Boolean with
Inline => True;
function Has_MMX return Boolean with
Inline => True;
function Has_RDTSC return Boolean with
Inline => True;
function Has_SSE return Boolean with
Inline => True;
function Has_SSE_2 return Boolean with
Inline => True;
function Has_SSE_3 return Boolean with
Inline => True;
function Has_SSE_4_1 return Boolean with
Inline => True;
function Has_SSE_4_2 return Boolean with
Inline => True;
end SDL.CPUS;
|
with vole_lex_dfa; use vole_lex_dfa;
with text_io; use text_io;
package vole_lex_io is
user_input_file : file_type;
user_output_file : file_type;
NULL_IN_INPUT : exception;
AFLEX_INTERNAL_ERROR : exception;
UNEXPECTED_LAST_MATCH : exception;
PUSHBACK_OVERFLOW : exception;
AFLEX_SCANNER_JAMMED : exception;
type eob_action_type is ( EOB_ACT_RESTART_SCAN,
EOB_ACT_END_OF_FILE,
EOB_ACT_LAST_MATCH );
YY_END_OF_BUFFER_CHAR : constant character:= ASCII.NUL;
yy_n_chars : integer; -- number of characters read into yy_ch_buf
-- true when we've seen an EOF for the current input file
yy_eof_has_been_seen : boolean;
procedure YY_INPUT(buf: out unbounded_character_array; result: out integer; max_size: in integer);
function yy_get_next_buffer return eob_action_type;
procedure yyunput( c : character; yy_bp: in out integer );
procedure unput(c : character);
function input return character;
procedure output(c : character);
function yywrap return boolean;
procedure Open_Input(fname : in String);
procedure Close_Input;
procedure Create_Output(fname : in String := "");
procedure Close_Output;
end vole_lex_io;
|
------------------------------------------------------------------------------
-- --
-- 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.Internals.UML_Named_Elements;
with AMF.UML.Activities;
with AMF.UML.Activity_Edges.Collections;
with AMF.UML.Activity_Groups.Collections;
with AMF.UML.Activity_Nodes.Collections;
with AMF.UML.Activity_Partitions.Collections;
with AMF.UML.Classifiers.Collections;
with AMF.UML.Constraints.Collections;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Exception_Handlers.Collections;
with AMF.UML.Input_Pins.Collections;
with AMF.UML.Interruptible_Activity_Regions.Collections;
with AMF.UML.Named_Elements;
with AMF.UML.Namespaces;
with AMF.UML.Output_Pins.Collections;
with AMF.UML.Packages.Collections;
with AMF.UML.Read_Structural_Feature_Actions;
with AMF.UML.Redefinable_Elements.Collections;
with AMF.UML.String_Expressions;
with AMF.UML.Structural_Features;
with AMF.UML.Structured_Activity_Nodes;
with AMF.Visitors;
package AMF.Internals.UML_Read_Structural_Feature_Actions is
type UML_Read_Structural_Feature_Action_Proxy is
limited new AMF.Internals.UML_Named_Elements.UML_Named_Element_Proxy
and AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action with null record;
overriding function Get_Result
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Output_Pins.UML_Output_Pin_Access;
-- Getter of ReadStructuralFeatureAction::result.
--
-- Gives the output pin on which the result is put.
overriding procedure Set_Result
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.Output_Pins.UML_Output_Pin_Access);
-- Setter of ReadStructuralFeatureAction::result.
--
-- Gives the output pin on which the result is put.
overriding function Get_Object
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Input_Pins.UML_Input_Pin_Access;
-- Getter of StructuralFeatureAction::object.
--
-- Gives the input pin from which the object whose structural feature is
-- to be read or written is obtained.
overriding procedure Set_Object
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.Input_Pins.UML_Input_Pin_Access);
-- Setter of StructuralFeatureAction::object.
--
-- Gives the input pin from which the object whose structural feature is
-- to be read or written is obtained.
overriding function Get_Structural_Feature
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Structural_Features.UML_Structural_Feature_Access;
-- Getter of StructuralFeatureAction::structuralFeature.
--
-- Structural feature to be read.
overriding procedure Set_Structural_Feature
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.Structural_Features.UML_Structural_Feature_Access);
-- Setter of StructuralFeatureAction::structuralFeature.
--
-- Structural feature to be read.
overriding function Get_Context
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access;
-- Getter of Action::context.
--
-- The classifier that owns the behavior of which this action is a part.
overriding function Get_Input
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Input_Pins.Collections.Ordered_Set_Of_UML_Input_Pin;
-- Getter of Action::input.
--
-- The ordered set of input pins connected to the Action. These are among
-- the total set of inputs.
overriding function Get_Is_Locally_Reentrant
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return Boolean;
-- Getter of Action::isLocallyReentrant.
--
-- If true, the action can begin a new, concurrent execution, even if
-- there is already another execution of the action ongoing. If false, the
-- action cannot begin a new execution until any previous execution has
-- completed.
overriding procedure Set_Is_Locally_Reentrant
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : Boolean);
-- Setter of Action::isLocallyReentrant.
--
-- If true, the action can begin a new, concurrent execution, even if
-- there is already another execution of the action ongoing. If false, the
-- action cannot begin a new execution until any previous execution has
-- completed.
overriding function Get_Local_Postcondition
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Action::localPostcondition.
--
-- Constraint that must be satisfied when executed is completed.
overriding function Get_Local_Precondition
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Action::localPrecondition.
--
-- Constraint that must be satisfied when execution is started.
overriding function Get_Output
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Output_Pins.Collections.Ordered_Set_Of_UML_Output_Pin;
-- Getter of Action::output.
--
-- The ordered set of output pins connected to the Action. The action
-- places its results onto pins in this set.
overriding function Get_Handler
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Exception_Handlers.Collections.Set_Of_UML_Exception_Handler;
-- Getter of ExecutableNode::handler.
--
-- A set of exception handlers that are examined if an uncaught exception
-- propagates to the outer level of the executable node.
overriding function Get_Activity
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activities.UML_Activity_Access;
-- Getter of ActivityNode::activity.
--
-- Activity containing the node.
overriding procedure Set_Activity
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.Activities.UML_Activity_Access);
-- Setter of ActivityNode::activity.
--
-- Activity containing the node.
overriding function Get_In_Group
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activity_Groups.Collections.Set_Of_UML_Activity_Group;
-- Getter of ActivityNode::inGroup.
--
-- Groups containing the node.
overriding function Get_In_Interruptible_Region
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Interruptible_Activity_Regions.Collections.Set_Of_UML_Interruptible_Activity_Region;
-- Getter of ActivityNode::inInterruptibleRegion.
--
-- Interruptible regions containing the node.
overriding function Get_In_Partition
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition;
-- Getter of ActivityNode::inPartition.
--
-- Partitions containing the node.
overriding function Get_In_Structured_Node
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access;
-- Getter of ActivityNode::inStructuredNode.
--
-- Structured activity node containing the node.
overriding procedure Set_In_Structured_Node
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access);
-- Setter of ActivityNode::inStructuredNode.
--
-- Structured activity node containing the node.
overriding function Get_Incoming
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge;
-- Getter of ActivityNode::incoming.
--
-- Edges that have the node as target.
overriding function Get_Outgoing
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge;
-- Getter of ActivityNode::outgoing.
--
-- Edges that have the node as source.
overriding function Get_Redefined_Node
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node;
-- Getter of ActivityNode::redefinedNode.
--
-- Inherited nodes replaced by this node in a specialization of the
-- activity.
overriding function Get_Is_Leaf
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return Boolean;
-- Getter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding procedure Set_Is_Leaf
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : Boolean);
-- Setter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding function Get_Redefined_Element
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element;
-- Getter of RedefinableElement::redefinedElement.
--
-- The redefinable element that is being redefined by this element.
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of RedefinableElement::redefinitionContext.
--
-- References the contexts that this element may be redefined from.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Read_Structural_Feature_Action_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Context
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access;
-- Operation Action::context.
--
-- Missing derivation for Action::/context : Classifier
overriding function Is_Consistent_With
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isConsistentWith.
--
-- The query isConsistentWith() specifies, for any two RedefinableElements
-- in a context in which redefinition is possible, whether redefinition
-- would be logically consistent. By default, this is false; this
-- operation must be overridden for subclasses of RedefinableElement to
-- define the consistency conditions.
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isRedefinitionContextValid.
--
-- The query isRedefinitionContextValid() specifies whether the
-- redefinition contexts of this RedefinableElement are properly related
-- to the redefinition contexts of the specified RedefinableElement to
-- allow this element to redefine the other. By default at least one of
-- the redefinition contexts of this element must be a specialization of
-- at least one of the redefinition contexts of the specified element.
overriding function All_Owning_Packages
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding procedure Enter_Element
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Leave_Element
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Visit_Element
(Self : not null access constant UML_Read_Structural_Feature_Action_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of iterator interface.
end AMF.Internals.UML_Read_Structural_Feature_Actions;
|
-------------------------------------------------------------------------------
-- LSE -- L-System Editor
-- Author: Heziode
--
-- License:
-- MIT License
--
-- Copyright (c) 2018 Quentin Dauprat (Heziode) <Heziode@protonmail.com>
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
-------------------------------------------------------------------------------
package body LSE.Model.Grammar.Symbol.LogoForwardTrace is
procedure Initialize (This : out Instance)
is
begin
This := Instance '(Representation => 'F');
end Initialize;
procedure Interpret (This : in out Instance;
T : in out Holder)
is
pragma Unreferenced (This);
begin
T.Reference.Forward (True);
end Interpret;
end LSE.Model.Grammar.Symbol.LogoForwardTrace;
|
--------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2020, Luke A. Guest
--
-- This software is provided 'as-is', without any express or implied
-- warranty. In no event will the authors be held liable for any damages
-- arising from the use of this software.
--
-- Permission is granted to anyone to use this software for any purpose,
-- including commercial applications, and to alter it and redistribute it
-- freely, subject to the following restrictions:
--
-- 1. The origin of this software must not be misrepresented; you must not
-- claim that you wrote the original software. If you use this software
-- in a product, an acknowledgment in the product documentation would be
-- appreciated but is not required.
--
-- 2. Altered source versions must be plainly marked as such, and must not be
-- misrepresented as being the original software.
--
-- 3. This notice may not be removed or altered from any source
-- distribution.
--------------------------------------------------------------------------------------------------------------------
with Interfaces.C;
private with SDL.C_Pointers;
with SDL.Error;
package body SDL.Inputs.Mice is
package C renames Interfaces.C;
function Capture (Enabled : in Boolean) return Supported is
function SDL_Capture_Mouse (Enabled : in C.unsigned) return C.int with
Import => True,
Convention => C,
External_Name => "SDL_CaptureMouse";
begin
if SDL_Capture_Mouse (if Enabled then 1 else 0) /= Success then
return No;
end if;
return Yes;
end Capture;
function Get_Global_State (X_Relative, Y_Relative : out SDL.Events.Mice.Movement_Values) return
SDL.Events.Mice.Button_Masks is
function SDL_Get_Global_Mouse_State (X, Y : out C.int) return C.unsigned with
Import => True,
Convention => C,
External_Name => "SDL_GetGlobalMouseState";
X, Y : C.int;
Masks : constant C.unsigned := SDL_Get_Global_Mouse_State (X, Y);
use SDL.Events.Mice;
begin
X_Relative := Movement_Values (X);
Y_Relative := Movement_Values (Y);
return Button_Masks (Masks);
end Get_Global_State;
function Get_State (X_Relative, Y_Relative : out SDL.Events.Mice.Movement_Values) return
SDL.Events.Mice.Button_Masks is
function SDL_Get_Mouse_State (X, Y : out C.int) return C.unsigned with
Import => True,
Convention => C,
External_Name => "SDL_GetMouseState";
X, Y : C.int;
Masks : constant C.unsigned := SDL_Get_Mouse_State (X, Y);
use SDL.Events.Mice;
begin
X_Relative := Movement_Values (X);
Y_Relative := Movement_Values (Y);
return Button_Masks (Masks);
end Get_State;
function In_Relative_Mode return Boolean is
function SDL_Get_Relative_Mouse_Mode return SDL_Bool with
Import => True,
Convention => C,
External_Name => "SDL_GetRelativeMouseMode";
begin
return SDL_Get_Relative_Mouse_Mode = SDL_True;
end In_Relative_Mode;
function Get_Relative_State (X_Relative, Y_Relative : out SDL.Events.Mice.Movement_Values) return
SDL.Events.Mice.Button_Masks is
function SDL_Get_Relative_Mouse_State (X, Y : out C.int) return C.unsigned with
Import => True,
Convention => C,
External_Name => "SDL_GetRelativeMouseState";
X, Y : C.int;
Masks : constant C.unsigned := SDL_Get_Relative_Mouse_State (X, Y);
use SDL.Events.Mice;
begin
X_Relative := Movement_Values (X);
Y_Relative := Movement_Values (Y);
return Button_Masks (Masks);
end Get_Relative_State;
procedure Set_Relative_Mode (Enable : in Boolean := True) is
function SDL_Set_Relative_Mouse_Mode (Enable : in C.unsigned) return C.int with
Import => True,
Convention => C,
External_Name => "SDL_SetRelativeMouseMode";
begin
if SDL_Set_Relative_Mouse_Mode (if Enable then 1 else 0) /= Success then
raise Mice_Error with SDL.Error.Get;
end if;
end Set_Relative_Mode;
procedure Show_Cursor (Enable : in Boolean := True) is
procedure SDL_Show_Cursor (Enable : in C.int) with
Import => True,
Convention => C,
External_Name => "SDL_ShowCursor";
begin
SDL_Show_Cursor (if Enable then SDL.SDL_Enable else SDL.SDL_Disable);
end Show_Cursor;
function Is_Cursor_Shown return Boolean is
function SDL_Show_Cursor (Enable : in C.int) return C.int with
Import => True,
Convention => C,
External_Name => "SDL_ShowCursor";
begin
case SDL_Show_Cursor (SDL.SDL_Query) is
when SDL.SDL_Enable =>
return True;
when SDL.SDL_Disable =>
return False;
when others =>
raise Mice_Error with "SDL_Show_Cursor should never return any other value!";
end case;
end Is_Cursor_Shown;
procedure Warp (To : in SDL.Coordinates) is
function SDL_Warp_Mouse_Global (X, Y : in C.int) return C.int with
Import => True,
Convention => C,
External_Name => "SDL_WarpMouseGlobal";
begin
if SDL_Warp_Mouse_Global (C.int (To.X), C.int (To.Y)) /= SDL.Success then
raise Mice_Error with SDL.Error.Get;
end if;
end Warp;
procedure Warp (Window : in SDL.Video.Windows.Window; To : in SDL.Coordinates) is
function Get_Internal_Window (Self : in SDL.Video.Windows.Window) return SDL.C_Pointers.Windows_Pointer with
Import => True,
Convention => Ada;
procedure SDL_Warp_Mouse_In_Window (Window : in SDL.C_Pointers.Windows_Pointer; X, Y : in C.int) with
Import => True,
Convention => C,
External_Name => "SDL_WarpMouseInWindow";
begin
SDL_Warp_Mouse_In_Window (Get_Internal_Window (Window), C.int (To.X), C.int (To.Y));
end Warp;
end SDL.Inputs.Mice;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Termcap --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 2000-2006,2009 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control:
-- $Revision: 1.12 $
-- $Date: 2009/12/26 17:38:58 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings; use Interfaces.C.Strings;
package body Terminal_Interface.Curses.Termcap is
function Get_Entry (Name : String) return Boolean
is
function tgetent (name : char_array; val : char_array)
return C_Int;
pragma Import (C, tgetent, "tgetent");
NameTxt : char_array (0 .. Name'Length);
Length : size_t;
ignored : constant char_array (0 .. 0) := (0 => nul);
result : C_Int;
begin
To_C (Name, NameTxt, Length);
result := tgetent (char_array (ignored), NameTxt);
if result = -1 then
raise Curses_Exception;
else
return Boolean'Val (result);
end if;
end Get_Entry;
------------------------------------------------------------------------------
function Get_Flag (Name : String) return Boolean
is
function tgetflag (id : char_array) return C_Int;
pragma Import (C, tgetflag, "tgetflag");
Txt : char_array (0 .. Name'Length);
Length : size_t;
begin
To_C (Name, Txt, Length);
if tgetflag (Txt) = 0 then
return False;
else
return True;
end if;
end Get_Flag;
------------------------------------------------------------------------------
procedure Get_Number (Name : String;
Value : out Integer;
Result : out Boolean)
is
function tgetnum (id : char_array) return C_Int;
pragma Import (C, tgetnum, "tgetnum");
Txt : char_array (0 .. Name'Length);
Length : size_t;
begin
To_C (Name, Txt, Length);
Value := Integer (tgetnum (Txt));
if Value = -1 then
Result := False;
else
Result := True;
end if;
end Get_Number;
------------------------------------------------------------------------------
procedure Get_String (Name : String;
Value : out String;
Result : out Boolean)
is
function tgetstr (id : char_array;
buf : char_array) return chars_ptr;
pragma Import (C, tgetstr, "tgetstr");
Txt : char_array (0 .. Name'Length);
Length : size_t;
Txt2 : chars_ptr;
type t is new char_array (0 .. 1024); -- does it need to be 1024?
Return_Buffer : constant t := (others => nul);
begin
To_C (Name, Txt, Length);
Txt2 := tgetstr (Txt, char_array (Return_Buffer));
if Txt2 = Null_Ptr then
Result := False;
else
Value := Fill_String (Txt2);
Result := True;
end if;
end Get_String;
function Get_String (Name : String) return Boolean
is
function tgetstr (Id : char_array;
buf : char_array) return chars_ptr;
pragma Import (C, tgetstr, "tgetstr");
Txt : char_array (0 .. Name'Length);
Length : size_t;
Txt2 : chars_ptr;
type t is new char_array (0 .. 1024); -- does it need to be 1024?
Phony_Txt : constant t := (others => nul);
begin
To_C (Name, Txt, Length);
Txt2 := tgetstr (Txt, char_array (Phony_Txt));
if Txt2 = Null_Ptr then
return False;
else
return True;
end if;
end Get_String;
------------------------------------------------------------------------------
function TGoto (Cap : String;
Col : Column_Position;
Row : Line_Position) return Termcap_String is
function tgoto (cap : char_array;
col : C_Int;
row : C_Int) return chars_ptr;
pragma Import (C, tgoto);
Txt : char_array (0 .. Cap'Length);
Length : size_t;
begin
To_C (Cap, Txt, Length);
return Termcap_String (Fill_String
(tgoto (Txt, C_Int (Col), C_Int (Row))));
end TGoto;
end Terminal_Interface.Curses.Termcap;
|
-- Copyright 2004 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 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
with System;
procedure Fixed_Points is
type Base_Fixed_Point_Type is
delta 1.0 / 16.0
range (System.Min_Int / 2) * 1.0 / 16.0 ..
(System.Max_Int / 2) * 1.0 / 16.0;
subtype Fixed_Point_Subtype is
Base_Fixed_Point_Type range -50.0 .. 50.0;
type New_Fixed_Point_Type is
new Base_Fixed_Point_Type range -50.0 .. 50.0;
Base_Object : Base_Fixed_Point_Type := -50.0;
Subtype_Object : Fixed_Point_Subtype := -50.0;
New_Type_Object : New_Fixed_Point_Type := -50.0;
begin
Base_Object := 1.0/16.0; -- Set breakpoint here
Subtype_Object := 1.0/16.0;
New_Type_Object := 1.0/16.0;
end Fixed_Points;
|
-----------------------------------------------------------------------
-- intl -- Small libintl binding
-- Copyright (C) 2019 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Interfaces.C.Strings;
package body Intl is
function Sys_Gettext (Msg : in String) return Interfaces.C.Strings.chars_ptr
with Import => True, Convention => C, Link_Name => "gettext";
procedure Sys_Textdomain (Domain : in String)
with Import => True, Convention => C, Link_Name => "textdomain";
procedure Sys_Bindtextdomain (Domain : in String; Dirname : in String)
with Import => True, Convention => C, Link_Name => "bindtextdomain";
function Sys_Setlocale (Category : in Integer; Locale : in String)
return Interfaces.C.Strings.chars_ptr
with Import => True, Convention => C, Link_Name => "setlocale";
function Gettext (Message : in String) return String is
begin
return Interfaces.C.Strings.Value (Sys_Gettext (Message & ASCII.NUL));
end Gettext;
LC_ALL : constant Integer := 6;
Locale : Interfaces.C.Strings.chars_ptr;
procedure Initialize (Domain : in String;
Dirname : in String) is
begin
Locale := Sys_Setlocale (LC_ALL, "" & ASCII.NUL);
Sys_Textdomain (Domain & ASCII.NUL);
Sys_Bindtextdomain (Domain & ASCII.NUL, Dirname & ASCII.NUL);
end Initialize;
function Current_Locale return String is
use type Interfaces.C.Strings.chars_ptr;
begin
if Locale = Interfaces.C.Strings.Null_Ptr then
return "C";
else
return Interfaces.C.Strings.Value (Locale);
end if;
end Current_Locale;
end Intl;
|
-- This spec has been automatically generated from STM32WB55x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.AES is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_DATATYPE_Field is HAL.UInt2;
subtype CR_MODE_Field is HAL.UInt2;
subtype CR_CHMOD_Field is HAL.UInt2;
subtype CR_GCMPH_Field is HAL.UInt2;
subtype CR_NPBLB_Field is HAL.UInt4;
type CR_Register is record
EN : Boolean := False;
DATATYPE : CR_DATATYPE_Field := 16#0#;
MODE : CR_MODE_Field := 16#0#;
CHMOD : CR_CHMOD_Field := 16#0#;
CCFC : Boolean := False;
ERRC : Boolean := False;
CCFIE : Boolean := False;
ERRIE : Boolean := False;
DMAINEN : Boolean := False;
DMAOUTEN : Boolean := False;
GCMPH : CR_GCMPH_Field := 16#0#;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
CHMOD_1 : Boolean := False;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
KEYSIZE : Boolean := False;
-- unspecified
Reserved_19_19 : HAL.Bit := 16#0#;
NPBLB : CR_NPBLB_Field := 16#0#;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
EN at 0 range 0 .. 0;
DATATYPE at 0 range 1 .. 2;
MODE at 0 range 3 .. 4;
CHMOD at 0 range 5 .. 6;
CCFC at 0 range 7 .. 7;
ERRC at 0 range 8 .. 8;
CCFIE at 0 range 9 .. 9;
ERRIE at 0 range 10 .. 10;
DMAINEN at 0 range 11 .. 11;
DMAOUTEN at 0 range 12 .. 12;
GCMPH at 0 range 13 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
CHMOD_1 at 0 range 16 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
KEYSIZE at 0 range 18 .. 18;
Reserved_19_19 at 0 range 19 .. 19;
NPBLB at 0 range 20 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
type SR_Register is record
CCF : Boolean := False;
RDERR : Boolean := False;
WRERR : Boolean := False;
BUSY : Boolean := False;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
CCF at 0 range 0 .. 0;
RDERR at 0 range 1 .. 1;
WRERR at 0 range 2 .. 2;
BUSY at 0 range 3 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
type AES_Peripheral is record
CR : aliased CR_Register;
SR : aliased SR_Register;
DINR : aliased HAL.UInt32;
DOUTR : aliased HAL.UInt32;
KEYR0 : aliased HAL.UInt32;
KEYR1 : aliased HAL.UInt32;
KEYR2 : aliased HAL.UInt32;
KEYR3 : aliased HAL.UInt32;
IVR0 : aliased HAL.UInt32;
IVR1 : aliased HAL.UInt32;
IVR2 : aliased HAL.UInt32;
IVR3 : aliased HAL.UInt32;
KEYR4 : aliased HAL.UInt32;
KEYR5 : aliased HAL.UInt32;
KEYR6 : aliased HAL.UInt32;
KEYR7 : aliased HAL.UInt32;
SUSP0R : aliased HAL.UInt32;
SUSP1R : aliased HAL.UInt32;
SUSP2R : aliased HAL.UInt32;
SUSP3R : aliased HAL.UInt32;
SUSP4R : aliased HAL.UInt32;
SUSP5R : aliased HAL.UInt32;
SUSP6R : aliased HAL.UInt32;
SUSP7R : aliased HAL.UInt32;
end record
with Volatile;
for AES_Peripheral use record
CR at 16#0# range 0 .. 31;
SR at 16#4# range 0 .. 31;
DINR at 16#8# range 0 .. 31;
DOUTR at 16#C# range 0 .. 31;
KEYR0 at 16#10# range 0 .. 31;
KEYR1 at 16#14# range 0 .. 31;
KEYR2 at 16#18# range 0 .. 31;
KEYR3 at 16#1C# range 0 .. 31;
IVR0 at 16#20# range 0 .. 31;
IVR1 at 16#24# range 0 .. 31;
IVR2 at 16#28# range 0 .. 31;
IVR3 at 16#2C# range 0 .. 31;
KEYR4 at 16#30# range 0 .. 31;
KEYR5 at 16#34# range 0 .. 31;
KEYR6 at 16#38# range 0 .. 31;
KEYR7 at 16#3C# range 0 .. 31;
SUSP0R at 16#40# range 0 .. 31;
SUSP1R at 16#44# range 0 .. 31;
SUSP2R at 16#48# range 0 .. 31;
SUSP3R at 16#4C# range 0 .. 31;
SUSP4R at 16#50# range 0 .. 31;
SUSP5R at 16#54# range 0 .. 31;
SUSP6R at 16#58# range 0 .. 31;
SUSP7R at 16#5C# range 0 .. 31;
end record;
AES1_Periph : aliased AES_Peripheral
with Import, Address => System'To_Address (16#50050400#);
AES2_Periph : aliased AES_Peripheral
with Import, Address => System'To_Address (16#58001800#);
end STM32_SVD.AES;
|
-- { dg-do compile }
procedure Object_Overflow4 is
procedure Proc (x : Integer) is begin null; end;
type Index is new Long_Integer range 0 .. Long_Integer'Last;
type Arr is array(Index range <>) of Integer;
type Rec (Size: Index := 6) is record -- { dg-warning "Storage_Error" }
A: Arr (0..Size);
end record;
Obj : Rec; -- { dg-warning "Storage_Error" }
begin
Obj.A(1) := 0;
Proc (Obj.A(1));
end;
|
with
gel.Window.setup,
gel.Applet.gui_world,
gel.World,
gel.Camera,
gel.Mouse,
gel.Sprite,
gel.Events,
gel.Forge,
Physics,
float_Math,
lace.Response,
lace.Event.utility,
Ada.Calendar,
Ada.Text_IO,
Ada.Exceptions;
pragma unreferenced (gel.Window.setup);
procedure launch_mouse_Selection
--
-- Places a sphere sprite in the world and registers an event repsonse to
-- handle mouse clicks on the sprite.
--
is
use lace.Event.utility,
ada.Text_IO;
begin
lace.Event.utility.use_text_Logger ("event.log");
lace.Event.utility.Logger.ignore (to_Kind (gel.Mouse.motion_Event'Tag));
declare
use ada.Calendar;
the_Applet : constant gel.Applet.gui_world.view := gel.Forge.new_gui_Applet ("mouse Selection",
space_Kind => physics.Bullet);
the_Ball : constant gel.Sprite.view := gel.Forge.new_ball_Sprite (the_Applet.World (1),
mass => 0.0);
type retreat_Sprite is new lace.Response.item with
record
Sprite : gel.Sprite.view;
end record;
overriding
procedure respond (Self : in out retreat_Sprite; to_Event : in lace.Event.Item'Class)
is
use float_Math;
begin
put_Line ("retreat_Sprite");
Self.Sprite.Site_is (self.Sprite.Site - the_Applet.gui_Camera.Spin * (0.0, 0.0, 1.0));
end respond;
retreat_Sprite_Response : aliased retreat_Sprite := (lace.Response.item with sprite => the_Ball);
type advance_Sprite is new lace.Response.item with
record
Sprite : gel.Sprite.view;
end record;
overriding
procedure respond (Self : in out advance_Sprite; to_Event : in lace.Event.Item'Class)
is
use float_Math;
begin
put_Line ("advance_Sprite");
Self.Sprite.Site_is (self.Sprite.Site + the_Applet.gui_Camera.Spin * (0.0, 0.0, 1.0));
end respond;
advance_Sprite_Response : aliased advance_Sprite := (lace.Response.Item with sprite => the_Ball);
next_render_Time : ada.calendar.Time;
begin
the_Ball.add (advance_Sprite_Response'unchecked_access,
to_Kind (gel.events.sprite_click_down_Event'Tag),
the_Applet.Name);
the_Ball.add (retreat_Sprite_Response'unchecked_access,
to_Kind (gel.events.sprite_click_up_Event'Tag),
the_Applet.Name);
the_Applet.gui_world .add (the_Ball, and_Children => False);
the_Applet.gui_Camera.Site_is ((0.0, 0.0, 5.0));
the_Applet.enable_simple_Dolly (in_World => 1);
the_Applet.enable_Mouse (detect_Motion => False);
next_render_Time := ada.calendar.Clock;
while the_Applet.is_open
loop
the_Applet.gui_World.evolve;
the_Ball.respond;
the_Applet.freshen;
next_render_Time := next_render_Time + gel.World.evolve_Period;
delay until next_render_Time;
end loop;
the_Applet.destroy;
end;
lace.Event.utility.close;
exception
when E : others =>
lace.Event.utility.close;
put_Line ("Exception detected in 'launch_mouse_Selection' ...");
put_Line (ada.Exceptions.Exception_Information (E));
end launch_mouse_Selection;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T R A C E S . T A S K I N G --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2005 Free Software Foundation, Inc. --
-- --
-- GNARL is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNARL; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides all procedures used to implement debug traces
-- in the case tasking is involved.
-- See System.Traces for an overview of the various files involved in Tracing
-- If tasking is not involved, refer to System.Traces.General
with System.Tasking;
package System.Traces.Tasking is
pragma Preelaborate;
package ST renames System.Tasking;
-- Send_Trace_Info procedures
-- They are overloaded, depending on the parameters passed with the event
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name2 : ST.Task_Id);
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name2 : ST.Task_Id;
Entry_Number : ST.Entry_Index);
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name : ST.Task_Id;
Task_Name2 : ST.Task_Id;
Entry_Number : ST.Entry_Index);
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name : ST.Task_Id;
Task_Name2 : ST.Task_Id);
procedure Send_Trace_Info
(Id : Trace_T;
Entry_Number : ST.Entry_Index);
procedure Send_Trace_Info
(Id : Trace_T;
Acceptor : ST.Task_Id;
Entry_Number : ST.Entry_Index;
Timeout : Duration);
procedure Send_Trace_Info
(Id : Trace_T;
Entry_Number : ST.Entry_Index;
Timeout : Duration);
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name : ST.Task_Id;
Number : Integer);
procedure Send_Trace_Info
(Id : Trace_T;
Task_Name : ST.Task_Id;
Number : Integer;
Timeout : Duration);
end System.Traces.Tasking;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.